diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-06-11 23:52:07 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-06-11 23:52:07 +0000 |
commit | c6f68f45c2df69256c57606138076ded8b84cdb5 (patch) | |
tree | 42b2996976ddfd19d83a161927f69a9c4c67929a /gnome-base/gconf | |
parent | remove some stale versions, add a new stable bump (diff) | |
download | gentoo-2-c6f68f45c2df69256c57606138076ded8b84cdb5.tar.gz gentoo-2-c6f68f45c2df69256c57606138076ded8b84cdb5.tar.bz2 gentoo-2-c6f68f45c2df69256c57606138076ded8b84cdb5.zip |
adding another directory creation hack
Diffstat (limited to 'gnome-base/gconf')
-rw-r--r-- | gnome-base/gconf/ChangeLog | 6 | ||||
-rw-r--r-- | gnome-base/gconf/files/digest-gconf-1.1.11-r3 | 1 | ||||
-rw-r--r-- | gnome-base/gconf/gconf-1.1.11-r3.ebuild | 35 |
3 files changed, 40 insertions, 2 deletions
diff --git a/gnome-base/gconf/ChangeLog b/gnome-base/gconf/ChangeLog index 582a9521951b..e902603369ef 100644 --- a/gnome-base/gconf/ChangeLog +++ b/gnome-base/gconf/ChangeLog @@ -1,8 +1,10 @@ # ChangeLog for gnome-base/gconf # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/ChangeLog,v 1.11 2002/06/10 20:57:52 spider Exp $ - +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/ChangeLog,v 1.12 2002/06/11 23:52:07 spider Exp $ +*gconf-1.1.11-r3 (11 Jun 2002) + 11 Jun 2002; Spider <spider@gentoo.org> gconf-1.1.11-r3.ebuild: + hack around a directory fcreation thing x2 *gconf-1.1.11-r2 (10 Jun 2002) 10 Jun 2002; Spider <spider@gentoo.org> gconf-1.1.11-r2.ebuild: diff --git a/gnome-base/gconf/files/digest-gconf-1.1.11-r3 b/gnome-base/gconf/files/digest-gconf-1.1.11-r3 new file mode 100644 index 000000000000..566b1bd9b6b3 --- /dev/null +++ b/gnome-base/gconf/files/digest-gconf-1.1.11-r3 @@ -0,0 +1 @@ +MD5 c1107d92e7e3b0837af49b7273897c74 GConf-1.1.11.tar.bz2 921907 diff --git a/gnome-base/gconf/gconf-1.1.11-r3.ebuild b/gnome-base/gconf/gconf-1.1.11-r3.ebuild new file mode 100644 index 000000000000..c920ff9302d6 --- /dev/null +++ b/gnome-base/gconf/gconf-1.1.11-r3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.1.11-r3.ebuild,v 1.1 2002/06/11 23:52:07 spider Exp $ + +inherit gnome2 + +MY_PN=GConf +S=${WORKDIR}/${MY_PN}-${PV} +DESCRIPTION="Gnome Configuration System and Daemon" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/${MY_PN}/${MY_PN}-${PV}.tar.bz2 ftp://archive.progeny.com/GNOME/pre-gnome2/sources/${MY_PN}/${MY_PN}-${PV}.tar.bz2" +HOMEPAGE="http://www.gnome.org/" + +SLOT="2" + +RDEPEND=">=dev-libs/glib-2.0.1 + >=gnome-base/ORBit2-2.3.106 + >=dev-libs/libxml2-2.4.17 + >=net-libs/linc-0.1.19" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.12.0" + +LIBTOOL_FIX="1" + +pkg_preinst () { + # hack hack + dodir /etc/gconf/gconf.xml.mandatory + dodir /etc/gconf/gconf.xml.defaults + touch ${D}/etc/gconf/gconf.xml.mandatory/.keep + touch ${D}/etc/gconf/gconf.xml.defaults/.keep + +} +DOCS="ABOUT-NLS AUTHORS ChangeLog COPYING README* INSTALL NEWS TODO" + + |