diff options
Diffstat (limited to 'x11-terms/root-tail')
-rw-r--r-- | x11-terms/root-tail/ChangeLog | 7 | ||||
-rw-r--r-- | x11-terms/root-tail/root-tail-1.2-r2.ebuild | 11 |
2 files changed, 12 insertions, 6 deletions
diff --git a/x11-terms/root-tail/ChangeLog b/x11-terms/root-tail/ChangeLog index 9c9095be6514..651fbc9392c4 100644 --- a/x11-terms/root-tail/ChangeLog +++ b/x11-terms/root-tail/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-terms/root-tail # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/root-tail/ChangeLog,v 1.37 2006/09/11 20:58:37 tcort Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-terms/root-tail/ChangeLog,v 1.38 2006/12/08 22:53:43 masterdriverz Exp $ + + 08 Dec 2006; Charlie Shepherd <masterdriverz@gentoo.org> + -root-tail-1.1.ebuild, -root-tail-1.2-r1.ebuild, root-tail-1.2-r2.ebuild: + Add libX11 and xproto deps for bug 153603, thanks to Patrick Lauer for + reporting + remove old versions 11 Sep 2006; Thomas Cort <tcort@gentoo.org> root-tail-1.2-r2.ebuild: Stable on alpha. diff --git a/x11-terms/root-tail/root-tail-1.2-r2.ebuild b/x11-terms/root-tail/root-tail-1.2-r2.ebuild index aae37959f578..bec4af126087 100644 --- a/x11-terms/root-tail/root-tail-1.2-r2.ebuild +++ b/x11-terms/root-tail/root-tail-1.2-r2.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-terms/root-tail/root-tail-1.2-r2.ebuild,v 1.10 2006/09/11 20:58:37 tcort Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-terms/root-tail/root-tail-1.2-r2.ebuild,v 1.11 2006/12/08 22:53:43 masterdriverz Exp $ inherit eutils flag-o-matic @@ -13,11 +13,12 @@ SLOT="0" KEYWORDS="alpha amd64 ppc ppc64 ~sparc x86" IUSE="kde debug" -RDEPEND="|| ( x11-libs/libXext virtual/x11 )" -DEPEND=">=sys-apps/sed-4 - || ( ( x11-misc/imake +RDEPEND="|| ( ( x11-libs/libXext x11-libs/libX11 ) virtual/x11 )" +DEPEND="|| ( ( x11-misc/imake app-text/rman x11-misc/gccmakedep + x11-libs/libX11 + x11-proto/xproto ) virtual/x11 )" @@ -30,7 +31,7 @@ src_unpack() { src_compile() { xmkmf -a - sed -i 's|/usr/X11R6/bin|/usr/bin|' Makefile || die "sed Makefile failed" + sed -i 's:/usr/X11R6/bin:/usr/bin:' Makefile || die "sed Makefile failed" use debug && append-flags -DDEBUG emake || die "emake failed" } |