diff options
author | alane <alane@FreeBSD.org> | 2002-10-21 01:55:44 +0000 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-10-21 01:55:44 +0000 |
commit | 7f7582f2713e7be295bc8337eaee744cf22ac99f (patch) | |
tree | 87f2ed23bc5504d22aca14708553c80ff5ba39b4 /devel/automake14/Makefile | |
parent | 59ae45087de1d861f88a52e96bb8646a73f52f07 (diff) | |
download | FreeBSD-ports-7f7582f2713e7be295bc8337eaee744cf22ac99f.zip FreeBSD-ports-7f7582f2713e7be295bc8337eaee744cf22ac99f.tar.gz |
Rewrote installation procedure in Makefile since it wasn't quite right.
Hopefully fixed the PR listed.
PR: 44321
Submitted by: parv
Diffstat (limited to 'devel/automake14/Makefile')
-rw-r--r-- | devel/automake14/Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/devel/automake14/Makefile b/devel/automake14/Makefile index f1145a0..67cfd8c 100644 --- a/devel/automake14/Makefile +++ b/devel/automake14/Makefile @@ -7,7 +7,7 @@ PORTNAME= automake14 PORTVERSION= 1.4.5 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= automake @@ -41,17 +41,20 @@ pre-configure: @${REINPLACE_CMD} -i -e "s,%%X11BASE%%,${X11BASE}," \ ${WRKSRC}/aclocal.in +pre-install: + ${MKDIR} ${PREFIX}/share/automake14 + ${MKDIR} ${PREFIX}/share/aclocal14 + ${MKDIR} ${PREFIX}/libexec/automake14 + # temporary + cd ${PREFIX}/share/automake14; ln -s . automake + cd ${PREFIX}/share/automake14; ln -s ../aclocal14 aclocal + post-install: - @-${RM} -fr ${PREFIX}/libexec/automake14 \ - @${MKDIR} ${PREFIX}/libexec/automake14 .for i in aclocal automake - @${LN} -s ../../bin/${i}14 \ + ${LN} -s ../../bin/${i}14 \ ${PREFIX}/libexec/automake14/${i} .endfor @install-info ${PREFIX}/info/automake14.info \ ${PREFIX}/info/dir - # temporary - ${LN} -s . ${PREFIX}/share/automake14/automake - ${LN} -s ../aclocal14 ${PREFIX}/share/automake14/aclocal .include <bsd.port.mk> |