diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-08-07 08:47:37 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-08-07 08:47:37 +0000 |
commit | a1c4f05285230378e5ba8cf972f7124bf98a0b6f (patch) | |
tree | 2b5bf5d11344b3c694cf144b2e2776d41a01a56a | |
parent | added new package, calamaris (diff) | |
download | historical-a1c4f05285230378e5ba8cf972f7124bf98a0b6f.tar.gz historical-a1c4f05285230378e5ba8cf972f7124bf98a0b6f.tar.bz2 historical-a1c4f05285230378e5ba8cf972f7124bf98a0b6f.zip |
Should fix PHP and GD issues.. I hope. Thanks to Edward Roper for the possible fix.
-rw-r--r-- | media-libs/pdflib/ChangeLog | 13 | ||||
-rw-r--r-- | media-libs/pdflib/pdflib-4.0.1-r3.ebuild | 5 |
2 files changed, 15 insertions, 3 deletions
diff --git a/media-libs/pdflib/ChangeLog b/media-libs/pdflib/ChangeLog index d9d5e5412730..2fff7cf310ea 100644 --- a/media-libs/pdflib/ChangeLog +++ b/media-libs/pdflib/ChangeLog @@ -1,9 +1,20 @@ # ChangeLog for media-libs/pdflib # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-libs/pdflib/ChangeLog,v 1.2 2002/04/04 06:04:09 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/pdflib/ChangeLog,v 1.3 2002/08/07 08:47:37 rphillips Exp $ *pdflib-4.0.1-r3 (3 Apr 2002) + 7 Aug 2002; Ryan Phillips <rphillips@gentoo.org> : + + Changed package to use system libpng. PHP doesn't like being + linked to two separate places. + + Edward Roper states, "php.net indicates it's a conflict of + pdflib's png support and libpng... if pdflib is compiled to use + system libpng and not internal libpng it will supposedly work..." + + Which he then verified. + 3 Apr 2002; Daniel Robbins <drobbins@gentoo.org> : New revision -- we dodir /usr/bin (required for make install), closing bug 1498. Also, now some installation steps requiring java are conditional on the java USE variable diff --git a/media-libs/pdflib/pdflib-4.0.1-r3.ebuild b/media-libs/pdflib/pdflib-4.0.1-r3.ebuild index 0244c5065c94..eedc4d720aed 100644 --- a/media-libs/pdflib/pdflib-4.0.1-r3.ebuild +++ b/media-libs/pdflib/pdflib-4.0.1-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-libs/pdflib/pdflib-4.0.1-r3.ebuild,v 1.3 2002/07/23 00:12:55 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/pdflib/pdflib-4.0.1-r3.ebuild,v 1.4 2002/08/07 08:47:37 rphillips Exp $ S=${WORKDIR}/${P} DESCRIPTION="A library for generating PDF on the fly" @@ -47,10 +47,11 @@ src_compile() { use java \ && myconf="${myconf} --with-java=${JAVA_HOME}" \ || myconf="${myconf} --with-java=no" - + econf \ --enable-cxx \ --disable-php \ + --with-pnglib \ ${myconf} || die emake || die |