f9775c22a1
I upgraded the port some time ago is unstable development version that breaks many packages that depend upong wxGTK. 2.3.0 will be readded back as wxgtk-devel after a repo copy.
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# New ports collection makefile for: wxGTK
|
|
# Date created: September 18, 1999
|
|
# Whom: nectar@FreeBSD.ORG
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wxgtk
|
|
PORTVERSION= 2.2.7
|
|
PORTEPOCH= 1
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= ftp://wesley.informatik.uni-freiburg.de/pub/linux/wxxt/source/ \
|
|
http://www.mirror.ac.uk/sites/wesley.informatik.uni-freiburg.de/pub/linux/wxxt/source/
|
|
DISTNAME= wxGTK-${PORTVERSION}
|
|
|
|
MAINTAINER= sobomax@FreeBSD.org
|
|
|
|
LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png \
|
|
tiff.4:${PORTSDIR}/graphics/tiff
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_MESA= yes
|
|
USE_GMAKE= yes
|
|
USE_GTK= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_ARGS= --with-libpng=sys \
|
|
--with-libjpeg=sys \
|
|
--with-libtiff=sys \
|
|
--with-zlib=sys \
|
|
--with-opengl
|
|
CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} \
|
|
-I${LOCALBASE}/include \
|
|
-I${X11BASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib \
|
|
-L${X11BASE}/lib -lm"
|
|
|
|
pre-patch:
|
|
@${PERL} -pi -e 's|-l\$$THREADS_LIB|${PTHREAD_LIBS}|g ; \
|
|
s|-l\$$THREADS_LINK|${PTHREAD_LIBS}|g' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
@${RM} -rf ${PREFIX}/include/wx/motif
|
|
@${RM} -rf ${PREFIX}/include/wx/msw
|
|
|
|
.include <bsd.port.mk>
|