diff options
author | joerg <joerg@pkgsrc.org> | 2006-06-02 15:34:12 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-06-02 15:34:12 +0000 |
commit | 3260ddc5bb3cea98d6a320fbd498be9f17e6ce69 (patch) | |
tree | a0dd4e888225ef2fb0431f5a24c0e50f367c1093 /devel | |
parent | f280e9c09f3a609cde278106b7c8cbe2147bd507 (diff) | |
download | pkgsrc-3260ddc5bb3cea98d6a320fbd498be9f17e6ce69.tar.gz |
Use C++ and INSTALLATION_DIRS.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/argtable/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/devel/argtable/Makefile b/devel/argtable/Makefile index a38936b0e04..651a795c745 100644 --- a/devel/argtable/Makefile +++ b/devel/argtable/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2006/03/04 21:29:12 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2006/06/02 15:34:12 joerg Exp $ DISTNAME= argtable-1.2 CATEGORIES= devel @@ -10,9 +10,12 @@ COMMENT= Library for parsing command line arguments of a C/C++ program GNU_CONFIGURE= YES +USE_LANGUAGES= c c++ + +INSTALLATION_DIRS= include lib man/man3 share/doc/argtable + post-install: ${INSTALL_DATA} ${WRKSRC}/man/man3/*.3 ${PREFIX}/man/man3 - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/argtable ${INSTALL_DATA} ${WRKSRC}/COPYING.LIB ${PREFIX}/share/doc/argtable .include "../../mk/bsd.pkg.mk" |