diff options
author | 2000-12-21 08:22:29 +0000 | |
---|---|---|
committer | 2000-12-21 08:22:29 +0000 | |
commit | 3d131c1ca5764e9dada5158d182d3f72306b0ea9 (patch) | |
tree | 7ce4ecec94ba43c4d62758d74069627d1aab1105 /gnome-office/gnome-db/gnome-db-0.2.1.ebuild | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-3d131c1ca5764e9dada5158d182d3f72306b0ea9.tar.gz gentoo-2-3d131c1ca5764e9dada5158d182d3f72306b0ea9.tar.bz2 gentoo-2-3d131c1ca5764e9dada5158d182d3f72306b0ea9.zip |
*** empty log message ***
Diffstat (limited to 'gnome-office/gnome-db/gnome-db-0.2.1.ebuild')
-rw-r--r-- | gnome-office/gnome-db/gnome-db-0.2.1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnome-office/gnome-db/gnome-db-0.2.1.ebuild b/gnome-office/gnome-db/gnome-db-0.2.1.ebuild new file mode 100644 index 000000000000..5002556de1a1 --- /dev/null +++ b/gnome-office/gnome-db/gnome-db-0.2.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/gnome-office/gnome-db/gnome-db-0.2.1.ebuild,v 1.1 2000/12/21 08:22:28 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Framework for creating database applications" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${A}" +HOMEPAGE="http://www.gnome.org/gnome-office/gnomedb.shtml" + +DEPEND=">=gnome-base/gtkhtml-0.7 + >=gnome-base/bonobo-0.28 + >=gnome-libs/libgda-0.2.0" + +src_compile() { + cd ${S} + + try ./configure --host=${CHOST} --prefix=/opt/gnome \ + --with-mysql=/usr --with-ldap=/usr + try make +} + +src_install() { + cd ${S} + try make prefix=${D}/opt/gnome \ + GNOME_sysconfdir=${D}/opt/gnome/etc \ + GNOME_datadir=${D}/opt/gnome/share \ + GNOMEDB_oafinfodir=${D}/opt/gnome/share/oaf \ + install + dodoc AUTHORS COPYING ChangeLog README +} + + + |