f2f9c325f2
Changes since last port update (1.7.23) * Added FXMat2f, FXMat2d. * Vectorized many functions in FXMat2d, FXMat2f, FXMat3d, FXMat3f, FXMat4d, FXMat4f (using SSE/SSE2/SSE3). * Some fixes to FXPath::isInside(). * Fix to drawImage() in FXDCPrint. * Added FXPtrList. * Add FXbool return value to some API's in FXArray. * Change in configure.ac to check intrinsics header files with modified compiler flags; header files are not compilable with default options. * Updated Borland C++ makefiles. * Update Visual Studio 6 project files with missing headers. * Small fixes in FXAutoPtr.h. * Change some inlined API's of FXProgressDialog to non-inline.
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# New ports collection Makefile for: fox17
|
|
# Date created: 23 August 2010
|
|
# Whom: gahr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fox
|
|
PORTVERSION= 1.7.25
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= http://www.fox-toolkit.org/ftp/ \
|
|
ftp://ftp.fox-toolkit.org/pub/
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= Fast and extensive C++ GUI toolkit -- devel version
|
|
|
|
LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \
|
|
png.6:${PORTSDIR}/graphics/png \
|
|
tiff.4:${PORTSDIR}/graphics/tiff \
|
|
Xft.2:${PORTSDIR}/x11-fonts/libXft
|
|
|
|
CONFLICTS= fox-1.4.* fox-1.6.*
|
|
|
|
LATEST_LINK= fox17
|
|
|
|
MAJORVER= ${PORTVERSION:R}
|
|
PLIST_SUB+= MAJORVER=${MAJORVER}
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${MAJORVER}
|
|
|
|
USE_GL= glut
|
|
USE_GNOME= gnomehack
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_ARGS= --with-opengl=yes
|
|
|
|
CPPFLAGS= -I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2
|
|
LDFLAGS= -L${LOCALBASE}/lib
|
|
|
|
MAN1= reswrap.1 shutterbug.1 adie.1 PathFinder.1 calculator.1 \
|
|
ControlPanel.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if (${ARCH} == "alpha" || ${ARCH} == "sparc64") && ${OSVERSION} < 700000
|
|
THREAD_LIBS= -lthr
|
|
.else
|
|
THREAD_LIBS= ${PTHREAD_LIBS}
|
|
.endif
|
|
LDFLAGS+= ${THREAD_LIBS}
|
|
|
|
post-patch:
|
|
.if defined(NOPORTDOCS)
|
|
${REINPLACE_CMD} -e '/^SUBDIRS/s/ doc//' ${WRKSRC}/Makefile.am ${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|