summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-08-01 20:49:12 +0000
committerMike Frysinger <vapier@gentoo.org>2003-08-01 20:49:12 +0000
commitd1e4f2a42e204d4ae3dfb23c57b4c51eba2417d6 (patch)
tree4b27412746e529cf11da9254894bfcfc72032a28 /dev-cpp
parentsnapshot update, marked previous version stable (diff)
downloadgentoo-2-d1e4f2a42e204d4ae3dfb23c57b4c51eba2417d6.tar.gz
gentoo-2-d1e4f2a42e204d4ae3dfb23c57b4c51eba2417d6.tar.bz2
gentoo-2-d1e4f2a42e204d4ae3dfb23c57b4c51eba2417d6.zip
touchups
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild20
1 files changed, 6 insertions, 14 deletions
diff --git a/dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild b/dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild
index e246575d7317..01d5880fd168 100644
--- a/dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild
+++ b/dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild
@@ -1,17 +1,17 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild,v 1.2 2003/07/22 22:10:15 gmsoft Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild,v 1.3 2003/08/01 20:49:12 vapier Exp $
-S=${WORKDIR}/${P}
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/"
-SLOT="1.2"
LICENSE="GPL-2"
+SLOT="1.2"
KEYWORDS="x86 ppc sparc hppa"
+IUSE="debug"
DEPEND="=x11-libs/gtk+-1.2*
=dev-libs/libsigc++-1.0*"
@@ -26,16 +26,10 @@ src_unpack() {
}
src_compile() {
-
local myconf
-
- if [ "${DEBUG}" ]
- then
- myconf="--enable-debug=yes"
- else
- myconf="--enable-debug=no"
- fi
-
+ [ `use debug` ] \
+ && myconf="--enable-debug=yes" \
+ || myconf="--enable-debug=no"
econf \
--sysconfdir=/etc/X11 \
--with-xinput=xfree \
@@ -46,8 +40,6 @@ src_compile() {
}
src_install() {
-
make DESTDIR=${D} install || die
-
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
}