diff options
author | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
commit | 3d8ef5a52d6570c7a88c64337bb6c476b78c810c (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /biology/genesplicer | |
parent | 7f7f5ce9170554e6c0c04606c5c2c0548ffab031 (diff) | |
download | pkgsrc-3d8ef5a52d6570c7a88c64337bb6c476b78c810c.tar.gz |
Second round of explicit pax dependencies. As reminded by tnn@,
many packages used to use ${PAX}. Use the common way of directly calling
pax, it is created as tool after all.
Diffstat (limited to 'biology/genesplicer')
-rw-r--r-- | biology/genesplicer/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/biology/genesplicer/Makefile b/biology/genesplicer/Makefile index 85eac030346..c59e199d035 100644 --- a/biology/genesplicer/Makefile +++ b/biology/genesplicer/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2008/03/03 01:10:05 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2008/05/26 02:13:16 joerg Exp $ # DISTNAME= GeneSplicer @@ -13,6 +13,7 @@ COMMENT= Computational Method for Splice Site Prediction PKG_DESTDIR_SUPPORT= user-destdir USE_LANGUAGES= c c++ +USE_TOOLS+= pax EXDIR= ${PREFIX}/share/examples/genesplicer EXAMPLES= arabidopsis drosophila malaria pyoelii human rice \ @@ -28,6 +29,6 @@ do-install: .for DOC in readme fasta.example fasta.results ${INSTALL_DATA} ${WRKSRC}/sources/${DOC} ${DESTDIR}${EXDIR} .endfor - cd ${WRKSRC} && ${PAX} -rw ${EXAMPLES} ${DESTDIR}${EXDIR} + cd ${WRKSRC} && pax -rw ${EXAMPLES} ${DESTDIR}${EXDIR} .include "../../mk/bsd.pkg.mk" |