1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00
freebsd-ports/x11-toolkits/fltk/Makefile
Dmitry Sivachenko 45144bdd5b Link with pthreads only when WITH_THREADS is defined.
Enable antialiased text.

Submitted by:	Dan Nelson <dnelson@allantgroup.com>
2004-03-25 08:06:19 +00:00

74 lines
1.9 KiB
Makefile

# New ports collection makefile for: fltk
# Date created: 11 February 1999
# Whom: Dima Sivachenko <dima@Chg.RU>
#
# $FreeBSD$
#
PORTNAME= fltk
PORTVERSION?= ${_PORTVERSION}
CATEGORIES= x11-toolkits
MASTER_SITES= ftp://ftp.fltk.org/pub/fltk/${VERSION}/ \
ftp://ftp.chg.ru/pub/X11/fltk/${VERSION}/ \
ftp://ftp2.easysw.com/pub/fltk/${VERSION}/ \
ftp://ftp.northamerica.net/pub/ESP/fltk/${VERSION}/ \
ftp://ftp.funet.fi/mirrors/ftp.easysw.com/pub/fltk/${VERSION}/ \
ftp://ftp.kddlabs.co.jp/pub/lang/fltk/${VERSION}/
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_XUNICODE)
PATCH_VERSION= 20010114
_PORTVERSION+= ${VERSION}.${PATCH_VERSION}
PORTREVISION= 2
PKGNAMESUFFIX= -xunicode
PATCH_SITES= http://www.ab.wakwak.com/~tino/jatk/fltk/
PATCHFILES= ${PORTNAME}-${VERSION}${PKGNAMESUFFIX}-${PATCH_VERSION}.diff
PATCH_DIST_STRIP= -p1
BUILD_DEPENDS= ${X11BASE}/include/xunicode/xunicode.h:${PORTSDIR}/converters/xunicode
CONFIGURE_ENV= CXXFLAGS=-DUSE_XUNICODE
.else
_PORTVERSION+= ${VERSION}
.endif
.if defined(WITH_THREADS)
CONFIGURE_ARGS+=--enable-threads
CPPFLAGS+= "${PTHREAD_CFLAGS}"
LDFLAGS+= "${PTHREAD_LIBS}"
.endif
VERSION= 1.1.4
USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--enable-shared --enable-xft
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
WRKSRC= ${WRKDIR}/${PORTNAME}-${VERSION}
USE_X_PREFIX= yes
USE_MESA= yes
MAN1= fluid.1 fltk-config.1
MAN3= fltk.3
.if defined(WITH_XUNICODE)
post-extract:
cd ${WRKSRC} && ${LN} -s ${X11BASE}/include/xunicode
.endif
pre-everything::
@${ECHO_MSG} "===> You can enable threads support by defining WITH_THREADS"
@${ECHO_MSG} "===>"
.include <bsd.port.mk>