diff options
author | wiz <wiz@pkgsrc.org> | 2006-05-17 21:48:57 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-05-17 21:48:57 +0000 |
commit | 83158489a7fd888a512ccf164e291cf445561de2 (patch) | |
tree | 2065e13891fb838ab6d9c6be80c085dce0f4f095 /graphics/png/Makefile | |
parent | c190b8e3c01012910fdb661ce7ba68d08a5be161 (diff) | |
download | pkgsrc-83158489a7fd888a512ccf164e291cf445561de2.tar.gz |
Update to 1.2.10:
Package change: install old compat library as libpngcompat (pkgsrc
specific, will probably be changed in the future). Makes package
handling quite a bit easier.
version 1.2.10beta1 [April 15, 2006]
Renamed "config.h" to "png_conf.h" and revised Makefile.am to add
-DPNG_BUILDING_LIBPNG to compile directive, and modified pngconf.h
to include png_conf.h only when PNG_BUILDING_LIBPNG is defined.
version 1.2.10beta2 [April 15, 2006]
Manually updated Makefile.in and configure. Changed png_conf.h.in
back to config.h.
version 1.2.10beta3 [April 15, 2006]
Change png_conf.h back to config.h in pngconf.h.
version 1.2.10beta4 [April 16, 2006]
Change PNG_BUILDING_LIBPNG to PNG_CONFIGURE_LIBPNG in config/Makefile*.
version 1.2.10beta5 [April 16, 2006]
Added a configure check for compiling assembler code in pnggccrd.c
version 1.2.10beta6 [April 17, 2006]
Revised the configure check for pnggccrd.c
Moved -DPNG_CONFIGURE_LIBPNG into @LIBPNG_DEFINES@
Added @LIBPNG_DEFINES@ to arguments when building libpng.sym
version 1.2.10beta7 [April 18, 2006]
Change "exec_prefix=$prefix" to "exec_prefix=$(prefix)" in makefiles.
version 1.2.10rc1 [April 19, 2006]
Ensure pngconf.h doesn't define both PNG_USE_PNGGCCRD and PNG_USE_PNGVCRD
Fixed "LN_FS" typo in makefile.sco and makefile.solaris.
version 1.2.10rc2 [April 20, 2006]
Added a backslash between -DPNG_CONFIGURE_LIBPNG and -DPNG_NO_ASSEMBLER_CODE
in configure.ac and configure
Made the configure warning about versioned symbols less arrogant.
version 1.2.10rc3 [April 21, 2006]
Added a note in libpng.txt that png_set_sig_bytes(8) can be used when
writing an embedded PNG without the 8-byte signature.
Revised makefiles and configure to avoid making links to libpng.so.*
version 1.2.10 [April 23, 2006]
Reverted configure to "rc2" state.
Diffstat (limited to 'graphics/png/Makefile')
-rw-r--r-- | graphics/png/Makefile | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/graphics/png/Makefile b/graphics/png/Makefile index 3e24064632b..16ae026bad6 100644 --- a/graphics/png/Makefile +++ b/graphics/png/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.79 2006/05/09 22:28:18 wiz Exp $ +# $NetBSD: Makefile,v 1.80 2006/05/17 21:48:57 wiz Exp $ -DISTNAME= libpng-1.2.9 +DISTNAME= libpng-1.2.10 PKGNAME= ${DISTNAME:S/lib//} -PKGREVISION= 2 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libpng/} \ http://www.libpng.org/pub/png/src/ \ @@ -31,18 +30,8 @@ CPPFLAGS+= -DPNG_NO_ASSEMBLER_CODE SUBST_CLASSES+= rpathfix SUBST_FILES.rpathfix= scripts/libpng-config.in SUBST_MESSAGE.rpathfix= Adding rpath to libpng-config. -SUBST_SED.rpathfix= '/^L_opts=/s|-L\([ ]*[^ ]*\)"|${COMPILER_RPATH_FLAG}\1 -L\1"|g' +SUBST_SED.rpathfix= -e '/^L_opts=/s|-L\([ ]*[^ ]*\)"|${COMPILER_RPATH_FLAG}\1 -L\1"|g' SUBST_STAGE.rpathfix= pre-configure -# highly version dependent -- fix up libtool .la file contents, since -# just copying a .la file to a new filename is not enough -# PLIST breakage will show when it needs updating :) -post-install: - cd ${PREFIX}/lib && \ - ${SED} -e 's/png12/png/g' -e 's/0.9.0/3.9.0/' -e 's/so\.0/so\.3/g' \ - -e 's/libpng.0.dylib/libpng.3.dylib/g' \ - libpng.la > libpng.la.out && \ - ${MV} libpng.la.out libpng.la - .include "../../devel/zlib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |