summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-04-11 13:59:06 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-04-11 13:59:06 +0000
commit5c0b342065dc65b3d4175fa135b30312108290ef (patch)
treeffd6b495dc662c6aed62e9a25dc74bc2967ef5a5 /gnome-base
parentSource tarball is now tar.gz (diff)
downloadhistorical-5c0b342065dc65b3d4175fa135b30312108290ef.tar.gz
historical-5c0b342065dc65b3d4175fa135b30312108290ef.tar.bz2
historical-5c0b342065dc65b3d4175fa135b30312108290ef.zip
removed older ebuilds
Diffstat (limited to 'gnome-base')
-rw-r--r--gnome-base/gconf/files/digest-gconf-1.0.81
-rw-r--r--gnome-base/gconf/files/digest-gconf-1.0.8-r11
-rw-r--r--gnome-base/gconf/gconf-1.0.8-r1.ebuild47
-rw-r--r--gnome-base/gconf/gconf-1.0.8.ebuild52
4 files changed, 0 insertions, 101 deletions
diff --git a/gnome-base/gconf/files/digest-gconf-1.0.8 b/gnome-base/gconf/files/digest-gconf-1.0.8
deleted file mode 100644
index 94b9f10e773b..000000000000
--- a/gnome-base/gconf/files/digest-gconf-1.0.8
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b0d662f3fa1dbab01796efe695577c74 GConf-1.0.8.tar.gz 1240140
diff --git a/gnome-base/gconf/files/digest-gconf-1.0.8-r1 b/gnome-base/gconf/files/digest-gconf-1.0.8-r1
deleted file mode 100644
index 94b9f10e773b..000000000000
--- a/gnome-base/gconf/files/digest-gconf-1.0.8-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b0d662f3fa1dbab01796efe695577c74 GConf-1.0.8.tar.gz 1240140
diff --git a/gnome-base/gconf/gconf-1.0.8-r1.ebuild b/gnome-base/gconf/gconf-1.0.8-r1.ebuild
deleted file mode 100644
index 79248e311761..000000000000
--- a/gnome-base/gconf/gconf-1.0.8-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# 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.0.8-r1.ebuild,v 1.2 2002/02/25 00:50:27 drobbins Exp $
-
-S=${WORKDIR}/GConf-${PV}
-DESCRIPTION="Gconf"
-SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/GConf/GConf-${PV}.tar.gz"
-HOMEPAGE="http://www.gnome.org/"
-RDEPEND=">=sys-libs/db-3.2.3h >=gnome-base/oaf-0.6.6-r1"
-DEPEND="${RDEPEND} nls? ( sys-devel/gettext ) >=dev-util/guile-1.4"
-
-src_compile() {
- local myconf
- if [ -z "`use nls`" ]
- then
- myconf="--disable-nls"
- mkdir intl
- touch intl/libgettext.h
- fi
-
- ./configure --host=${CHOST} \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var/lib \
- ${myconf} || die
-
- make || die # Doesn't work with -j 4 (hallski)
-}
-
-src_install() {
- make prefix=${D}/usr \
- sysconfdir=${D}/etc \
- localstatedir=${D}/var/lib \
- install || die
- # gconf 1.0.8 seems to gets the perms wrong on this dir.
- chmod 0755 ${D}/etc/gconf/gconf.xml.mandatory
- # this fix closes bug #803
- dodoc AUTHORS COPYING ChangeLog NEWS README* TODO
-}
-
-pkg_postinst() {
- # this is to fix installations where the following dir
- # has already been merged with incorrect permissions.
- # We can remove this fix after gconf 1.0.8 is an ancient
- # version.
- chmod 0755 ${ROOT}/etc/gconf/gconf.xml.mandatory
-}
diff --git a/gnome-base/gconf/gconf-1.0.8.ebuild b/gnome-base/gconf/gconf-1.0.8.ebuild
deleted file mode 100644
index 760f250c90df..000000000000
--- a/gnome-base/gconf/gconf-1.0.8.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# 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-base/gconf/gconf-1.0.8.ebuild,v 1.3 2002/02/24 18:23:34 azarah Exp $
-
-P=GConf-${PV}
-S=${WORKDIR}/${P}
-DESCRIPTION="Gconf"
-SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/GConf/${P}.tar.gz"
-
-HOMEPAGE="http://www.gnome.org/"
-
-RDEPEND=">=sys-libs/db-3.2.3h
- >=gnome-base/oaf-0.6.6-r1"
-
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )
- >=dev-util/guile-1.4"
-
-
-#src_unpack() {
-# unpack ${A}
-# patch -p0 < ${FILESDIR}/gconf-${PV}-gentoo.diff
-#}
-
-src_compile() {
- local myconf
-
- if [ -z "`use nls`" ]
- then
- myconf="--disable-nls"
- mkdir intl
- touch intl/libgettext.h
- fi
-
- ./configure --host=${CHOST} \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var/lib \
- ${myconf} || die
-
- make || die # Doesn't work with -j 4 (hallski)
-}
-
-src_install() {
- make prefix=${D}/usr \
- sysconfdir=${D}/etc \
- localstatedir=${D}/var/lib \
- install || die
-
- dodoc AUTHORS COPYING ChangeLog NEWS README* TODO
-}