3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
40 lines
838 B
Makefile
40 lines
838 B
Makefile
# New ports collection makefile for: efltk
|
|
# Date created: 27 Febrary 2004
|
|
# Whom: Sergey Matveychuk <sem@ciam.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= efltk
|
|
PORTVERSION= 2.0.1
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ede
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-${TIMESTAMP}
|
|
|
|
MAINTAINER= sem@ciam.ru
|
|
COMMENT= Extended Fast Light Toolkit
|
|
|
|
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \
|
|
jpeg.9:${PORTSDIR}/graphics/jpeg
|
|
|
|
TIMESTAMP= 20040218
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
.if defined(WITHOUT_MYSQL)
|
|
CONFIGURE_ARGS+= --disable-mysql
|
|
.else
|
|
USE_MYSQL= yes
|
|
.endif
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GMAKE= yes
|
|
USE_AUTOCONF_VER= 213
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" \
|
|
DEBUGFLAG="${CFLAGS} -I${LOCALBASE}/include"
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include <bsd.port.mk>
|