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 /biology | |
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 'biology')
-rw-r--r-- | biology/arka/Makefile | 6 | ||||
-rw-r--r-- | biology/lucy/Makefile | 6 | ||||
-rw-r--r-- | biology/nut/Makefile | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/biology/arka/Makefile b/biology/arka/Makefile index 44c330ec7a6..eeef080bf9b 100644 --- a/biology/arka/Makefile +++ b/biology/arka/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2006/02/05 23:08:20 joerg Exp $ +# $NetBSD: Makefile,v 1.6 2007/01/07 09:13:48 rillig Exp $ # DISTNAME= arka-0.11 @@ -19,7 +19,7 @@ CONF_FILES= ${PREFIX}/share/examples/arka/arkarc ${PKG_SYSCONFDIR}/arkarc CPPFLAGS+= -DARKA_GLOBAL=\"${PKG_SYSCONFDIR}/arkarc\" CPPFLAGS+= -DARKA_PROGRAMS=\"${PKG_SYSCONFDIR}/arkarc\" -INSTALLATION_DIRS= bin man/man1 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 USE_TOOLS+= gunzip post-build: @@ -27,7 +27,7 @@ post-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/arka ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/arka.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/arka.1 ${PREFIX}/${PKGMANDIR}/man1 .for f in arka_16x16.xpm arka_32x32.xpm ${INSTALL_DATA} ${WRKSRC}/icons/${f} ${PREFIX}/share/pixmaps .endfor diff --git a/biology/lucy/Makefile b/biology/lucy/Makefile index 037a395db72..c4fdbd79050 100644 --- a/biology/lucy/Makefile +++ b/biology/lucy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2006/10/04 20:47:03 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2007/01/07 09:13:48 rillig Exp $ # DISTNAME= lucy-1.18p @@ -11,11 +11,11 @@ COMMENT= Sequence Cleanup Program PKG_INSTALLATION_TYPES= overwrite pkgviews -INSTALLATION_DIRS= bin man/man1 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/lucy ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/lucy.1 ${PREFIX}/man/man1 + ${INSTALL_DATA} ${WRKSRC}/lucy.1 ${PREFIX}/${PKGMANDIR}/man1 ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/lucy .for EXAMPLE in PUC19 PUC19splice PUC19splice.for PUC19splice.rev \ atie.seq atie.qul atie.2nd pSPORT1splice pSPORT1vector ARMTM40TR.seq \ diff --git a/biology/nut/Makefile b/biology/nut/Makefile index 79de1e411af..2090f49825b 100644 --- a/biology/nut/Makefile +++ b/biology/nut/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2006/02/05 23:08:20 joerg Exp $ +# $NetBSD: Makefile,v 1.22 2007/01/07 09:13:48 rillig Exp $ DISTNAME= nut-10.18 PKGREVISION= 1 @@ -13,12 +13,12 @@ COMMENT= Record what you eat and analyze your meals BUILD_TARGET= nut USE_TOOLS+= gmake -INSTALLATION_DIRS= bin man/man1 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/nut ${PREFIX}/bin ${INSTALL_DATA_DIR} ${PREFIX}/share/nut ${INSTALL_DATA} ${WRKSRC}/raw.data/* ${PREFIX}/share/nut - ${INSTALL_MAN} ${WRKSRC}/nut.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/nut.1 ${PREFIX}/${PKGMANDIR}/man1 .include "../../mk/bsd.pkg.mk" |