diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2004-02-01 20:54:24 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2004-02-01 20:54:24 +0000 |
commit | 62e1c98435ccc8818d0d3b98a300387a08cef2d5 (patch) | |
tree | 88b3a4c20af7ddd8bbf90ed4b4e73d3dc3056fa5 /lang | |
parent | b779fc32f9725de4c78d941d9a136d3c45b358f6 (diff) | |
download | ports-62e1c98435ccc8818d0d3b98a300387a08cef2d5.tar.gz ports-62e1c98435ccc8818d0d3b98a300387a08cef2d5.zip |
Notes
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gcc33/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lang/gcc33/Makefile b/lang/gcc33/Makefile index 9455e8204f5b..1cc1ed9fee46 100644 --- a/lang/gcc33/Makefile +++ b/lang/gcc33/Makefile @@ -148,7 +148,12 @@ post-install: fi .endfor ${MV} -f ${PREFIX}/bin/g7733 ${PREFIX}/bin/g77-33 - ${MV} -f ${PREFIX}/man/man1/g7733.1 ${PREFIX}/man/man1/g77-33.1 + -${MV} -f ${PREFIX}/man/man1/g7733.1 ${PREFIX}/man/man1/g77-33.1 + # man pages can only be generated if Perl >= 5.6 is installed, so + # fake them on 4.x systems. +.for mp in ${_MANPAGES} + ( ${TEST} -e ${mp} || ${TOUCH} ${TOUCH_FLAGS} ${mp} ) +.endfor # These libraries are moved from PREFIX/lib to avoid conflicts with # the stock compiler. .for f in libstdc++ libsupc++ libg2c libfrtbegin libobjc ${EXTRA_SHLIB} @@ -158,11 +163,6 @@ post-install: -${MV} -f ${PREFIX}/lib/libgcj.* ${TARGLIB} ${RM} -f ${PREFIX}/lib/libiberty.a ${RM} -f ${TARGLIB}/*.la -# I am sick and tired of the anonyance that man pages can only be generated if -# perl 5.6 is installed. This is becoming a royal PITA on non-5-CURRENT systems -.for mp in ${_MANPAGES} - ( ${TEST} -e ${mp} || ${TOUCH} ${TOUCH_FLAGS} ${mp} ) -.endfor # Handle target libraries and GCJ include files. ${RM} -f ${WRKDIR}/PLIST.lib .for d in ${TARGLIB:S/^${PREFIX}\///} include/gcj include/gnu include/java include/javax |