Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-php5/libchart
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/libchart/ChangeLog,v 1.2 2007/12/01 16:36:50 swegener Exp $
*libchart-1.2 (29 Nov 2007)
29 Nov 2007; Markus Ullmann
+libchart-1.2.ebuild:
Version bump from project overlay
07 Sep 2007; Jakub Moc
+libchart-1.2.ebuild:
New ebuild, bug #110116.
DIST libchart-1.2.tar.gz 103765 RMD160 8f71b5473a7a43dd9db08aa9aed695551a64cc1e SHA1 d96503fcd8075694ab34c35af766b8e9cb91fd4b SHA256 b0855dbd020a5b9dda58d67079e833aa7a297333f43bbb314745cc81b4d67f34
EBUILD libchart-1.2.ebuild 991 RMD160 9159a7e2d9d919503ea2e3c2d97c526b08b097d8 SHA1 e9463f6ea573da0f268bafa21ad347d5aba1229f SHA256 8ea3f7fae138ded9930dac7697b3df37ab5aa576b5c1dee9d3a5df4003286dec
MISC ChangeLog 473 RMD160 f7915403558049232b8d4bf5c24fe62f71c26828 SHA1 87f06d5aa92290ed16ed36b9d9064120bfab2cd6 SHA256 23ce8ef4c034257583b8eca72961ae896d35220279286056fe95af1d65e46159
MISC metadata.xml 157 RMD160 a98db3a086fae3c09a903dadbc05f60443ec4b1a SHA1 ddaa23cc35eb917bf8962b652442bebb1ce0f440 SHA256 54f8878ca0228e380abbaa4b529806b5533a6b9b51b3b16c0909e906586a91a1
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/libchart/libchart-1.2.ebuild,v 1.1 2007/11/29 23:45:15 jokey Exp $
inherit php-lib-r1 depend.php
DESCRIPTION="Libchart is a chart creation PHP library that is easy to use."
HOMEPAGE="http://naku.dohcrew.com/libchart"
SRC_URI="http://naku.dohcrew.com/${PN}/files/${P}.tar.gz"
LICENSE="GPL-3 BitstreamVera"
KEYWORDS="~x86"
SLOT=0
IUSE="examples"
need_php5
pkg_setup() {
if ! PHPCHECKNODIE="yes" require_php_with_use truetype || \
! PHPCHECKNODIE="yes" require_php_with_any_use gd gd-external ; then
die "Re-install ${PHP_PKG} with truetype and either gd or gd-external in USE."
fi
}
src_install() {
php-lib-r1_src_install ${PN} `cd ${PN}; find . -type f -print`
for i in ${PN}/{ChangeLog,README} ; do
dodoc-php ${i}
rm -f ${i}
done
if use examples ; then
insinto /usr/share/doc/${CATEGORY}/${PF}
doins -r demo/
fi
}