summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-06-09 00:48:47 +0000
committerAchim Gottinger <achim@gentoo.org>2001-06-09 00:48:47 +0000
commitb61f51858b05b5533c43475881e2cdcd669e5ebd (patch)
tree59813a0144b7a286ed7b832b8125df4598193b26 /dev-util/glade
parent*** empty log message *** (diff)
downloadgentoo-2-b61f51858b05b5533c43475881e2cdcd669e5ebd.tar.gz
gentoo-2-b61f51858b05b5533c43475881e2cdcd669e5ebd.tar.bz2
gentoo-2-b61f51858b05b5533c43475881e2cdcd669e5ebd.zip
Some cleanup
Diffstat (limited to 'dev-util/glade')
-rw-r--r--dev-util/glade/files/digest-glade-0.5.111
-rw-r--r--dev-util/glade/glade-0.5.11.ebuild47
2 files changed, 0 insertions, 48 deletions
diff --git a/dev-util/glade/files/digest-glade-0.5.11 b/dev-util/glade/files/digest-glade-0.5.11
deleted file mode 100644
index 208369bba8ef..000000000000
--- a/dev-util/glade/files/digest-glade-0.5.11
+++ /dev/null
@@ -1 +0,0 @@
-MD5 23d063133cbbfd331e3ee0f694efa610 glade-0.5.11.tar.gz
diff --git a/dev-util/glade/glade-0.5.11.ebuild b/dev-util/glade/glade-0.5.11.ebuild
deleted file mode 100644
index f85498cd9134..000000000000
--- a/dev-util/glade/glade-0.5.11.ebuild
+++ /dev/null
@@ -1,47 +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/dev-util/glade/glade-0.5.11.ebuild,v 1.1 2000/11/25 13:03:13 achim Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="glade"
-SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/glade/"${A}
-HOMEPAGE="http://www.gnome.org/"
-
-DEPEND=">=x11-libs/gtk+-1.2.8
- gnome? ( >=gnome-base/gnome-libs-1.2.8
- >=gnome-office/gnome-db-0.2.0 )"
-
-src_compile() {
- cd ${S}
- local myopts
- if [ -n "`use gnome`" ]
- then
- echo "Using Gnome"
- myopts="--prefix=/opt/gnome --without-bonobo"
- else
- myopts="--prefix=/usr/X11R6 --disable-gnome"
- fi
- try ./configure --host=${CHOST} ${myopts}
- # bonobo support does not work with 0.28 requires around 0.18
- try make
-}
-
-src_install() {
- cd ${S}
- local myopts
- if [ -n "`use gnome`" ]
- then
- try make prefix=${D}/opt/gnome install
- else
- try make prefix=${D}/usr/X11R6 install
- fi
- dodoc AUTHORS COPYING* FAQ NEWS
- dodoc README* TODO
-}
-
-
-
-
-