diff options
author | Alan Eldridge <alane@FreeBSD.org> | 2002-10-15 03:42:32 +0800 |
---|---|---|
committer | Alan Eldridge <alane@FreeBSD.org> | 2002-10-15 03:42:32 +0800 |
commit | 7e254eb5766b08a67564712a02fa3488d0be52d7 (patch) | |
tree | 868691690069809a4a3135c779627f5fd5200616 /devel | |
parent | 3fe0dc931cffa7a31a70e3b339cdc23f2a15538a (diff) | |
download | freebsd-ports-gnome-7e254eb5766b08a67564712a02fa3488d0be52d7.tar.gz freebsd-ports-gnome-7e254eb5766b08a67564712a02fa3488d0be52d7.tar.zst freebsd-ports-gnome-7e254eb5766b08a67564712a02fa3488d0be52d7.zip |
1. Bumped portrevision (yes, again, sorry for the thrash).
2. Fixed bug that Knu pointed out, which was the bad dirs were captured
in bsd.port.mk (to be fixed RSN, in testing now). Fixed with the magic
of ... symlinks! (I always thought symlinks to . were lame, and they are,
but sometimes they can get you out of a corner. Temporarily.)
3. The question is, will anything break trying to recursively go down the
tree following symlinks? If so, that tool needs to be fixed. A symlink
to '.' (or '..') just plain should not be followed.
Bottom line is, AUTOCONF_DIR, AUTOMAKE_DIR, & ACLOCAL_DIR work again.
As a side effect of this fix, you can now download the entire internet
onto 1 floppy disk.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/autoconf213/Makefile | 4 | ||||
-rw-r--r-- | devel/autoconf213/pkg-plist | 1 | ||||
-rw-r--r-- | devel/automake14/Makefile | 5 | ||||
-rw-r--r-- | devel/automake14/pkg-plist | 2 |
4 files changed, 10 insertions, 2 deletions
diff --git a/devel/autoconf213/Makefile b/devel/autoconf213/Makefile index 2de0af80481c..edc4e2abbf9d 100644 --- a/devel/autoconf213/Makefile +++ b/devel/autoconf213/Makefile @@ -11,7 +11,7 @@ PORTNAME= autoconf213 PORTVERSION= 2.13.000227 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEWARE} ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= binutils autoconf @@ -53,5 +53,7 @@ post-install: .endfor install-info ${DESTDIR}${PREFIX}/info/autoconf213.info \ ${DESTDIR}${PREFIX}/info/dir + # temporary + ${LN} -s . ${PREFIX}/share/autoconf213/autoconf .include <bsd.port.mk> diff --git a/devel/autoconf213/pkg-plist b/devel/autoconf213/pkg-plist index fa84b581ed6a..6ee217cdd0d7 100644 --- a/devel/autoconf213/pkg-plist +++ b/devel/autoconf213/pkg-plist @@ -29,5 +29,6 @@ share/autoconf213/autoheader.m4f share/autoconf213/config.guess share/autoconf213/config.sub share/autoconf213/install-sh +share/autoconf213/autoconf @dirrm libexec/autoconf213 @dirrm share/autoconf213 diff --git a/devel/automake14/Makefile b/devel/automake14/Makefile index e1cc403cc7cd..cc3b863a7680 100644 --- a/devel/automake14/Makefile +++ b/devel/automake14/Makefile @@ -7,7 +7,7 @@ PORTNAME= automake14 PORTVERSION= 1.4.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= automake @@ -50,5 +50,8 @@ post-install: .endfor @install-info ${DESTDIR}${PREFIX}/info/automake14.info \ ${DESTDIR}${PREFIX}/info/dir + # temporary + ${LN} -s . ${PREFIX}/share/automake14/automake + ${LN} -s ../aclocal14 ${PREFIX}/share/automake14/aclocal .include <bsd.port.mk> diff --git a/devel/automake14/pkg-plist b/devel/automake14/pkg-plist index 00506cacc6e9..26d573b1e86f 100644 --- a/devel/automake14/pkg-plist +++ b/devel/automake14/pkg-plist @@ -79,6 +79,8 @@ share/automake14/texi-vers.am share/automake14/texinfo.tex share/automake14/texinfos.am share/automake14/ylwrap +share/automake14/aclocal +share/automake14/automake @dirrm libexec/automake14 @dirrm share/aclocal14 @dirrm share/automake14 |