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 /lang/Cg-compiler | |
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 'lang/Cg-compiler')
-rw-r--r-- | lang/Cg-compiler/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/Cg-compiler/Makefile b/lang/Cg-compiler/Makefile index c9c1ed8f625..cfae5b6df32 100644 --- a/lang/Cg-compiler/Makefile +++ b/lang/Cg-compiler/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2006/06/30 13:47:06 salo Exp $ +# $NetBSD: Makefile,v 1.9 2007/01/07 09:13:56 rillig Exp $ # DISTNAME= CgLinux-1.3.0408-0400 @@ -22,7 +22,7 @@ NO_BUILD= yes DEPENDS+= suse_base>=7.3:../../emulators/${SUSE_DIR_PREFIX}_base .endif -INSTALLATION_DIRS= bin lib man/man3 share +INSTALLATION_DIRS= bin lib ${PKGMANDIR}/man3 share do-install: ${INSTALL_DATA_DIR} ${PREFIX}/include/Cg @@ -33,7 +33,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/usr/include/Cg/* ${PREFIX}/include/Cg ${INSTALL_DATA} ${WRKSRC}/usr/include/CgFX/* ${PREFIX}/include/CgFX ${INSTALL_DATA} ${WRKSRC}/usr/lib/* ${PREFIX}/lib - ${INSTALL_MAN} ${WRKSRC}/usr/share/man/man3/* ${PREFIX}/man/man3 + ${INSTALL_MAN} ${WRKSRC}/usr/share/man/man3/* ${PREFIX}/${PKGMANDIR}/man3 cd ${WRKSRC}/usr/local && ${PAX} -rwppm . ${PREFIX}/share/NVIDIA-Cg-linux .include "../../emulators/suse_linux/Makefile.application" |