diff options
author | 2010-03-18 14:14:32 +0000 | |
---|---|---|
committer | 2010-03-18 14:14:32 +0000 | |
commit | e650d3a9ff2c385bc388b906d855cfa1de839491 (patch) | |
tree | 9b213a0f21d5be3466e8d08ac99c303d0f8289d3 /media-gfx | |
parent | Version bump, bug #310047 (diff) | |
download | gentoo-2-e650d3a9ff2c385bc388b906d855cfa1de839491.tar.gz gentoo-2-e650d3a9ff2c385bc388b906d855cfa1de839491.tar.bz2 gentoo-2-e650d3a9ff2c385bc388b906d855cfa1de839491.zip |
Private libpng prototypes and macro definitions were moved from png.h and pngconf.h into a new pngpriv.h header file that is not visible to applications, as such, copy pngpriv.h from lib/libpng/ to src/ before deleting the directory wrt #308673.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/optipng/ChangeLog | 8 | ||||
-rw-r--r-- | media-gfx/optipng/optipng-0.6.4.ebuild | 3 |
2 files changed, 9 insertions, 2 deletions
diff --git a/media-gfx/optipng/ChangeLog b/media-gfx/optipng/ChangeLog index 0d69e52f48e9..b3b41193006a 100644 --- a/media-gfx/optipng/ChangeLog +++ b/media-gfx/optipng/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-gfx/optipng # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/ChangeLog,v 1.54 2010/03/18 13:45:47 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/ChangeLog,v 1.55 2010/03/18 14:14:32 ssuominen Exp $ + + 18 Mar 2010; Samuli Suominen <ssuominen@gentoo.org> optipng-0.6.4.ebuild: + Private libpng prototypes and macro definitions were moved from png.h and + pngconf.h into a new pngpriv.h header file that is not visible to + applications, as such, copy pngpriv.h from lib/libpng/ to src/ before + deleting the directory wrt #308673. *optipng-0.6.4 (18 Mar 2010) diff --git a/media-gfx/optipng/optipng-0.6.4.ebuild b/media-gfx/optipng/optipng-0.6.4.ebuild index baf3a0c8980b..57290131d752 100644 --- a/media-gfx/optipng/optipng-0.6.4.ebuild +++ b/media-gfx/optipng/optipng-0.6.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/optipng-0.6.4.ebuild,v 1.1 2010/03/18 13:45:47 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/optipng-0.6.4.ebuild,v 1.2 2010/03/18 14:14:32 ssuominen Exp $ EAPI=2 inherit toolchain-funcs @@ -23,6 +23,7 @@ src_prepare() { src/scripts/gcc.mak.in \ lib/pngxtern/scripts/gcc.mak.in \ || die "sed failed" + cp lib/libpng/pngpriv.h src/ || die rm -rf lib/{libpng,zlib} } |