diff options
author | joerg <joerg@pkgsrc.org> | 2007-08-11 16:51:27 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-08-11 16:51:27 +0000 |
commit | 87b3bbd81bbdfce86d4e74fb808ca6801fbf0513 (patch) | |
tree | 6a2130b1f5ad06e3afe2bde09ac05e4e3f6aeb49 /net/radiusd-cistron | |
parent | e9903b34750aaefa48e3a32497a3caeeeb32161c (diff) | |
download | pkgsrc-87b3bbd81bbdfce86d4e74fb808ca6801fbf0513.tar.gz |
Remove malloc.h hack, which was replaced by a single patch.
Depend on and fix path to Perl in installed script.
Bump revision.
Diffstat (limited to 'net/radiusd-cistron')
-rw-r--r-- | net/radiusd-cistron/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/net/radiusd-cistron/Makefile b/net/radiusd-cistron/Makefile index a947fe7937d..3b8c8934d31 100644 --- a/net/radiusd-cistron/Makefile +++ b/net/radiusd-cistron/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.22 2007/03/24 19:21:30 joerg Exp $ +# $NetBSD: Makefile,v 1.23 2007/08/11 16:51:27 joerg Exp $ DISTNAME= radiusd-cistron-1.6.7 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= net MASTER_SITES= ftp://ftp.cistron.nl/pub/people/miquels/radius/ \ ftp://ftp.freeradius.org/pub/radius/ @@ -12,6 +12,9 @@ COMMENT= RADIUS-compliant remote authentication and accounting server CONFLICTS+= freeradius-[0-9]* +USE_TOOLS+= perl:run + +REPLACE_PERL= src/checkrad.pl MAKE_FILE= Makefile.BSD BUILD_DIRS= ${WRKSRC}/src @@ -53,12 +56,4 @@ post-install: ${INSTALL_MAN} ${WRKSRC}/doc/${i} ${PREFIX}/${PKGMANDIR}/man8/ .endfor -# The sources assume <malloc.h> exists. Create a fake one for platforms -# that don't have it. -post-wrapper: - if ${TEST} ! -f /usr/include/malloc.h; then \ - ${ECHO} "#include <stdlib.h>" \ - > ${BUILDLINK_DIR}/include/malloc.h; \ - fi - .include "../../mk/bsd.pkg.mk" |