diff options
author | jlam <jlam@pkgsrc.org> | 2004-09-22 08:09:14 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-09-22 08:09:14 +0000 |
commit | b4138c5d83e765689bf160301d4bf60b44c4db47 (patch) | |
tree | ba20a3f8eae29ebaf5d20fc3c40ea75a7075749e /graphics/png/Makefile | |
parent | 4387aad1b07d7b31a8ca2643457357188fa11532 (diff) | |
download | pkgsrc-b4138c5d83e765689bf160301d4bf60b44c4db47.tar.gz |
Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:
lib/libfoo.a
lib/libfoo.la
lib/libfoo.so
lib/libfoo.so.0
lib/libfoo.so.0.1
one simply needs:
lib/libfoo.la
and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.
Also make LIBTOOLIZE_PLIST default to "yes".
Diffstat (limited to 'graphics/png/Makefile')
-rw-r--r-- | graphics/png/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/graphics/png/Makefile b/graphics/png/Makefile index ecdc3b90e72..37a708c3f4c 100644 --- a/graphics/png/Makefile +++ b/graphics/png/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.65 2004/08/17 09:54:30 drochner Exp $ +# $NetBSD: Makefile,v 1.66 2004/09/22 08:09:37 jlam Exp $ # On update, don't forget to increase shared library major/minor's in # accordance with changes (patch-aa). @@ -29,8 +29,6 @@ MAKEFILE= scripts/makefile.std MAKE_ENV+= REALCC="${CC}" MAKE_ENV+= LIBPNG_SO_MAJOR=${LIBPNG_SO_MAJOR} MAKE_ENV+= LIBPNG_SO_MINOR=${LIBPNG_SO_MINOR} -PLIST_SUBST+= LIBPNG_SO_MAJOR=${LIBPNG_SO_MAJOR} -PLIST_SUBST+= LIBPNG_SO_MINOR=${LIBPNG_SO_MINOR} INSTALLATION_DIRS= include lib/pkgconfig man/man3 man/man5 |