diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-17 12:55:40 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-17 12:55:40 +0000 |
commit | 6a28f81e7802dcd1b7403953f0b8b79df3e19153 (patch) | |
tree | ebc315abaa3096fc7706954f072a46c78597c8ad /x11-libs/libsexy | |
parent | Version bump by Polynomial-C, bug #305329 (diff) | |
download | gentoo-2-6a28f81e7802dcd1b7403953f0b8b79df3e19153.tar.gz gentoo-2-6a28f81e7802dcd1b7403953f0b8b79df3e19153.tar.bz2 gentoo-2-6a28f81e7802dcd1b7403953f0b8b79df3e19153.zip |
Fix license from LGPL-2 to LGPL-2.1. Don't build tests without make check wrt #226253. Fix HTML installation directory. Stop using gnome2.eclass.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/libsexy')
-rw-r--r-- | x11-libs/libsexy/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/libsexy/libsexy-0.1.11-r1.ebuild | 47 |
2 files changed, 37 insertions, 17 deletions
diff --git a/x11-libs/libsexy/ChangeLog b/x11-libs/libsexy/ChangeLog index ad651a6193ec..29d94a3a28da 100644 --- a/x11-libs/libsexy/ChangeLog +++ b/x11-libs/libsexy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/libsexy # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsexy/ChangeLog,v 1.40 2010/01/15 21:40:57 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsexy/ChangeLog,v 1.41 2010/02/17 12:55:40 ssuominen Exp $ + + 17 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> + libsexy-0.1.11-r1.ebuild: + Fix license from LGPL-2 to LGPL-2.1. Don't build tests without make check + wrt #226253. Fix HTML installation directory. Stop using gnome2.eclass. 15 Jan 2010; Christian Faulhammer <fauli@gentoo.org> libsexy-0.1.11-r1.ebuild: diff --git a/x11-libs/libsexy/libsexy-0.1.11-r1.ebuild b/x11-libs/libsexy/libsexy-0.1.11-r1.ebuild index d64a2136f83c..1d270f6b2daf 100644 --- a/x11-libs/libsexy/libsexy-0.1.11-r1.ebuild +++ b/x11-libs/libsexy/libsexy-0.1.11-r1.ebuild @@ -1,33 +1,48 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsexy/libsexy-0.1.11-r1.ebuild,v 1.3 2010/01/15 21:40:57 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsexy/libsexy-0.1.11-r1.ebuild,v 1.4 2010/02/17 12:55:40 ssuominen Exp $ -EAPI="2" - -inherit gnome2 eutils +EAPI=2 +inherit autotools eutils DESCRIPTION="Sexy GTK+ Widgets" HOMEPAGE="http://www.chipx86.com/wiki/Libsexy" SRC_URI="http://releases.chipx86.com/${PN}/${PN}/${P}.tar.bz2" -LICENSE="LGPL-2" +LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" IUSE="doc" -RDEPEND=">=dev-libs/glib-2.6 - >=x11-libs/gtk+-2.6 - dev-libs/libxml2 - >=x11-libs/pango-1.4.0 - >=app-text/iso-codes-0.49" +RDEPEND=">=dev-libs/glib-2.6:2 + >=x11-libs/gtk+-2.6:2 + dev-libs/libxml2 + >=x11-libs/pango-1.4.0 + >=app-text/iso-codes-0.49" DEPEND="${RDEPEND} - >=dev-lang/perl-5 - >=dev-util/pkgconfig-0.19 - doc? ( >=dev-util/gtk-doc-1.4 )" - -DOCS="AUTHORS ChangeLog NEWS README" + >=dev-lang/perl-5 + >=dev-util/pkgconfig-0.19 + dev-util/gtk-doc-am + doc? ( >=dev-util/gtk-doc-1.4 )" src_prepare() { epatch "${FILESDIR}"/${P}-fix-null-list.patch - gnome2_src_prepare + + sed -i \ + -e 's:noinst_PROGRAMS:check_PROGRAMS:' \ + tests/Makefile.am || die + + eautoreconf +} + +src_configure() { + econf \ + --disable-dependency-tracking \ + $(use_enable doc gtk-doc) \ + --with-html-dir=/usr/share/doc/${PF} +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS } |