diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-03-15 22:57:11 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-03-15 22:57:11 +0000 |
commit | 3065fb106c2b11a1f7d7b3884bba890f860336a6 (patch) | |
tree | b6dae4a910c2eb59bac5f25901cb11a2684eaca6 /gnome-extra/libgnomedb | |
parent | Initial import of OSKit, submitted in bug 17218 (diff) | |
download | gentoo-2-3065fb106c2b11a1f7d7b3884bba890f860336a6.tar.gz gentoo-2-3065fb106c2b11a1f7d7b3884bba890f860336a6.tar.bz2 gentoo-2-3065fb106c2b11a1f7d7b3884bba890f860336a6.zip |
version bump
Diffstat (limited to 'gnome-extra/libgnomedb')
-rw-r--r-- | gnome-extra/libgnomedb/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-extra/libgnomedb/files/digest-libgnomedb-0.11.0 | 1 | ||||
-rw-r--r-- | gnome-extra/libgnomedb/libgnomedb-0.11.0.ebuild | 39 |
3 files changed, 46 insertions, 1 deletions
diff --git a/gnome-extra/libgnomedb/ChangeLog b/gnome-extra/libgnomedb/ChangeLog index 886d8ad76ae3..cb4f83c032db 100644 --- a/gnome-extra/libgnomedb/ChangeLog +++ b/gnome-extra/libgnomedb/ChangeLog @@ -1,6 +1,11 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgnomedb/ChangeLog,v 1.2 2003/03/15 22:54:36 liquidx Exp $ + +*libgnomedb-0.11.0 (15 Mar 2003) + + 15 Mar 2003; Alastair Tse <liquidx@gentoo.org> libgnomedb-0.11.0.ebuild: + version bump *libgnomedb-0.10.0 (10 Mar 2003) diff --git a/gnome-extra/libgnomedb/files/digest-libgnomedb-0.11.0 b/gnome-extra/libgnomedb/files/digest-libgnomedb-0.11.0 new file mode 100644 index 000000000000..f25a108ecf25 --- /dev/null +++ b/gnome-extra/libgnomedb/files/digest-libgnomedb-0.11.0 @@ -0,0 +1 @@ +MD5 efb8f768da6cb6e8117487c3c9d9523c libgnomedb-0.11.0.tar.bz2 461115 diff --git a/gnome-extra/libgnomedb/libgnomedb-0.11.0.ebuild b/gnome-extra/libgnomedb/libgnomedb-0.11.0.ebuild new file mode 100644 index 000000000000..0fbef16ff190 --- /dev/null +++ b/gnome-extra/libgnomedb/libgnomedb-0.11.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.11.0.ebuild,v 1.1 2003/03/15 22:54:36 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 +} |