diff options
author | 2011-02-24 17:31:10 +0000 | |
---|---|---|
committer | 2011-02-24 17:31:10 +0000 | |
commit | 5fd419e2d35347f6e2e1e7a3d9d9a7e20dc5e860 (patch) | |
tree | 2c28f67896ade952676b81eb75db481d2e67b9a2 /app-text/podofo | |
parent | Updated homepage and prexified (diff) | |
download | gentoo-2-5fd419e2d35347f6e2e1e7a3d9d9a7e20dc5e860.tar.gz gentoo-2-5fd419e2d35347f6e2e1e7a3d9d9a7e20dc5e860.tar.bz2 gentoo-2-5fd419e2d35347f6e2e1e7a3d9d9a7e20dc5e860.zip |
24 Feb 2011; Zac Medico <zmedico@gentoo.org> podofo-0.8.4.ebuild:
Bug #356293 - libpng-1.5 compatibility
(Portage version: 2.2.0_alpha25/cvs/Linux i686)
Diffstat (limited to 'app-text/podofo')
-rw-r--r-- | app-text/podofo/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/podofo/podofo-0.8.4.ebuild | 10 |
2 files changed, 11 insertions, 4 deletions
diff --git a/app-text/podofo/ChangeLog b/app-text/podofo/ChangeLog index 82fce9331a86..9c789f464bd3 100644 --- a/app-text/podofo/ChangeLog +++ b/app-text/podofo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/podofo # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/podofo/ChangeLog,v 1.19 2011/01/19 21:55:21 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/podofo/ChangeLog,v 1.20 2011/02/24 17:31:10 zmedico Exp $ + + 24 Feb 2011; Zac Medico <zmedico@gentoo.org> podofo-0.8.4.ebuild: + Bug #356293 - libpng-1.5 compatibility 19 Jan 2011; Zac Medico <zmedico@gentoo.org> podofo-0.8.4.ebuild: Bug #352125 - Disable FontTest::testFonts since it fails depending on diff --git a/app-text/podofo/podofo-0.8.4.ebuild b/app-text/podofo/podofo-0.8.4.ebuild index 7f2e84927e3f..40bf64958a2a 100644 --- a/app-text/podofo/podofo-0.8.4.ebuild +++ b/app-text/podofo/podofo-0.8.4.ebuild @@ -1,13 +1,14 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/podofo/podofo-0.8.4.ebuild,v 1.2 2011/01/19 21:55:21 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/podofo/podofo-0.8.4.ebuild,v 1.3 2011/02/24 17:31:10 zmedico Exp $ EAPI=2 -inherit cmake-utils multilib +inherit cmake-utils eutils multilib DESCRIPTION="PoDoFo is a C++ library to work with the PDF file format." HOMEPAGE="http://sourceforge.net/projects/podofo/" -SRC_URI="mirror://sourceforge/podofo/${P}.tar.gz" +SRC_URI="mirror://sourceforge/podofo/${P}.tar.gz +http://sourceforge.net/apps/mantisbt/podofo/file_download.php?file_id=15&type=bug -> podofo-0.8.4-libpng15.patch" LICENSE="GPL-2 LGPL-2.1" SLOT="0" @@ -29,6 +30,9 @@ DEPEND="${RDEPEND} DOCS="AUTHORS ChangeLog TODO" src_prepare() { + # Bug #356293 - libpng-1.5 compatibility + epatch "$DISTDIR"/$P-libpng15.patch + sed -i \ -e "s:LIBDIRNAME \"lib\":LIBDIRNAME \"$(get_libdir)\":" \ CMakeLists.txt || die |