mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
925e342a40
Bump 43 ports that either depend on wxgtk31 or potentially depend on it. Reported by: portscout
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
# Created by: Matthias Sund <m.sund@arcor.de>
|
|
|
|
PORTNAME= codeblocks
|
|
PORTVERSION= 20.03
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/Sources/${PORTVERSION}
|
|
|
|
MAINTAINER= lbartoletti@FreeBSD.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.7.so:textproc/hunspell \
|
|
libtinyxml.so:textproc/tinyxml
|
|
|
|
USES= autoreconf compiler:c++11-lang desktop-file-utils \
|
|
fam:gamin gettext-runtime gnome libtool localbase \
|
|
pathfix pkgconfig shared-mime-info tar:xz xorg
|
|
USE_WX= 3.0+
|
|
USE_GNOME= gtk30 cairo
|
|
USE_XORG= x11
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-wx-config=${WX_CONFIG} --disable-pch \
|
|
--with-boost-system=boost_system
|
|
PKG_CONFIG_LIBDIR= ${LOCALBASE}/libdata/pkgconfig
|
|
INSTALLS_ICONS= yes
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != amd64 && ${ARCH} != i386
|
|
CONFIGURE_ARGS+= --with-contrib-plugins=all,-dragscroll
|
|
PLIST_SUB= X86="@comment "
|
|
.else
|
|
CONFIGURE_ARGS+= --with-contrib-plugins=all
|
|
PLIST_SUB= X86=""
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|