diff options
author | he <he@pkgsrc.org> | 2009-07-07 23:14:12 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2009-07-07 23:14:12 +0000 |
commit | 48c29f2d36c0d175540feb2d8978b846b0286585 (patch) | |
tree | da0fb0b4b381158cbd53a0ce3cc869459c025c91 /math | |
parent | d36c40f5728cbd97ab3537b01e0858be6fba0b70 (diff) | |
download | pkgsrc-48c29f2d36c0d175540feb2d8978b846b0286585.tar.gz |
Minor adjustments for this package:
o Ensure that the include/ directory exists before installing into it
(uncovered during bulk build, causing include to be a file, and
causing cascading build problems for all subsequent packages
wanting to install include files...)
o Do some other minor adjustments to placate pkglint.
Diffstat (limited to 'math')
-rw-r--r-- | math/tasp-vsipl/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/math/tasp-vsipl/Makefile b/math/tasp-vsipl/Makefile index 1203a773bb3..f227e72cac6 100644 --- a/math/tasp-vsipl/Makefile +++ b/math/tasp-vsipl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2007/02/19 21:38:32 joerg Exp $ +# $NetBSD: Makefile,v 1.12 2009/07/07 23:14:12 he Exp $ DISTNAME= tvcpp0p8 PKGNAME= tasp-vsipl-20030710 @@ -13,16 +13,18 @@ COMMENT= Vector Signal Image Processing Library WRKSRC= ${WRKDIR}/${DISTNAME}/lib DIST_SUBDIR= tasp-vsipl +INSTALLATION_DIRS+= include +INSTALLATION_DIRS+= share/doc/tasp-vsipl + post-extract: ${MKDIR} ${WRKSRC} post-install: - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tasp-vsipl - cd ${WRKSRC}/../ && ${INSTALL_DATA} Copyright \ + cd ${WRKDIR}/${DISTNAME} && ${INSTALL_DATA} Copyright \ README_FIRST *.pdf ${PREFIX}/share/doc/tasp-vsipl do-test: - @cd ${WRKSRC}/../testing && ${SETENV} ${MAKE_ENV} ${MAKE} all + cd ${WRKDIR}/${DISTNAME}/testing && ${SETENV} ${MAKE_ENV} ${MAKE} all .include "../../x11/libX11/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |