diff options
author | joerg <joerg@pkgsrc.org> | 2009-07-07 21:58:38 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-07-07 21:58:38 +0000 |
commit | f893991678752de63f61914d31733632eb19fd56 (patch) | |
tree | a904fb96a5393c2d78db82dd76027921ba9d852e /textproc/isearch/Makefile | |
parent | abb8c4be4295bf6b668cebb9e38325bb6a1302de (diff) | |
download | pkgsrc-f893991678752de63f61914d31733632eb19fd56.tar.gz |
user-destdir support
Diffstat (limited to 'textproc/isearch/Makefile')
-rw-r--r-- | textproc/isearch/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/textproc/isearch/Makefile b/textproc/isearch/Makefile index 7422814dab2..cc129f91eaa 100644 --- a/textproc/isearch/Makefile +++ b/textproc/isearch/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2006/06/02 13:38:53 joerg Exp $ +# $NetBSD: Makefile,v 1.9 2009/07/07 22:00:07 joerg Exp $ DISTNAME= Isearch-1.47.01 PKGNAME= isearch-1.47.01 @@ -9,15 +9,16 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.etymon.com/Isearch/ COMMENT= Advanced text indexing and searching system -GNU_CONFIGURE= yes +PKG_DESTDIR_SUPPORT= user-destdir +GNU_CONFIGURE= yes USE_LANGUAGES= c c++ +INSTALLATION_DIRS= share/doc/isearch share/doc/html/isearch + post-install: - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/isearch - ${INSTALL_DATA} ${WRKSRC}/TUTORIAL ${PREFIX}/share/doc/isearch - ${INSTALL_DATA} ${WRKSRC}/doc/DebugFirewall.doc ${PREFIX}/share/doc/isearch - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/isearch - ${INSTALL_DATA} ${WRKSRC}/html/*.html ${PREFIX}/share/doc/html/isearch/ + ${INSTALL_DATA} ${WRKSRC}/TUTORIAL ${DESTDIR}${PREFIX}/share/doc/isearch + ${INSTALL_DATA} ${WRKSRC}/doc/DebugFirewall.doc ${DESTDIR}${PREFIX}/share/doc/isearch + ${INSTALL_DATA} ${WRKSRC}/html/*.html ${DESTDIR}${PREFIX}/share/doc/html/isearch/ .include "../../mk/bsd.pkg.mk" |