blob: 18c38960289cd5967dde46890f4f38bd2e2fe1b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/horde-turba/horde-turba-2.3.4.ebuild,v 1.2 2010/08/19 13:45:39 hwoarang Exp $
HORDE_PHP_FEATURES="-o mysql mysqli odbc postgres ldap"
HORDE_MAJ="-h3"
inherit horde
DESCRIPTION="Turba is the Horde address book / contact management program"
KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="ldap"
DEPEND=""
RDEPEND=">=www-apps/horde-3
ldap? ( dev-php/PEAR-Net_LDAP )"
src_unpack() {
horde_src_unpack
# Remove vcf specs as they don't install and are not useful to the end user
rm -r docs/vcf || die 'removing docs failed'
}
|