diff options
author | David Shakaryan <omp@gentoo.org> | 2006-10-21 21:30:02 +0000 |
---|---|---|
committer | David Shakaryan <omp@gentoo.org> | 2006-10-21 21:30:02 +0000 |
commit | b87aca17c8201e8472e605c710262cd4cc49e2f4 (patch) | |
tree | 3c99fd05d44ad3cf72d3d36bd7138d9a4496012c /x11-misc/xsnap | |
parent | Remove monolithic X from dependencies, fix quotes and other minor cleanup. (diff) | |
download | gentoo-2-b87aca17c8201e8472e605c710262cd4cc49e2f4.tar.gz gentoo-2-b87aca17c8201e8472e605c710262cd4cc49e2f4.tar.bz2 gentoo-2-b87aca17c8201e8472e605c710262cd4cc49e2f4.zip |
Remove monolithic X from dependencies and fix quotes.
(Portage version: 2.1.2_pre3-r6)
Diffstat (limited to 'x11-misc/xsnap')
-rw-r--r-- | x11-misc/xsnap/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/xsnap/xsnap-1.4.3-r1.ebuild | 25 |
2 files changed, 15 insertions, 15 deletions
diff --git a/x11-misc/xsnap/ChangeLog b/x11-misc/xsnap/ChangeLog index fe0557fffb95..0ba364478dbe 100644 --- a/x11-misc/xsnap/ChangeLog +++ b/x11-misc/xsnap/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/xsnap # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v 1.23 2006/10/11 11:43:00 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v 1.24 2006/10/21 21:30:02 omp Exp $ + + 21 Oct 2006; David Shakaryan <omp@gentoo.org> xsnap-1.4.3-r1.ebuild: + Remove monolithic X from dependencies and fix quotes. 11 Oct 2006; Krzysiek Pawlik <nelchael@gentoo.org> xsnap-1.4.3-r1.ebuild: Fix Imakefile to use /usr/include/X11, see bug #150797. diff --git a/x11-misc/xsnap/xsnap-1.4.3-r1.ebuild b/x11-misc/xsnap/xsnap-1.4.3-r1.ebuild index 040734eaa6c7..6b985e00d702 100644 --- a/x11-misc/xsnap/xsnap-1.4.3-r1.ebuild +++ b/x11-misc/xsnap/xsnap-1.4.3-r1.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/xsnap/xsnap-1.4.3-r1.ebuild,v 1.10 2006/10/11 11:43:00 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/xsnap-1.4.3-r1.ebuild,v 1.11 2006/10/21 21:30:02 omp Exp $ inherit eutils @@ -13,26 +13,23 @@ LICENSE="as-is" KEYWORDS="amd64 ppc sparc x86" IUSE="" -RDEPEND="|| ( ( - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm ) - virtual/x11 ) +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm media-libs/libpng media-libs/jpeg" DEPEND="${RDEPEND} - || ( ( - x11-proto/xproto - app-text/rman - x11-misc/imake ) - virtual/x11 )" + x11-proto/xproto + app-text/rman + x11-misc/imake" src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PN}-1.4-gentoo.patch + cd "${S}" + + epatch "${FILESDIR}/${PN}-1.4-gentoo.patch" # i notified upstream about it... should be fixed soon - epatch ${FILESDIR}/${PN}-this-should-be-fixed-updstream.patch + epatch "${FILESDIR}/${PN}-this-should-be-fixed-updstream.patch" sed -i -e 's,X11R6/,,g' "${S}/Imakefile" } |