diff options
author | Matti Bickel <mabi@gentoo.org> | 2012-03-10 11:07:38 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2012-03-10 11:07:38 +0000 |
commit | fbee27dcf55312d1ba5f60a505694afd3dca69f3 (patch) | |
tree | 7988eb233d4d5f46db652b20372dee9926c49774 /dev-php/tcpdf/tcpdf-5.9.149.ebuild | |
parent | Update Mmake.vars to set INSTALL_LIBDIR (diff) | |
download | gentoo-2-fbee27dcf55312d1ba5f60a505694afd3dca69f3.tar.gz gentoo-2-fbee27dcf55312d1ba5f60a505694afd3dca69f3.tar.bz2 gentoo-2-fbee27dcf55312d1ba5f60a505694afd3dca69f3.zip |
initial commit (based on ebuild by Francisco Javier, bug #223953)
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'dev-php/tcpdf/tcpdf-5.9.149.ebuild')
-rw-r--r-- | dev-php/tcpdf/tcpdf-5.9.149.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-php/tcpdf/tcpdf-5.9.149.ebuild b/dev-php/tcpdf/tcpdf-5.9.149.ebuild new file mode 100644 index 000000000000..2f6b02850fdc --- /dev/null +++ b/dev-php/tcpdf/tcpdf-5.9.149.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/tcpdf/tcpdf-5.9.149.ebuild,v 1.1 2012/03/10 11:07:38 mabi Exp $ + +EAPI=4 + +KEYWORDS="~amd64 ~x86" + +MY_P=${PN}_${PV//./_} + +DESCRIPTION="TCPDF is a FLOSS PHP class for generating PDF documents." +HOMEPAGE="http://www.tcpdf.org/" +SRC_URI="mirror://sourceforge/tcpdf/${MY_P}.zip" +LICENSE="LGPL-3" +SLOT="0" +IUSE="examples" + +DEPEND="dev-lang/php" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}" + +src_install() { + insinto "/usr/share/php/${PN}" + doins *.php tcpdf.* + doins -r config images fonts cache + + dodoc CHANGELOG.TXT README.TXT + + dohtml -r doc/* + use examples && dodoc -r examples +} |