mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
13afc99a99
PR: 107901 Submitted by: Ying-Chieh Chen <yinjieh@csie.nctu.edu.tw>
71 lines
1.8 KiB
Makefile
71 lines
1.8 KiB
Makefile
# New ports collection makefile for: fltk
|
|
# Date created: 11 February 1999
|
|
# Whom: Dima Sivachenko <dima@Chg.RU>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fltk
|
|
PORTVERSION= ${VERSION}
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= ${MASTER_SITE_EASYSW}
|
|
MASTER_SITE_SUBDIR= fltk/${VERSION}
|
|
.ifdef WITH_THREADS
|
|
PKGNAMESUFFIX= -threads
|
|
.endif
|
|
DISTNAME= ${PORTNAME}-${VERSION}-source
|
|
|
|
MAINTAINER?= demon@FreeBSD.org
|
|
COMMENT?= C++ graphical user interface for X
|
|
|
|
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \
|
|
jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
Xft.2:${PORTSDIR}/x11-fonts/libXft
|
|
|
|
.if defined(WITH_THREADS)
|
|
CONFIGURE_ARGS+=--enable-threads
|
|
CPPFLAGS+= "${PTHREAD_CFLAGS}"
|
|
LDFLAGS+= "${PTHREAD_LIBS}"
|
|
CONFLICTS= fltk-1*
|
|
.else
|
|
CONFLICTS= fltk-threads-1*
|
|
.endif
|
|
|
|
VERSION= 1.1.7
|
|
USE_BZIP2= yes
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS+=--enable-shared --enable-xft
|
|
# configure ignores ${CXX} and keeps on linking C++ code with ${CC}
|
|
CONFIGURE_ENV+= CC="${CXX}" CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${VERSION}
|
|
USE_X_PREFIX= yes
|
|
USE_GL= yes
|
|
|
|
MAN1= fluid.1 fltk-config.1
|
|
MAN3= fltk.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000 && defined(WITH_THREADS)
|
|
IGNORE= does not work on FreeBSD 4.x, because threading is not activated
|
|
.endif
|
|
|
|
pre-everything::
|
|
.if !defined(WITH_THREADS) && ${OSVERSION} > 500000
|
|
@${ECHO_MSG} "===> You can enable threads support by defining WITH_THREADS"
|
|
@${ECHO_MSG} "===>"
|
|
.endif
|
|
|
|
pre-configure:
|
|
.if defined(NOPORTDOCS)
|
|
@${REINPLACE_CMD} -e 's|%%DOCS%%|#|' ${WRKSRC}/documentation/Makefile
|
|
.else
|
|
@${REINPLACE_CMD} -e 's|%%DOCS%%||' ${WRKSRC}/documentation/Makefile
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|