blob: 219ae8b6aeb8a11505d11aa3f78512cfe8c65efd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/symfony/symfony-1.0.11.ebuild,v 1.1 2008/02/11 21:30:07 armin76 Exp $
inherit php-pear-lib-r1 depend.php
KEYWORDS="~amd64 ~x86"
DESCRIPTION="Open-source PHP5 professional web framework."
HOMEPAGE="http://www.symfony-project.com/"
SRC_URI="http://pear.symfony-project.com/get/${P}.tgz"
LICENSE="MIT LGPL-2.1 BSD BSD-2 FDL-1.2"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND=""
need_php_by_category
pkg_setup() {
# Symfony needs some features in PHP5 in order to work
require_php_with_use cli ctype reflection spl simplexml xml pcre session
}
|