diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-03-10 00:08:23 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-03-10 00:08:23 +0000 |
commit | 24fb03b317b526cc364c5e2ccf9a76311c76f11b (patch) | |
tree | b024472dc572a3981acde7dcb1598c2b41b4ac40 /gnome-extra | |
parent | version bump. part of the mergeant package. (diff) | |
download | gentoo-2-24fb03b317b526cc364c5e2ccf9a76311c76f11b.tar.gz gentoo-2-24fb03b317b526cc364c5e2ccf9a76311c76f11b.tar.bz2 gentoo-2-24fb03b317b526cc364c5e2ccf9a76311c76f11b.zip |
initial ebuild. part of gnome-db and mergeant.
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/libgnomedb/ChangeLog | 9 | ||||
-rw-r--r-- | gnome-extra/libgnomedb/files/digest-libgnomedb-0.10.0 | 1 | ||||
-rw-r--r-- | gnome-extra/libgnomedb/libgnomedb-0.10.0.ebuild | 39 |
3 files changed, 49 insertions, 0 deletions
diff --git a/gnome-extra/libgnomedb/ChangeLog b/gnome-extra/libgnomedb/ChangeLog new file mode 100644 index 000000000000..886d8ad76ae3 --- /dev/null +++ b/gnome-extra/libgnomedb/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for gnome-extra/libgnomedb +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgnomedb/ChangeLog,v 1.1 2003/03/10 00:08:22 liquidx Exp $ + +*libgnomedb-0.10.0 (10 Mar 2003) + + 10 Mar 2003; Alastair Tse <liquidx@gentoo.org> libgnomedb-0.10.0.ebuild: + initial ebuild. resolves #9683 and #16970. + diff --git a/gnome-extra/libgnomedb/files/digest-libgnomedb-0.10.0 b/gnome-extra/libgnomedb/files/digest-libgnomedb-0.10.0 new file mode 100644 index 000000000000..048b84707d66 --- /dev/null +++ b/gnome-extra/libgnomedb/files/digest-libgnomedb-0.10.0 @@ -0,0 +1 @@ +MD5 edbc2fdc604694f8bd43b479f8805b91 libgnomedb-0.10.0.tar.bz2 450273 diff --git a/gnome-extra/libgnomedb/libgnomedb-0.10.0.ebuild b/gnome-extra/libgnomedb/libgnomedb-0.10.0.ebuild new file mode 100644 index 000000000000..0f4c41f6983f --- /dev/null +++ b/gnome-extra/libgnomedb/libgnomedb-0.10.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgnomedb/libgnomedb-0.10.0.ebuild,v 1.1 2003/03/10 00:08:23 liquidx Exp $ + +IUSE="" + +inherit gnome2 gnome.org + +S=${WORKDIR}/${P} +DESCRIPTION="Library for writing gnome database programs" +HOMEPAGE="http://www.gnome-db.org/" +SLOT="0" +LICENSE="GPL-2 LGPL-2" +KEYWORDS="~x86" + +RDEPEND=">=gnome-extra/libgda-0.10.0 + >=x11-libs/gtk+-2.0.6 + >=gnome-base/libglade-2.0.0 + >=gnome-base/libgnomeui-2.0.0 + >=gnome-base/bonobo-activation-2.0 + >=gnome-base/libbonoboui-2.0.0" + +DEPEND=">=dev-util/pkgconfig-0.8 + >=dev-util/intltool-0.22 + >=sys-devel/gettext-0.11 + >=app-text/scrollkeeper-0.3.11 + ${RDEPEND}" + +src_install() { + gnome2_src_install + + # minor cosmetic fix to capplet icon + capplet_link=${D}/usr/share/control-center-2.0/capplets/database-properties.desktop + if [ -f "${capplet_link}" ]; then + mv ${capplet_link} ${capplet_link}.orig && \ + sed 's,Icon=gnome-db.png,Icon=libgnomedb/gnome-db.png,' ${capplet_link}.orig > ${capplet_link} + rm ${capplet_link}.orig + fi +} |