diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-05-06 15:12:46 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-05-06 15:12:46 +0000 |
commit | 215390b6222d7795507c2e15510b68d0cddb6965 (patch) | |
tree | 615aff9dabca3240c8f5c1a1d2754b57f4279b7f /x11-misc/xnee | |
parent | Upstream left an outdated SMBIOS version check in place but have neglected to... (diff) | |
download | gentoo-2-215390b6222d7795507c2e15510b68d0cddb6965.tar.gz gentoo-2-215390b6222d7795507c2e15510b68d0cddb6965.tar.bz2 gentoo-2-215390b6222d7795507c2e15510b68d0cddb6965.zip |
Version bump.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-misc/xnee')
-rw-r--r-- | x11-misc/xnee/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xnee/xnee-3.19.ebuild | 74 |
2 files changed, 80 insertions, 1 deletions
diff --git a/x11-misc/xnee/ChangeLog b/x11-misc/xnee/ChangeLog index 90181ab9b88e..22c2a1fcfc83 100644 --- a/x11-misc/xnee/ChangeLog +++ b/x11-misc/xnee/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xnee # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.32 2014/02/26 22:26:36 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.33 2014/05/06 15:12:46 jer Exp $ + +*xnee-3.19 (06 May 2014) + + 06 May 2014; Jeroen Roovers <jer@gentoo.org> +xnee-3.19.ebuild: + Version bump. 26 Feb 2014; Jeroen Roovers <jer@gentoo.org> -xnee-3.16.ebuild: Old. diff --git a/x11-misc/xnee/xnee-3.19.ebuild b/x11-misc/xnee/xnee-3.19.ebuild new file mode 100644 index 000000000000..79d4a49091f2 --- /dev/null +++ b/x11-misc/xnee/xnee-3.19.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.19.ebuild,v 1.1 2014/05/06 15:12:46 jer Exp $ + +EAPI=5 +inherit autotools eutils + +DESCRIPTION="Program suite to record, replay and distribute user actions." +HOMEPAGE="http://www.sandklef.com/xnee/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gnome static-libs xosd" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXau + x11-libs/libXdmcp + x11-libs/libXext + x11-libs/libXi + x11-libs/libXtst + x11-libs/libxcb + gnome? ( + x11-libs/gtk+:2 + >=gnome-base/libgnomeui-2 + >=gnome-base/gconf-2 + ) +" +DEPEND="${RDEPEND} + x11-proto/inputproto + virtual/pkgconfig + sys-devel/gettext + gnome? ( + || ( + media-gfx/imagemagick[jpeg,png] + media-gfx/graphicsmagick[imagemagick,jpeg,png] + ) + ) +" + +# This needs RECORD extension from X.org server which isn't necessarily +# enabled. Xlib: extension "RECORD" missing on display ":0.0". +RESTRICT="test" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-3.18-linker.patch + eautoreconf +} + +src_configure() { + econf \ + $(use_enable gnome gui) \ + $(use_enable static-libs static) \ + $(use_enable xosd buffer_verbose) \ + $(use_enable xosd verbose) \ + $(use_enable xosd) \ + --disable-gnome-applet \ + --disable-static-programs \ + --enable-cli \ + --enable-lib +} + +src_test() { + Xemake check +} + +src_install() { + default + dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO + use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK" + use static-libs || rm -f "${ED}"usr/lib*/lib*.la +} |