diff options
author | Emanuele Giaquinta <exg@gentoo.org> | 2006-08-08 12:55:33 +0000 |
---|---|---|
committer | Emanuele Giaquinta <exg@gentoo.org> | 2006-08-08 12:55:33 +0000 |
commit | 9d151f6895de64545a016785392d7753b4181843 (patch) | |
tree | 1d8b790320365a58fa62840238f4df290d004984 /x11-terms | |
parent | remove old ebuilds, remove dmalloc use flag thanks to Attila Stehr <as.gentoo... (diff) | |
download | gentoo-2-9d151f6895de64545a016785392d7753b4181843.tar.gz gentoo-2-9d151f6895de64545a016785392d7753b4181843.tar.bz2 gentoo-2-9d151f6895de64545a016785392d7753b4181843.zip |
Version bump.
(Portage version: 2.1.1_pre4-r4)
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/rxvt-unicode/ChangeLog | 8 | ||||
-rw-r--r-- | x11-terms/rxvt-unicode/files/digest-rxvt-unicode-7.9 | 3 | ||||
-rw-r--r-- | x11-terms/rxvt-unicode/rxvt-unicode-7.9.ebuild | 78 |
3 files changed, 88 insertions, 1 deletions
diff --git a/x11-terms/rxvt-unicode/ChangeLog b/x11-terms/rxvt-unicode/ChangeLog index 3d1972ab6e74..c2228a995508 100644 --- a/x11-terms/rxvt-unicode/ChangeLog +++ b/x11-terms/rxvt-unicode/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-terms/rxvt-unicode # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.77 2006/08/01 14:30:16 exg Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.78 2006/08/08 12:55:33 exg Exp $ + +*rxvt-unicode-7.9 (08 Aug 2006) + + 08 Aug 2006; Emanuele Giaquinta <exg@gentoo.org> -rxvt-unicode-7.8.ebuild, + -rxvt-unicode-7.8-r1.ebuild, +rxvt-unicode-7.9.ebuild: + Version bump. *rxvt-unicode-7.8-r1 (31 Jul 2006) diff --git a/x11-terms/rxvt-unicode/files/digest-rxvt-unicode-7.9 b/x11-terms/rxvt-unicode/files/digest-rxvt-unicode-7.9 new file mode 100644 index 000000000000..819dc1c08bd9 --- /dev/null +++ b/x11-terms/rxvt-unicode/files/digest-rxvt-unicode-7.9 @@ -0,0 +1,3 @@ +MD5 7a0c73ccf0e31808ad37b61e730cd10e rxvt-unicode-7.9.tar.bz2 874374 +RMD160 4629b0a15547998632518820dae183b3e3ddca27 rxvt-unicode-7.9.tar.bz2 874374 +SHA256 33d2363d40b1db7568864dc063ce4af70e50a9f9292a16445f0b167618d8fbba rxvt-unicode-7.9.tar.bz2 874374 diff --git a/x11-terms/rxvt-unicode/rxvt-unicode-7.9.ebuild b/x11-terms/rxvt-unicode/rxvt-unicode-7.9.ebuild new file mode 100644 index 000000000000..c9add9422b22 --- /dev/null +++ b/x11-terms/rxvt-unicode/rxvt-unicode-7.9.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-7.9.ebuild,v 1.1 2006/08/08 12:55:33 exg Exp $ + +inherit flag-o-matic + +DESCRIPTION="rxvt clone with XFT and Unicode support" +HOMEPAGE="http://software.schmorp.de/" +SRC_URI="http://dist.schmorp.de/rxvt-unicode/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc-macos ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="truetype perl iso14755" + +# see bug #115992 for modular x deps +RDEPEND=" + || ( + ( + x11-libs/libX11 + x11-libs/libXft + x11-libs/libXpm + x11-libs/libXrender + ) + virtual/x11 + ) + perl? ( dev-lang/perl )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + || ( + ( + x11-proto/xproto + ) + virtual/x11 + )" + +src_unpack() { + unpack ${A} + cd "${S}" + local tdir=/usr/share/terminfo + sed -i -e \ + "s~@TIC@ \(etc/rxvt\)~@TIC@ -o ${D}/${tdir} \1~" \ + doc/Makefile.in +} + +src_compile() { + myconf='' + + use iso14755 || myconf='--disable-iso14755' + + econf \ + --enable-everything \ + $(use_enable truetype xft) \ + $(use_enable perl) \ + --disable-text-blink \ + ${myconf} \ + || die + + emake || die + + sed -i \ + -e 's/RXVT_BASENAME = "rxvt"/RXVT_BASENAME = "urxvt"/' \ + ${S}/doc/rxvt-tabbed || die "tabs sed failed" +} + +src_install() { + make DESTDIR="${D}" install || die + + dodoc README.FAQ Changes + cd "${S}"/doc + dodoc README* changes.txt etc/* rxvt-tabbed +} + +pkg_postinst() { + einfo "urxvt now always uses TERM=rxvt-unicode so that the" + einfo "upstream-supplied terminfo files can be used." +} + |