diff options
author | Geert Bevin <gbevin@gentoo.org> | 2002-04-10 21:06:49 +0000 |
---|---|---|
committer | Geert Bevin <gbevin@gentoo.org> | 2002-04-10 21:06:49 +0000 |
commit | c1764a49c7ca6588122a4208929aa47c5a110dd9 (patch) | |
tree | d9a2ac747bd995e35c904e6dbc63843aeb4a2865 /dev-libs/root | |
parent | updating glade version (diff) | |
download | gentoo-2-c1764a49c7ca6588122a4208929aa47c5a110dd9.tar.gz gentoo-2-c1764a49c7ca6588122a4208929aa47c5a110dd9.tar.bz2 gentoo-2-c1764a49c7ca6588122a4208929aa47c5a110dd9.zip |
initial important of the root framework
Diffstat (limited to 'dev-libs/root')
-rw-r--r-- | dev-libs/root/files/digest-root-3.03.04 | 1 | ||||
-rw-r--r-- | dev-libs/root/root-3.03.04.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/dev-libs/root/files/digest-root-3.03.04 b/dev-libs/root/files/digest-root-3.03.04 new file mode 100644 index 000000000000..ef93a97a2fdb --- /dev/null +++ b/dev-libs/root/files/digest-root-3.03.04 @@ -0,0 +1 @@ +MD5 70edd37d08af7efb281abafd014bd9d4 root_v3.03.04.source.tar.gz 5367020 diff --git a/dev-libs/root/root-3.03.04.ebuild b/dev-libs/root/root-3.03.04.ebuild new file mode 100644 index 000000000000..fafeb3ec8b42 --- /dev/null +++ b/dev-libs/root/root-3.03.04.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Geert Bevin <gbevin@uwyn.com> +# $Header: /var/cvsroot/gentoo-x86/dev-libs/root/root-3.03.04.ebuild,v 1.1 2002/04/10 21:06:49 gbevin 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 + >=media-libs/xpm-3.4k + >=media-libs/freetype-2.0.9 + opengl? ( virtual/opengl virtual/glu ) + mysql? ( >=dev-db/mysql-4.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" + + ./configure \ + linux \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --enable-shared \ + --enable-rpath \ + --enable-thread \ + --enable-star \ + --enable-ttf \ + --disable-cern \ + --disable-sapdb \ + --disable-rfio \ + --disable-dcache \ + --disable-srp \ + --disable-afs \ + --disable-krb5 \ + --enable-shadowpw \ + --disable-pythia \ + --disable-pythia6 \ + --disable-venus \ + --enable-soversion \ + ${myconf} || die "./configure failed" + make || die +} + +src_install () { + make DESTDIR=${D} install || die +} |