blob: 1fbf2490776f1acc9167174c29a85e9047e8b998 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/virtual/postgresql/postgresql-9.4.ebuild,v 1.1 2014/11/02 12:42:31 titanofold Exp $
EAPI=5
DESCRIPTION="Virtual package to ease the transition to unified PostgreSQL ebuilds"
HOMEPAGE=""
SRC_URI=""
LICENSE=""
SLOT="${PV}"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
IUSE="kerberos ldap server threads"
DEPEND="
|| (
(
dev-db/postgresql-base:${SLOT}[kerberos=,ldap=,threads=]
server? ( dev-db/postgresql-server:${SLOT} )
)
dev-db/postgresql:${SLOT}[kerberos=,ldap=,server=,threads=]
)
"
RDEPEND="${DEPEND}"
|