diff options
author | Michael Weber <xmw@gentoo.org> | 2012-06-04 18:40:52 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2012-06-04 18:40:52 +0000 |
commit | dba0d0103f66e939b8e971c0979b62a8a51f7dea (patch) | |
tree | ed846cee51c7e64339777a1684c8002a407400d8 /x11-misc/xsri | |
parent | Marked ~{amd64,x86}-linux, bug #418129 (diff) | |
download | gentoo-2-dba0d0103f66e939b8e971c0979b62a8a51f7dea.tar.gz gentoo-2-dba0d0103f66e939b8e971c0979b62a8a51f7dea.tar.bz2 gentoo-2-dba0d0103f66e939b8e971c0979b62a8a51f7dea.zip |
Version bump (reported by df, bug 416419)
(Portage version: 2.1.10.63/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/xsri')
-rw-r--r-- | x11-misc/xsri/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xsri/xsri-2.1.0-r2.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/x11-misc/xsri/ChangeLog b/x11-misc/xsri/ChangeLog index 96227e76fbcc..267ba25ab575 100644 --- a/x11-misc/xsri/ChangeLog +++ b/x11-misc/xsri/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xsri # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsri/ChangeLog,v 1.14 2012/05/05 04:53:50 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsri/ChangeLog,v 1.15 2012/06/04 18:40:52 xmw Exp $ + +*xsri-2.1.0-r2 (04 Jun 2012) + + 04 Jun 2012; Michael Weber <xmw@gentoo.org> +xsri-2.1.0-r2.ebuild: + Version bump (reported by df, bug 416419) 05 May 2012; Jeff Horelick <jdhore@gentoo.org> xsri-2.1.0-r1.ebuild: dev-util/pkgconfig -> virtual/pkgconfig diff --git a/x11-misc/xsri/xsri-2.1.0-r2.ebuild b/x11-misc/xsri/xsri-2.1.0-r2.ebuild new file mode 100644 index 000000000000..7712966dbfdd --- /dev/null +++ b/x11-misc/xsri/xsri-2.1.0-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsri/xsri-2.1.0-r2.ebuild,v 1.1 2012/06/04 18:40:52 xmw Exp $ + +EAPI=4 +inherit autotools rpm + +DESCRIPTION="The xsri wallpaper setter from RedHat" +HOMEPAGE="http://fedoraproject.org" +SRC_URI="http://download.fedoraproject.org/pub/fedora/linux/releases/15/Everything/source/SRPMS/${P}-17.fc12.src.rpm" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="x11-libs/gtk+:2" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + sed -e '/-DG.*_DISABLE_DEPRECATED/d' \ + -i Makefile.am || die + sed -e 's/PKG_CHECK_MODULES(GTK,/& x11 /' \ + -i configure.in || die #367663 + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS README + doman ../${PN}.1 +} |