diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-04-29 08:15:36 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-04-29 08:15:36 +0000 |
commit | 450a3bbc7710e91da931b832bcc907462c82cab2 (patch) | |
tree | f6b56411009c149b8973d1ba53e8451cf38b5947 /media-gfx | |
parent | Fix description (bug #365225 by Manu Wächter). (diff) | |
download | gentoo-2-450a3bbc7710e91da931b832bcc907462c82cab2.tar.gz gentoo-2-450a3bbc7710e91da931b832bcc907462c82cab2.tar.bz2 gentoo-2-450a3bbc7710e91da931b832bcc907462c82cab2.zip |
Fix dependencies and linking error (bug #365107 by Helmut Jarausch).
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/apngopt/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/apngopt/apngopt-1.0.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/media-gfx/apngopt/ChangeLog b/media-gfx/apngopt/ChangeLog index ffe0b4ab0c6d..92ec40598b4e 100644 --- a/media-gfx/apngopt/ChangeLog +++ b/media-gfx/apngopt/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/apngopt # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngopt/ChangeLog,v 1.1 2011/04/26 17:43:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngopt/ChangeLog,v 1.2 2011/04/29 08:15:36 radhermit Exp $ + + 29 Apr 2011; Tim Harder <radhermit@gentoo.org> apngopt-1.0.ebuild: + Fix dependencies and linking error (bug #365107 by Helmut Jarausch). *apngopt-1.0 (26 Apr 2011) diff --git a/media-gfx/apngopt/apngopt-1.0.ebuild b/media-gfx/apngopt/apngopt-1.0.ebuild index 7f42bf38deba..4cc54e0a761c 100644 --- a/media-gfx/apngopt/apngopt-1.0.ebuild +++ b/media-gfx/apngopt/apngopt-1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngopt/apngopt-1.0.ebuild,v 1.1 2011/04/26 17:43:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/apngopt/apngopt-1.0.ebuild,v 1.2 2011/04/29 08:15:36 radhermit Exp $ EAPI="3" @@ -15,7 +15,7 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND="media-libs/libpng[apng]" +RDEPEND="sys-libs/zlib" DEPEND="${RDEPEND} dev-util/pkgconfig app-arch/unzip" @@ -23,7 +23,7 @@ DEPEND="${RDEPEND} S=${WORKDIR} src_compile() { - emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) --libs libpng)" ${PN} || die + emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) --libs zlib)" ${PN} || die } src_install() { |