diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-php/agavi | |
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/agavi')
-rw-r--r-- | dev-php/agavi/Manifest | 1 | ||||
-rw-r--r-- | dev-php/agavi/agavi-1.0.7.ebuild | 40 | ||||
-rw-r--r-- | dev-php/agavi/metadata.xml | 5 |
3 files changed, 46 insertions, 0 deletions
diff --git a/dev-php/agavi/Manifest b/dev-php/agavi/Manifest new file mode 100644 index 000000000000..032184971862 --- /dev/null +++ b/dev-php/agavi/Manifest @@ -0,0 +1 @@ +DIST 1.0.7.tgz 2064782 SHA256 46cb0f9a4f9381ec06e0b82b11683930ac732140188b2e841d3e73d2574173f7 SHA512 157d1213b8279a4edd1706f66334bc60889b51b1e71c6d398b74272c72ff47f540f7c7eaf3b1c57c0d6e4397c647f80264a74fa5929d5521ec67799aa9f58156 WHIRLPOOL 999d7275a3a42dd1abdec017597015c6c500abdf80a9b0d40ff1fab3ff19694225f9f080eae7389e7fedf97ef46c96587f95e78b9793c7ec53c1561d5beee9ff diff --git a/dev-php/agavi/agavi-1.0.7.ebuild b/dev-php/agavi/agavi-1.0.7.ebuild new file mode 100644 index 000000000000..b0bee74d27c0 --- /dev/null +++ b/dev-php/agavi/agavi-1.0.7.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit php-pear-lib-r1 + +DESCRIPTION="PHP5 MVC Application Framework" +HOMEPAGE="http://www.agavi.org/" +SRC_URI="http://www.agavi.org/download/${PV}.tgz" + +LICENSE="LGPL-2.1+ icu unicode ZLIB public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# currently fails to install with dev-php/PEAR-PEAR_PackageFileManager-1.7.0 +DEPEND=" + >=dev-lang/php-5[xml] + >=dev-php/PEAR-PEAR-1.6.2-r1 + >=dev-php/phing-2.4[-minimal] + <dev-php/PEAR-PEAR_PackageFileManager-1.7.0 + " + +RDEPEND=" + >=dev-php/phing-2.4 + " + +src_compile() { + phing package-pear || die "failed to build pear package" +} + +src_install() { + cd "${WORKDIR}" + mv "${S}" "${WORKDIR}"/${PV} + cp -pPR "${WORKDIR}"/${PV}/pear-build/* "${WORKDIR}"/ + cd "${S}" + php-pear-lib-r1_src_install +} diff --git a/dev-php/agavi/metadata.xml b/dev-php/agavi/metadata.xml new file mode 100644 index 000000000000..fd3dbe39fa64 --- /dev/null +++ b/dev-php/agavi/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>php</herd> +</pkgmetadata> |