blob: 91a55ee56b2b2d938f04f6607ae87768c36d7a3f (
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
25
26
27
28
29
30
31
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PHPonTrax/PHPonTrax-0.17.0.ebuild,v 1.1 2012/01/19 12:02:10 mabi Exp $
EAPI="4"
inherit php-pear-r1
DESCRIPTION="Web-application and persistance framework based on Ruby on Rails"
HOMEPAGE="http://www.phpontrax.org/"
SRC_URI="http://pear.phpontrax.com/get/${P}.tgz"
LICENSE="MIT"
SLOT="0"
IUSE="mysql postgres sqlite"
KEYWORDS="~amd64 ~x86"
RDEPEND="virtual/httpd-php
dev-lang/php[session,imap]
dev-php/PEAR-MDB2
dev-php/PEAR-Mail
dev-php/PEAR-Mail_Mime
mysql? ( dev-php/PEAR-MDB2_Driver_mysql )
postgres? ( dev-php/PEAR-MDB2_Driver_pgsql )
sqlite? ( dev-php/PEAR-MDB2_Driver_sqlite )
!mysql? ( !postgres? ( !sqlite? ( dev-php/PEAR-MDB2_Driver_mysql ) ) )"
pkg_postinst() {
ewarn "This packages requires that you enable mod_rewrite in apache-2."
}
|