summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriele Giorgetti <stroke@gentoo.org>2002-08-04 09:03:35 +0000
committerGabriele Giorgetti <stroke@gentoo.org>2002-08-04 09:03:35 +0000
commit5b28ab937726c894706d57bcb7ce4ba351f7327e (patch)
tree617669092208d86d2ad3ef8c09f4f666b5d92eaa
parentRemoved stale ebuilds. (diff)
downloadhistorical-5b28ab937726c894706d57bcb7ce4ba351f7327e.tar.gz
historical-5b28ab937726c894706d57bcb7ce4ba351f7327e.tar.bz2
historical-5b28ab937726c894706d57bcb7ce4ba351f7327e.zip
Removed stale ebuilds
-rw-r--r--dev-libs/glib/files/digest-glib-2.0.61
-rw-r--r--dev-libs/glib/glib-2.0.6.ebuild60
2 files changed, 0 insertions, 61 deletions
diff --git a/dev-libs/glib/files/digest-glib-2.0.6 b/dev-libs/glib/files/digest-glib-2.0.6
deleted file mode 100644
index c9112089bbed..000000000000
--- a/dev-libs/glib/files/digest-glib-2.0.6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 79e9dc83219e6ad4f95f3ffce5635203 glib-2.0.6.tar.bz2 1482363
diff --git a/dev-libs/glib/glib-2.0.6.ebuild b/dev-libs/glib/glib-2.0.6.ebuild
deleted file mode 100644
index 0fba21e79770..000000000000
--- a/dev-libs/glib/glib-2.0.6.ebuild
+++ /dev/null
@@ -1,60 +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/dev-libs/glib/glib-2.0.6.ebuild,v 1.1 2002/08/03 22:28:39 stroke Exp $
-
-inherit debug
-inherit libtool
-
-
-S=${WORKDIR}/${P}
-DESCRIPTION="The GLib library of C routines"
-SRC_URI="ftp://ftp.gtk.org/pub/gtk/v2.0/${P}.tar.bz2"
-HOMEPAGE="http://www.gtk.org/"
-LICENSE="LGPL-2.1"
-KEYWORDS="x86 ppc"
-SLOT="2"
-
-DEPEND="virtual/glibc
- >=dev-util/pkgconfig-0.12.0
- doc? ( >=dev-util/gtk-doc-0.9-r2 )"
-
-
-# libiconv breaks other stuff
-
-RDEPEND="virtual/glibc"
-
-src_compile() {
- # Seems libtool have another wierd bug, try to fix it
- # with a fix for nautilus, bug #4190
- elibtoolize --reverse-deps
-
- local myconf=""
- use doc && myconf="${myconf} --enable-gtk-doc"
- use doc || myconf="${myconf} --disable-gtk-doc"
- ./configure --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- --with-threads=posix \
- ${myconf} \
- --enable-debug=yes || die
-
-# you cannot disable debug or this will fail building.
-# odd but true :/
-
- emake || die
-}
-
-src_install() {
- make prefix=${D}/usr \
- infodir=${D}/usr/share/info \
- mandir=${D}/usr/share/man \
- install || die
-
- dodoc AUTHORS ChangeLog COPYING README* INSTALL NEWS NEWS.pre-1-3 TODO.xml
-}
-
-
-
-
-