diff options
author | David Shakaryan <omp@gentoo.org> | 2006-10-21 22:29:19 +0000 |
---|---|---|
committer | David Shakaryan <omp@gentoo.org> | 2006-10-21 22:29:19 +0000 |
commit | fa96c6343abd7fd65f71ecc4ccce7d5610ac4076 (patch) | |
tree | 4dc3ebe0eda050e7c60e0c1d94434a3c4db57796 /x11-misc | |
parent | Remove monolithic X from dependencies, fix quotes and other minor cleanup. (diff) | |
download | gentoo-2-fa96c6343abd7fd65f71ecc4ccce7d5610ac4076.tar.gz gentoo-2-fa96c6343abd7fd65f71ecc4ccce7d5610ac4076.tar.bz2 gentoo-2-fa96c6343abd7fd65f71ecc4ccce7d5610ac4076.zip |
Remove monolithic X from dependencies and add IUSE.
(Portage version: 2.1.2_pre3-r6)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xsel/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/xsel/xsel-0.9.6.ebuild | 20 |
2 files changed, 11 insertions, 14 deletions
diff --git a/x11-misc/xsel/ChangeLog b/x11-misc/xsel/ChangeLog index 8fda78d993e0..97aab73819f3 100644 --- a/x11-misc/xsel/ChangeLog +++ b/x11-misc/xsel/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/xsel # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsel/ChangeLog,v 1.5 2006/10/14 16:16:55 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsel/ChangeLog,v 1.6 2006/10/21 22:29:19 omp Exp $ + + 21 Oct 2006; David Shakaryan <omp@gentoo.org> xsel-0.9.6.ebuild: + Remove monolithic X from dependencies and add IUSE. 14 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> xsel-0.9.6.ebuild: Stable on ia64. diff --git a/x11-misc/xsel/xsel-0.9.6.ebuild b/x11-misc/xsel/xsel-0.9.6.ebuild index 4878035badce..0a1192356780 100644 --- a/x11-misc/xsel/xsel-0.9.6.ebuild +++ b/x11-misc/xsel/xsel-0.9.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsel/xsel-0.9.6.ebuild,v 1.5 2006/10/14 16:16:55 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsel/xsel-0.9.6.ebuild,v 1.6 2006/10/21 22:29:19 omp Exp $ inherit autotools @@ -11,26 +11,20 @@ SRC_URI="http://www.vergenet.net/~conrad/software/xsel/download/${P}.tar.gz" LICENSE="as-is" SLOT="0" KEYWORDS="~amd64 ia64 ppc x86" +IUSE="" -RDEPEND="|| ( ( - x11-libs/libX11 - x11-libs/libXext ) - virtual/x11 )" +RDEPEND="x11-libs/libX11 + x11-libs/libXext" DEPEND="${RDEPEND} - || ( x11-proto/xproto virtual/x11 )" + x11-proto/xproto" src_unpack() { - - unpack "${A}" - + unpack ${A} cd "${S}" eautoconf - } src_install() { - - make DESTDIR="${D}" install|| die "make install failed" + make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog NEWS README - } |