diff options
author | petef <petef@FreeBSD.org> | 2002-03-27 00:34:17 +0000 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2002-03-27 00:34:17 +0000 |
commit | 5ef4893cf32026954c0cd0edf478178279243353 (patch) | |
tree | fdec47c1ed473d6aa86726b03679e978a377d11a /net/gale | |
parent | d72e78f9fe7189406f9f0b8752632383a2e358c0 (diff) | |
download | FreeBSD-ports-5ef4893cf32026954c0cd0edf478178279243353.zip FreeBSD-ports-5ef4893cf32026954c0cd0edf478178279243353.tar.gz |
It is important to run aclocal before the build to ensure that a fix
for a buggy autoconf macro is included, so add USE_AUTOMAKE_VER and
USE_LIBTOOL (in this case, we need the libtool automake macro
AM_PROG_LIBTOOL).
PR: 36347
Submitted by: maintainer
Diffstat (limited to 'net/gale')
-rw-r--r-- | net/gale/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/gale/Makefile b/net/gale/Makefile index 9d63739..cbb0fe0 100644 --- a/net/gale/Makefile +++ b/net/gale/Makefile @@ -19,6 +19,8 @@ LIB_DEPENDS= wwwcore.1:${PORTSDIR}/www/libwww \ USE_OPENSSL= yes USE_AUTOCONF_VER=213 +USE_AUTOMAKE_VER=14 +USE_LIBTOOL= yes INSTALLS_SHLIB= yes CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib @@ -27,6 +29,9 @@ CPPFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib \ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" +pre-configure: + cd ${WRKSRC} && ${ACLOCAL} -I ${LOCALBASE}/share/libtool/libltdl + post-install: @${CAT} ${PKGMESSAGE} |