24bce6e056
- Restore DIST_SUBDIR from r305651 - Adjust license for "or later" clause - Restore GPLv2+/LGPL21+ license files removed upstream as GPLv3+/LGPL3+ only affects Hunspell 2.0 (not currently built) - Unbreak |make makepatch| Changes: https://github.com/hunspell/hunspell/releases/tag/v1.6.0 PR: 215714 Submitted by: sunpoet (based on) Exp-run by: antoine MFH: 2017Q1 Differential Revision: https://reviews.freebsd.org/D8887
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# Created by: Matthias Sund <m.sund@arcor.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= codeblocks
|
|
PORTVERSION= 16.01
|
|
PORTREVISION= 5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/Sources/${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= lbartoletti@tuxfamily.org
|
|
COMMENT= Open source, cross-platform, free C/C++ IDE
|
|
|
|
LICENSE= GPLv3 LGPL3
|
|
LICENSE_COMB= multi
|
|
|
|
BUILD_DEPENDS= zip:archivers/zip
|
|
LIB_DEPENDS= libboost_system.so:devel/boost-libs \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libhunspell-1.6.so:textproc/hunspell
|
|
|
|
USES= autoreconf compiler desktop-file-utils fam:gamin localbase \
|
|
gettext-runtime libtool pathfix pkgconfig shared-mime-info
|
|
USE_WX= 2.8
|
|
USE_GNOME= gtk20 cairo
|
|
USE_XORG= x11
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-wx-config=${WX_CONFIG} --with-contrib-plugins=all \
|
|
--disable-pch
|
|
PKG_CONFIG_LIBDIR= ${LOCALBASE}/libdata/pkgconfig
|
|
INSTALLS_ICONS= yes
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}.release
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${CHOSEN_COMPILER_TYPE} == clang
|
|
USE_CXXSTD= c++11
|
|
. if ${COMPILER_VERSION} >= 35
|
|
CXXFLAGS+= -Wno-undefined-bool-conversion
|
|
. endif
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|