diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-02-28 20:05:39 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-02-28 20:05:39 +0000 |
commit | 4801f17b90b3211331f4bd1c4069650f6d75e98b (patch) | |
tree | 978be17bf0bd55fae493c7c7090a50a563baa7a6 /x11-misc/xsel | |
parent | x86 stable, security bug #208128 (diff) | |
download | gentoo-2-4801f17b90b3211331f4bd1c4069650f6d75e98b.tar.gz gentoo-2-4801f17b90b3211331f4bd1c4069650f6d75e98b.tar.bz2 gentoo-2-4801f17b90b3211331f4bd1c4069650f6d75e98b.zip |
bumb
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-misc/xsel')
-rw-r--r-- | x11-misc/xsel/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/xsel/xsel-1.1.0.ebuild | 28 |
2 files changed, 35 insertions, 2 deletions
diff --git a/x11-misc/xsel/ChangeLog b/x11-misc/xsel/ChangeLog index 57bee2983ca9..30d7eb4155c2 100644 --- a/x11-misc/xsel/ChangeLog +++ b/x11-misc/xsel/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xsel -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsel/ChangeLog,v 1.8 2007/02/04 18:46:17 beandog Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsel/ChangeLog,v 1.9 2008/02/28 20:05:39 drac Exp $ + +*xsel-1.1.0 (28 Feb 2008) + + 28 Feb 2008; Samuli Suominen <drac@gentoo.org> +xsel-1.1.0.ebuild: + Version bump. 04 Feb 2007; Steve Dibb <beandog@gentoo.org> xsel-0.9.6.ebuild: amd64 stable, bug 151899 diff --git a/x11-misc/xsel/xsel-1.1.0.ebuild b/x11-misc/xsel/xsel-1.1.0.ebuild new file mode 100644 index 000000000000..5d108de0f233 --- /dev/null +++ b/x11-misc/xsel/xsel-1.1.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsel/xsel-1.1.0.ebuild,v 1.1 2008/02/28 20:05:39 drac Exp $ + +DESCRIPTION="XSel is a command-line program for getting and setting the contents of the X selection." +HOMEPAGE="http://www.vergenet.net/~conrad/software/xsel" +SRC_URI="http://www.vergenet.net/~conrad/software/${PN}/download/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext" +DEPEND="${RDEPEND} + x11-proto/xproto + x11-libs/libXt" + +src_compile() { + econf --disable-dependency-tracking + emake CFLAGS="${CFLAGS}" || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog README +} |