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.
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# New ports collection makefile for: gale
|
|
# Date created: 14 July 2000
|
|
# Whom: Peter Haight <peterh@sapros.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gale
|
|
PORTVERSION= 0.99e
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.mit.edu/afs/sipb/project/gale/src/ \
|
|
# http://download.ofb.net/gale/ - original mastersite
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}gg
|
|
|
|
MAINTAINER= peterh@sapros.com
|
|
COMMENT= A secure instant messaging system
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libgc.a:${PORTSDIR}/devel/boehm-gc
|
|
LIB_DEPENDS= wwwcore.1:${PORTSDIR}/www/libwww \
|
|
adns.1:${PORTSDIR}/dns/adns
|
|
|
|
USE_OPENSSL= yes
|
|
USE_AUTOCONF_VER=213
|
|
USE_AUTOMAKE_VER=14
|
|
USE_LIBTOOL_VER=13
|
|
INSTALLS_SHLIB= yes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib
|
|
CPPFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib \
|
|
-I${LOCALBASE}/include/w3c-libwww
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
|
|
BROKEN= "Broken pkg-plist"
|
|
DEPRECATED= ${BROKEN}
|
|
EXPIRATION_DATE=2004-04-07
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ${ACLOCAL} -I ${LIBTOOL_SHAREDIR}/libltdl
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|