diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
commit | 2829e658f2ba62cb77f3f151f468ec8de1549bd5 (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /www/opera | |
parent | 5997a7db2d5af7de47f411825619ffc3689f1ce2 (diff) | |
download | pkgsrc-2829e658f2ba62cb77f3f151f468ec8de1549bd5.tar.gz |
Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.
Fixes PR 35265, although I did not use the patch provided therein.
Diffstat (limited to 'www/opera')
-rw-r--r-- | www/opera/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www/opera/Makefile b/www/opera/Makefile index ca1a674cbb2..9f8fd96572d 100644 --- a/www/opera/Makefile +++ b/www/opera/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.61 2006/12/19 23:02:12 jdolecek Exp $ +# $NetBSD: Makefile,v 1.62 2007/01/07 09:14:15 rillig Exp $ DISTNAME= opera-${OPERA_PKG_VERSION:S/u/pl/} CATEGORIES= www @@ -92,7 +92,7 @@ SUBST_SED.opera= -e 's,/usr/,${PREFIX}/,g' .endif -INSTALLATION_DIRS= bin man/man1 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 do-build: .if (${_OPERA_OPSYS} == NetBSD) || (${_OPERA_OPSYS} == DragonFly) @@ -113,10 +113,10 @@ post-install-manpage: # The SuSE common makefile defines "MANCOMPRESSED=yes". . if defined(MANCOMPRESSED) && !empty(MANCOMPRESSED:M[yY][eE][sS]) ${LN} -fs ../../${EMULSUBDIR}/usr/share/man/man1/opera.1.gz \ - ${PREFIX}/man/man1 + ${PREFIX}/${PKGMANDIR}/man1 . else ${GUNZIP_CMD} -c ${EMULDIR}/usr/share/man/man1/opera.1.gz > - ${PREFIX}/man/man1/opera.1 + ${PREFIX}/${PKGMANDIR}/man1/opera.1 . endif .endif @@ -129,7 +129,7 @@ do-install: @${ECHO} post-install: - @${INSTALL_MAN} ${WRKSRC}/man/opera.1 ${PREFIX}/man/man1 + @${INSTALL_MAN} ${WRKSRC}/man/opera.1 ${PREFIX}/${PKGMANDIR}/man1 .endif # regenerate distinfo for all ports supported by this package |