diff options
author | mjl <mjl@pkgsrc.org> | 2001-06-14 12:55:17 +0000 |
---|---|---|
committer | mjl <mjl@pkgsrc.org> | 2001-06-14 12:55:17 +0000 |
commit | 833b305eec1dbb8d7b8b67a0dbf5df0a7473c9e6 (patch) | |
tree | 84915100c37d738c44e7dd43c77028e0aa40eac7 /devel/popt/Makefile | |
parent | 526936b52e734b05379223a1338bb9acb6e54eae (diff) | |
download | pkgsrc-833b305eec1dbb8d7b8b67a0dbf5df0a7473c9e6.tar.gz |
Update to 1.5. (Incomplete, alas) changes:
- heavy dose of const's
- poptParseArgvString() now NULL terminates the list
- added support for single -
- misc bug fixes
- portability improvements
- fixed memset() in help message generation
- added extern "C" stuff to popt.h for C++ compilers
- const'ified poptParseArgvString
- fixed bug in chaind alias happens which seems to have only
affected --triggers in rpm
- added POPT_ARG_VAL
- popt.3 installed by default
- added POPT_ARG_INTL_DOMAIN
- updated Makefile's to be more GNUish
Diffstat (limited to 'devel/popt/Makefile')
-rw-r--r-- | devel/popt/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/devel/popt/Makefile b/devel/popt/Makefile index f1c8368e7cb..a8bf7027737 100644 --- a/devel/popt/Makefile +++ b/devel/popt/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.6 2001/04/24 12:30:18 wulf Exp $ +# $NetBSD: Makefile,v 1.7 2001/06/14 12:55:17 mjl Exp $ # -DISTNAME= popt-1.2 -PKGNAME= popt-1.2nb1 +DISTNAME= popt-1.5.-1 +PKGNAME= popt-1.5 CATEGORIES= devel -MASTER_SITES= ftp://ftp.redhat.com/redhat/code/popt/ +MASTER_SITES= ftp://people.redhat.com/sopwith/popt/ MAINTAINER= packages@netbsd.org COMMENT= Command line option parsing library @@ -16,6 +16,7 @@ CONFLICTS= ORBit<=0.5.3 GNU_CONFIGURE= yes USE_GMAKE= yes +WRKSRC= ${WRKDIR}/${PKGNAME} MAKE_ENV+= LOCALEDIR=${LOCAL_BASE}/share/locale/ .include "../../mk/bsd.pkg.mk" |