summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2003-05-22 14:00:28 +0000
committerMarinus Schraal <foser@gentoo.org>2003-05-22 14:00:28 +0000
commit62d5c05debe8a298237551eaf160ea5b3107071d (patch)
tree6062757b5a34493b13b39e5fb5820725a644e476 /x11-libs/gtkmm/gtkmm-1.2.9-r1.ebuild
parentnew version, mark 2.0.5 x86 (diff)
downloadhistorical-62d5c05debe8a298237551eaf160ea5b3107071d.tar.gz
historical-62d5c05debe8a298237551eaf160ea5b3107071d.tar.bz2
historical-62d5c05debe8a298237551eaf160ea5b3107071d.zip
new version, mark 2.2.1 x86
Diffstat (limited to 'x11-libs/gtkmm/gtkmm-1.2.9-r1.ebuild')
-rw-r--r--x11-libs/gtkmm/gtkmm-1.2.9-r1.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/x11-libs/gtkmm/gtkmm-1.2.9-r1.ebuild b/x11-libs/gtkmm/gtkmm-1.2.9-r1.ebuild
deleted file mode 100644
index 71dd22727172..000000000000
--- a/x11-libs/gtkmm/gtkmm-1.2.9-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmm/gtkmm-1.2.9-r1.ebuild,v 1.11 2003/02/13 16:57:44 vapier Exp $
-
-DESCRIPTION="C++ interface for GTK+"
-SRC_URI="http://download.sourceforge.net/gtkmm/${P}.tar.gz"
-# ftp://ftp.gnome.org/pub/GNOME/stable/sources/gtk+/${P}.tar.gz
-# http://ftp.gnome.org/pub/GNOME/stable/sources/gtk+/${P}.tar.gz"
-HOMEPAGE="http://gtkmm.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="1.2"
-KEYWORDS="x86 ppc sparc "
-
-DEPEND="virtual/glibc
- =x11-libs/gtk+-1.2*
- >=dev-libs/libsigc++-1.0.4"
-
-src_unpack() {
- unpack ${A}
-
- # this patch applies only to gtkmm-1.2.9. gtkmm has been fixed
- # in CVS. It fixes a build problem with gcc3.1.
- # (http://marc.theaimsgroup.com/?l=gtkmm&m=101879848701486&w=2)
- patch -p0 <${FILESDIR}/gtkmm-1.2.9-gcc3.1-gentoo.patch
-}
-
-src_compile() {
- local myconf
-
- if [ "${DEBUGBUILD}" ] ; then
- myconf="--enable-debug=yes"
- else
- myconf="--enable-debug=no"
- fi
-
- econf --with-xinput=xfree \
- --with-x \
- ${myconf} || die
-
- make || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc AUTHORS COPYING ChangeLog* HACKING NEWS* README* TODO
-}