diff options
author | seb <seb@pkgsrc.org> | 2003-06-23 10:12:35 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2003-06-23 10:12:35 +0000 |
commit | 46ef547924d0ba57ea615c1e664afc1f564bcf29 (patch) | |
tree | 5c5f38706d8513c0ef7342c7a22f51bba56655ee /devel/binutils/Makefile | |
parent | 071583d2d745d28666372e6d00c6e45fcd892894 (diff) | |
download | pkgsrc-46ef547924d0ba57ea615c1e664afc1f564bcf29.tar.gz |
Convert to USE_NEW_TEXINFO.
While here fix hidden build dependency on Perl hence bump PKGREVISION.
Diffstat (limited to 'devel/binutils/Makefile')
-rw-r--r-- | devel/binutils/Makefile | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/devel/binutils/Makefile b/devel/binutils/Makefile index 9541a43f037..12ab238e4e2 100644 --- a/devel/binutils/Makefile +++ b/devel/binutils/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.10 2003/06/08 20:17:13 fredb Exp $ +# $NetBSD: Makefile,v 1.11 2003/06/23 10:12:35 seb Exp $ # DISTNAME= binutils-2.13.2.1 +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=binutils/} @@ -16,9 +17,21 @@ PLIST_SRC= ${PKGDIR}/PLIST.common PLIST_SRC+= ${WRKDIR}/PLIST_DYNAMIC PLIST_SRC+= ${PKGDIR}/PLIST.common_end +USE_NEW_TEXINFO= YES +USE_MAKEINFO= YES +INFO_FILES= as.info bfd.info binutils.info gprof.info ld.info + +# Prevent the need to run texi2pod.pl and pod2man hence +# the need for perl as build dependency. +post-configure: + cd ${WRKSRC}; \ + for f in ld/ldver.texi ld/ld.1 gas/doc/gasver.texi \ + gas/doc/as.1; do \ + ${TOUCH} $${f}; \ + done + post-install: ${FIND} ${PREFIX}/${MACHINE_GNU_PLATFORM}/lib/ldscripts -type f -print | \ ${SORT} -r | ${SED} 's;${PREFIX}/;;g' > ${WRKDIR}/PLIST_DYNAMIC -.include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" |