diff options
author | René Nussbaumer <killerfox@gentoo.org> | 2007-11-11 21:47:13 +0000 |
---|---|---|
committer | René Nussbaumer <killerfox@gentoo.org> | 2007-11-11 21:47:13 +0000 |
commit | 4f14ee18a8d886e080e281bd1c78c1065cb5d97b (patch) | |
tree | ad953e64068a0e61b0d0218f4eeec1537a53c7d2 /x11-terms | |
parent | Marked stable on amd64 as per security bug 198409. (diff) | |
download | gentoo-2-4f14ee18a8d886e080e281bd1c78c1065cb5d97b.tar.gz gentoo-2-4f14ee18a8d886e080e281bd1c78c1065cb5d97b.tar.bz2 gentoo-2-4f14ee18a8d886e080e281bd1c78c1065cb5d97b.zip |
Version bump from upstream
(Portage version: 2.1.3.16)
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-8.4 | 3 | ||||
-rw-r--r-- | x11-terms/rxvt-unicode/rxvt-unicode-8.4.ebuild | 66 |
3 files changed, 76 insertions, 1 deletions
diff --git a/x11-terms/rxvt-unicode/ChangeLog b/x11-terms/rxvt-unicode/ChangeLog index 4864e4d36163..7f44230fc402 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-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.95 2007/11/11 13:30:35 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.96 2007/11/11 21:47:12 killerfox Exp $ + +*rxvt-unicode-8.4 (11 Nov 2007) + + 11 Nov 2007; René Nussbaumer <killerfox@gentoo.org> + +rxvt-unicode-8.4.ebuild: + Version bump by upstream 11 Nov 2007; nixnut <nixnut@gentoo.org> rxvt-unicode-8.3.ebuild: Stable on ppc wrt bug 198780 diff --git a/x11-terms/rxvt-unicode/files/digest-rxvt-unicode-8.4 b/x11-terms/rxvt-unicode/files/digest-rxvt-unicode-8.4 new file mode 100644 index 000000000000..07ae647aed6c --- /dev/null +++ b/x11-terms/rxvt-unicode/files/digest-rxvt-unicode-8.4 @@ -0,0 +1,3 @@ +MD5 d15ba0ea7cb54ce7a2a41650e2a5e6ab rxvt-unicode-8.4.tar.bz2 885271 +RMD160 1fa40357a1ecacade007aad231c2e9be85b883a9 rxvt-unicode-8.4.tar.bz2 885271 +SHA256 ff8d904a815151edde72bb3e51d1561125813569cb3d487cbac428ec23facdbb rxvt-unicode-8.4.tar.bz2 885271 diff --git a/x11-terms/rxvt-unicode/rxvt-unicode-8.4.ebuild b/x11-terms/rxvt-unicode/rxvt-unicode-8.4.ebuild new file mode 100644 index 000000000000..25dbe3e05c32 --- /dev/null +++ b/x11-terms/rxvt-unicode/rxvt-unicode-8.4.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-8.4.ebuild,v 1.1 2007/11/11 21:47:12 killerfox 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 ~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 + perl? ( dev-lang/perl )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + x11-proto/xproto" + +src_unpack() { + unpack ${A} + cd "${S}" + local tdir=/usr/share/terminfo + sed -i -e \ + "s~@TIC@ \(\$(srcdir)/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." +} |