diff options
author | naddy <naddy@FreeBSD.org> | 2003-06-29 23:35:08 +0800 |
---|---|---|
committer | naddy <naddy@FreeBSD.org> | 2003-06-29 23:35:08 +0800 |
commit | 2dbd0f5929c28f59ee840b051e618b0634b33a8a (patch) | |
tree | 785137656eeded69630afe8d0721c37336a4b374 /net | |
parent | 759ba4fe969dd391a139a48f20547d68df5e27eb (diff) | |
download | freebsd-ports-gnome-2dbd0f5929c28f59ee840b051e618b0634b33a8a.tar.gz freebsd-ports-gnome-2dbd0f5929c28f59ee840b051e618b0634b33a8a.tar.zst freebsd-ports-gnome-2dbd0f5929c28f59ee840b051e618b0634b33a8a.zip |
1. The actual MASTER_SITE where the tarball resides is not
reachable by the FreeBSD build machines. Grr. (distfile survey)
2. The applied patch did not account for perl not being in
the default location. (Thanks to Piet Delport <pjd at 303.za.net>
for the catch and the fix.)
PR: 52200
Submitted by: Mark Linimon <linimon@lonesome.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/hinfo/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/hinfo/Makefile b/net/hinfo/Makefile index 7dc3d1a10274..c24f8e2dadbe 100644 --- a/net/hinfo/Makefile +++ b/net/hinfo/Makefile @@ -8,8 +8,10 @@ PORTNAME= hinfo PORTVERSION= 1.0 CATEGORIES= net perl5 -MASTER_SITES= http://www.blars.org/ \ - http://www.lonesome.com/FreeBSD/distfiles/ +# note: the "true" MASTER_SITE is http://www.blars.org, but +# due to policies on that site, it is not reachable from the +# FreeBSD build machines. +MASTER_SITES= http://www.lonesome.com/FreeBSD/distfiles/ MAINTAINER= linimon@lonesome.com COMMENT= Utility primarily designed to find the owner of an IP block @@ -34,7 +36,7 @@ NO_BUILD= yes # already be patched for you. post-extract: .for file in ${HINFO_SCRIPTS} - ${REINPLACE_CMD} -e 's|/usr/bin/|${PREFIX}/bin/|g' ${WRKSRC}/${file} + ${REINPLACE_CMD} -E '1s|^#!.+|#!${PERL}|' ${WRKSRC}/${file} .endfor do-install: |