diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-php/pecl-cairo | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-php/pecl-cairo')
-rw-r--r-- | dev-php/pecl-cairo/Manifest | 1 | ||||
-rw-r--r-- | dev-php/pecl-cairo/metadata.xml | 10 | ||||
-rw-r--r-- | dev-php/pecl-cairo/pecl-cairo-0.3.2.ebuild | 25 |
3 files changed, 36 insertions, 0 deletions
diff --git a/dev-php/pecl-cairo/Manifest b/dev-php/pecl-cairo/Manifest new file mode 100644 index 000000000000..c9ac37f05a68 --- /dev/null +++ b/dev-php/pecl-cairo/Manifest @@ -0,0 +1 @@ +DIST cairo-0.3.2.tgz 173203 SHA256 c69a33b4d8c9611c0e32383b577509f64406afb5670518c8de2e34d53c926359 SHA512 def7cb67d84349317daad8c6aa8747d7dfe66159df0d72d50e528577288859cbfb6afa982888983bd41ce7ba5267c40a38ce48b56a0d33ac56e1805485391d7a WHIRLPOOL d90c5274813682c4ae131116eff0e593d6ca76c9527c54b366d0c3b7aaf778c440fdaa66d91aa9035eed1632c085e7e7706307771028a3f281f33aae0fc15820 diff --git a/dev-php/pecl-cairo/metadata.xml b/dev-php/pecl-cairo/metadata.xml new file mode 100644 index 000000000000..b98253a81102 --- /dev/null +++ b/dev-php/pecl-cairo/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>php</herd> + <longdescription lang="en">The Cairo PHP Extension aims to provide support + for all officially supported font backends and surface backends, as well + as expose all available functionality in cairo to PHP users. + </longdescription> +</pkgmetadata> + diff --git a/dev-php/pecl-cairo/pecl-cairo-0.3.2.ebuild b/dev-php/pecl-cairo/pecl-cairo-0.3.2.ebuild new file mode 100644 index 000000000000..22101e27fc79 --- /dev/null +++ b/dev-php/pecl-cairo/pecl-cairo-0.3.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +DOCS="TODO" + +USE_PHP="php5-4 php5-5" + +inherit php-ext-pecl-r2 + +KEYWORDS="~amd64 ~x86" + +DESCRIPTION="Cairo bindings for PHP" +LICENSE="PHP-3.01" +SLOT="0" + +DEPEND=">=x11-libs/cairo-1.4[svg]" +RDEPEND="${DEPEND}" + +IUSE="" + +S="${WORKDIR}/Cairo-${PV}" +PHP_EXT_S="$S" |