diff options
author | 2011-02-02 19:00:19 +0000 | |
---|---|---|
committer | 2011-02-02 19:00:19 +0000 | |
commit | f5a704c610e8b14e124010563da3fa1492b4fd28 (patch) | |
tree | 02ef0a934fd33621e2b59299125c1be6005eba94 /x11-libs/gtk+extra/gtk+extra-2.1.2-r1.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-f5a704c610e8b14e124010563da3fa1492b4fd28.tar.gz gentoo-2-f5a704c610e8b14e124010563da3fa1492b4fd28.tar.bz2 gentoo-2-f5a704c610e8b14e124010563da3fa1492b4fd28.zip |
Fix crashes with dev-embedded/gpsim (bug #353489 by Robert Pearce).
(Portage version: 2.1.9.35/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/gtk+extra/gtk+extra-2.1.2-r1.ebuild')
-rw-r--r-- | x11-libs/gtk+extra/gtk+extra-2.1.2-r1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/x11-libs/gtk+extra/gtk+extra-2.1.2-r1.ebuild b/x11-libs/gtk+extra/gtk+extra-2.1.2-r1.ebuild new file mode 100644 index 000000000000..397ae92f58b9 --- /dev/null +++ b/x11-libs/gtk+extra/gtk+extra-2.1.2-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+extra/gtk+extra-2.1.2-r1.ebuild,v 1.1 2011/02/02 19:00:19 pacho Exp $ + +EAPI="3" + +inherit autotools eutils + +DESCRIPTION="Useful Additional GTK+ widgets" +HOMEPAGE="http://gtkextra.sourceforge.net" +SRC_URI="mirror://sourceforge/gtkextra/${P}.tar.gz" + +LICENSE="FDL-1.1 LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="static-libs" + +RDEPEND="x11-libs/gtk+:2 + dev-libs/glib:2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_prepare() { + epatch "${FILESDIR}"/${P}-build.patch \ + "${FILESDIR}"/${P}-marshal.patch \ + "${FILESDIR}"/${P}-gtk+-2.21.patch \ + "${FILESDIR}"/${P}-itementry-crash.patch + eautoreconf +} + +src_configure() { + econf \ + --disable-dependency-tracking \ + $(use_enable static-libs static) \ + --with-html-dir=/usr/share/doc/${PF}/html +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog README || die + find "${ED}" -name '*.la' -exec rm -f '{}' + || die +} |