diff options
author | Serkan Kaba <serkan@gentoo.org> | 2010-02-13 16:07:44 +0000 |
---|---|---|
committer | Serkan Kaba <serkan@gentoo.org> | 2010-02-13 16:07:44 +0000 |
commit | 664871aaa981ba05ffd14b7ce91113e44a435b79 (patch) | |
tree | a704f01a27d582bfb5b112f75b0350a213349110 /x11-libs/gtkhotkey | |
parent | alpha/ia64/sparc stable wrt #302629 (diff) | |
download | gentoo-2-664871aaa981ba05ffd14b7ce91113e44a435b79.tar.gz gentoo-2-664871aaa981ba05ffd14b7ce91113e44a435b79.tar.bz2 gentoo-2-664871aaa981ba05ffd14b7ce91113e44a435b79.zip |
Version bump.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/gtkhotkey')
-rw-r--r-- | x11-libs/gtkhotkey/ChangeLog | 9 | ||||
-rw-r--r-- | x11-libs/gtkhotkey/gtkhotkey-0.2.1.ebuild | 42 |
2 files changed, 49 insertions, 2 deletions
diff --git a/x11-libs/gtkhotkey/ChangeLog b/x11-libs/gtkhotkey/ChangeLog index 5ce2663ba43f..51a6582223df 100644 --- a/x11-libs/gtkhotkey/ChangeLog +++ b/x11-libs/gtkhotkey/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/gtkhotkey -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkhotkey/ChangeLog,v 1.8 2009/04/20 20:30:04 maekke Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkhotkey/ChangeLog,v 1.9 2010/02/13 16:07:44 serkan Exp $ + +*gtkhotkey-0.2.1 (13 Feb 2010) + + 13 Feb 2010; Serkan Kaba <serkan@gentoo.org> +gtkhotkey-0.2.1.ebuild: + Version bump. 20 Apr 2009; Markus Meier <maekke@gentoo.org> gtkhotkey-0.2.0: amd64 stable, bug #259052 diff --git a/x11-libs/gtkhotkey/gtkhotkey-0.2.1.ebuild b/x11-libs/gtkhotkey/gtkhotkey-0.2.1.ebuild new file mode 100644 index 000000000000..a4c92bc7104d --- /dev/null +++ b/x11-libs/gtkhotkey/gtkhotkey-0.2.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkhotkey/gtkhotkey-0.2.1.ebuild,v 1.1 2010/02/13 16:07:44 serkan Exp $ + +EAPI="2" + +inherit versionator + +MY_CRV=$(get_version_component_range 1-2) + +RESTRICT="test" +# Tests try to access live filesystem +# See http://bugs.gentoo.org/show_bug.cgi?id=259052#c3 + +DESCRIPTION="Cross platform library for using desktop wide hotkeys" +HOMEPAGE="http://launchpad.net/gtkhotkey" +SRC_URI="http://launchpad.net/${PN}/${MY_CRV}/${PV}/+download/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +COMMON_DEPEND=">=dev-libs/glib-2.16 + >=x11-libs/gtk+-2.12" + +RDEPEND="${COMMON_DEPEND} + virtual/libintl" + +DEPEND="${COMMON_DEPEND} + dev-util/pkgconfig + >=dev-util/intltool-0.35.0 + sys-devel/gettext" + +src_prepare() { + sed -i -e "s: install-gtkhotkeydocDATA ::" Makefile.in || die "Patching Makefile.in failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" +} |