summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-08-01 18:46:28 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-08-01 18:46:28 +0000
commit914ff821d2c9171d59d78c830c93b4b465321ff8 (patch)
tree267b40e68e7cb52dc549ccb98698daa3b5271ad4 /dev-libs/root
parentAdded KEYWORDS, removed old version. (diff)
downloadgentoo-2-914ff821d2c9171d59d78c830c93b4b465321ff8.tar.gz
gentoo-2-914ff821d2c9171d59d78c830c93b4b465321ff8.tar.bz2
gentoo-2-914ff821d2c9171d59d78c830c93b4b465321ff8.zip
repoman'd
Diffstat (limited to 'dev-libs/root')
-rw-r--r--dev-libs/root/root-3.03.04-r1.ebuild28
1 files changed, 18 insertions, 10 deletions
diff --git a/dev-libs/root/root-3.03.04-r1.ebuild b/dev-libs/root/root-3.03.04-r1.ebuild
index eb0bacfd34ad..f99a7f3e5338 100644
--- a/dev-libs/root/root-3.03.04-r1.ebuild
+++ b/dev-libs/root/root-3.03.04-r1.ebuild
@@ -1,31 +1,39 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/root/root-3.03.04-r1.ebuild,v 1.2 2002/07/11 06:30:21 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/root/root-3.03.04-r1.ebuild,v 1.3 2002/08/01 18:46:28 seemant Exp $
S=${WORKDIR}/${PN}
DESCRIPTION="An Object-Oriented Data Analysis Framework"
SRC_URI="ftp://root.cern.ch/root/root_v3.03.04.source.tar.gz"
HOMEPAGE="http://root.cern.ch/"
-DEPEND="virtual/glibc
- virtual/x11
+SLOT="0"
+LICENSE="as-is"
+KEYWORDS="x86"
+
+DEPEND="virtual/x11
>=media-libs/xpm-3.4k
>=media-libs/freetype-2.0.9
opengl? ( virtual/opengl virtual/glu )
mysql? ( >=dev-db/mysql-3.23.49 )
postgres? ( >=dev-db/postgresql-7.1.3-r4 )"
-RDEPEND="${DEPEND}"
src_compile() {
- use opengl && myconf="${myconf} --enable-opengl" || myconf="${myconf} --disable-opengl"
- use mysql && myconf="${myconf} --enable-mysql" || myconf="${myconf} --disable-mysql"
- use postgres && myconf="${myconf} --enable-pgsql" || myconf="${myconf} --disable-pgsql"
+ use opengl \
+ && myconf="${myconf} --enable-opengl" \
+ || myconf="${myconf} --disable-opengl"
+
+ use mysql \
+ && myconf="${myconf} --enable-mysql" \
+ || myconf="${myconf} --disable-mysql"
+
+ use postgres \
+ && myconf="${myconf} --enable-pgsql" \
+ || myconf="${myconf} --disable-pgsql"
- ./configure \
+ econ \
linux \
- --prefix=/usr \
- --mandir=/usr/share/man \
--docdir=/usr/share/doc/${P} \
--enable-shared \
--disable-rpath \