diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2011-04-19 21:55:07 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2011-04-19 21:55:07 +0000 |
commit | fa3807badfb17d171a68560ef315fb5ebab41496 (patch) | |
tree | 22df3d7375e8607409018f55ce4d52e2756dfd3e /dev-cpp | |
parent | Add a comment. (diff) | |
download | gentoo-2-fa3807badfb17d171a68560ef315fb5ebab41496.tar.gz gentoo-2-fa3807badfb17d171a68560ef315fb5ebab41496.tar.bz2 gentoo-2-fa3807badfb17d171a68560ef315fb5ebab41496.zip |
Drop slot 1.2, bug #355825.
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/gtkmm/ChangeLog | 5 | ||||
-rw-r--r-- | dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild | 52 |
2 files changed, 4 insertions, 53 deletions
diff --git a/dev-cpp/gtkmm/ChangeLog b/dev-cpp/gtkmm/ChangeLog index 571e8fb3b29b..1ddc662f34c0 100644 --- a/dev-cpp/gtkmm/ChangeLog +++ b/dev-cpp/gtkmm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-cpp/gtkmm # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/ChangeLog,v 1.200 2011/04/10 16:30:01 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/ChangeLog,v 1.201 2011/04/19 21:55:07 eva Exp $ + + 19 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> -gtkmm-1.2.9-r2.ebuild: + Drop slot 1.2, bug #355825. 10 Apr 2011; Samuli Suominen <ssuominen@gentoo.org> gtkmm-2.24.0.ebuild: Remove useless libtool files wrt #362879 by Cesko Voeten. diff --git a/dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild b/dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild deleted file mode 100644 index 3669f34a63f1..000000000000 --- a/dev-cpp/gtkmm/gtkmm-1.2.9-r2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# 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.17 2010/10/30 21:05:21 pacho Exp $ - -inherit eutils - -DESCRIPTION="C++ interface for GTK+" -HOMEPAGE="http://www.gtkmm.org" -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" - -LICENSE="GPL-2" -SLOT="1.2" -KEYWORDS="alpha amd64 arm hppa ia64 ppc sh sparc x86" -IUSE="debug" - -DEPEND="=x11-libs/gtk+-1.2* - =dev-libs/libsigc++-1.0*" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # 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) - epatch "${FILESDIR}"/gtkmm-1.2.9-gcc3.1-gentoo.patch - epatch "${FILESDIR}"/gtkmm-1.2.9-gcc3.4-gentoo.patch - epatch "${FILESDIR}"/gtkmm-1.2.9-gcc4.patch - epatch "${FILESDIR}/gtkmm-1.2.9-gcc4.3.patch" -} - -src_compile() { - local myconf - use debug \ - && myconf="--enable-debug=yes" \ - || myconf="--enable-debug=no" - econf \ - --sysconfdir=/etc/X11 \ - --with-xinput=xfree \ - --with-x \ - ${myconf} || die - - make || die -} - -src_install() { - make DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README TODO -} |