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.
34 lines
770 B
Makefile
34 lines
770 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: demoniac
|
|
# Date created: Jan 23, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= demoniac
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.calodox.org/demoniac/files/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A tool for exploring and animating graphics effects
|
|
|
|
LIB_DEPENDS= gtkgl.5:${PORTSDIR}/x11-toolkits/gtkglarea
|
|
|
|
USE_REINPLACE= yes
|
|
USE_GL= yes
|
|
USE_GNOME= gtk12
|
|
USE_LIBTOOL_VER=13
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS}" \
|
|
LDFLAGS="${PTHREAD_LIBS}"
|
|
PLIST_FILES= bin/demoniac share/demoniac/pixmaps/logo.xpm
|
|
PLIST_DIRS= share/demoniac/pixmaps share/demoniac
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s,-lpthread,${PTHREAD_LIBS},g" ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|