summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Hallendal <hallski@gentoo.org>2001-11-10 13:47:46 +0000
committerMikael Hallendal <hallski@gentoo.org>2001-11-10 13:47:46 +0000
commit978ab6a528c09453d70aa704a5479e0c3490c179 (patch)
tree83d8cb153b4dce99ef61ec9f84d4d763bbfa5ae5 /gnome-base/oaf
parentremoved old version (diff)
downloadgentoo-2-978ab6a528c09453d70aa704a5479e0c3490c179.tar.gz
gentoo-2-978ab6a528c09453d70aa704a5479e0c3490c179.tar.bz2
gentoo-2-978ab6a528c09453d70aa704a5479e0c3490c179.zip
cleaned up old versions
Diffstat (limited to 'gnome-base/oaf')
-rw-r--r--gnome-base/oaf/files/digest-oaf-0.6.6-r11
-rw-r--r--gnome-base/oaf/oaf-0.6.6-r1.ebuild57
2 files changed, 0 insertions, 58 deletions
diff --git a/gnome-base/oaf/files/digest-oaf-0.6.6-r1 b/gnome-base/oaf/files/digest-oaf-0.6.6-r1
deleted file mode 100644
index 71dc0ae44e5a..000000000000
--- a/gnome-base/oaf/files/digest-oaf-0.6.6-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 ae0150ee506d8b9a9f7b7edd7e1b87f4 oaf-0.6.6.tar.gz 499712
diff --git a/gnome-base/oaf/oaf-0.6.6-r1.ebuild b/gnome-base/oaf/oaf-0.6.6-r1.ebuild
deleted file mode 100644
index 7a3269b88ba6..000000000000
--- a/gnome-base/oaf/oaf-0.6.6-r1.ebuild
+++ /dev/null
@@ -1,57 +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/oaf/oaf-0.6.6-r1.ebuild,v 1.2 2001/10/07 22:15:58 hallski Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Object Activation Framework for GNOME"
-SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz"
-
-RDEPEND="virtual/glibc
- >=dev-libs/popt-1.5
- >=gnome-base/ORBit-0.5.10-r1
- >=dev-libs/libxml-1.8.15"
-
-DEPEND="${RDEPEND}
- >=sys-devel/perl-5
- nls? ( sys-devel/gettext )"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- cp -a configure configure.orig
- sed -e "s:perl5\.00404:perl5.6.1:" configure.orig > configure
- rm configure.orig
-}
-
-src_compile() {
- local myconf
-
- if [ -z "`use nls`" ]
- then
- myconf="--disable-nls"
- fi
-
- ./configure --host=${CHOST} \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var/lib \
- ${myconf} || die
-
- emake || die
-}
-
-src_install() {
- make prefix=${D}/usr \
- sysconfdir=${D}/etc \
- localstatedir=${D}/var/lib \
- install || die
-
- dodoc AUTHORS COPYING* ChangeLog README
- dodoc NEWS TODO
-}
-
-pkg_postinst() {
- ldconfig -r ${ROOT}
-}