diff options
author | ade <ade@FreeBSD.org> | 2004-07-30 03:24:26 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2004-07-30 03:24:26 +0800 |
commit | 596b07969b74806f485a032bced33ebf9c2b776c (patch) | |
tree | 8b020ce4f377543ffe04258149bfb03de12082ab /devel/autoconf267/Makefile | |
parent | c0e1255de2c93bbfa65f0b06c7ad5eb6a0a877bb (diff) | |
download | freebsd-ports-gnome-596b07969b74806f485a032bced33ebf9c2b776c.tar.gz freebsd-ports-gnome-596b07969b74806f485a032bced33ebf9c2b776c.tar.zst freebsd-ports-gnome-596b07969b74806f485a032bced33ebf9c2b776c.zip |
Actually put in relevant symlinks to the versioned files in
${PREFIX}/bin to non-versioned files in ${PREFIX}/libexec/<autotool><ver>
so that the PATH magic in bsd.autotools.mk works correctly.
Diffstat (limited to 'devel/autoconf267/Makefile')
-rw-r--r-- | devel/autoconf267/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/autoconf267/Makefile b/devel/autoconf267/Makefile index 59de6f3d2905..c0abfdc5c25a 100644 --- a/devel/autoconf267/Makefile +++ b/devel/autoconf267/Makefile @@ -7,7 +7,7 @@ PORTNAME= autoconf PORTVERSION= 2.59 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf @@ -69,5 +69,11 @@ post-install: .for FILE in ${GENERIC_TOOLS} ${INSTALL_SCRIPT} ${WRKSRC}/config/${FILE} ${PREFIX}/share/autoconf${BUILD_VERSION} .endfor + @-${RM} -fr ${PREFIX}/libexec/autoconf${BUILD_VERSION} + ${MKDIR} ${PREFIX}/libexec/autoconf${BUILD_VERSION} +.for i in autoconf autoheader autoreconf autoscan autoupdate ifnames + ${LN} -sf ${PREFIX}/bin/${i}${BUILD_VERSION} \ + ${PREFIX}/libexec/autoconf${BUILD_VERSION}/${i} +.endfor .include <bsd.port.mk> |