summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Nussbaumer <killerfox@gentoo.org>2008-06-21 18:24:00 +0000
committerRené Nussbaumer <killerfox@gentoo.org>2008-06-21 18:24:00 +0000
commit0a8ef2f968fab4e5af15a4bc5e4e44fa94b78ea2 (patch)
tree637304a276280cff22c7018d1198a72ded8ebdc7
parentVersion bump. x86-fbsd dropped for now as deps need to be keyworded. (diff)
downloadgentoo-2-0a8ef2f968fab4e5af15a4bc5e4e44fa94b78ea2.tar.gz
gentoo-2-0a8ef2f968fab4e5af15a4bc5e4e44fa94b78ea2.tar.bz2
gentoo-2-0a8ef2f968fab4e5af15a4bc5e4e44fa94b78ea2.zip
Cleaning up
(Portage version: 2.1.4.4)
-rw-r--r--x11-terms/rxvt-unicode/ChangeLog8
-rw-r--r--x11-terms/rxvt-unicode/rxvt-unicode-9.02.ebuild66
2 files changed, 7 insertions, 67 deletions
diff --git a/x11-terms/rxvt-unicode/ChangeLog b/x11-terms/rxvt-unicode/ChangeLog
index e3ab5d7ad1dd..cf568cfa2704 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-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.111 2008/06/21 18:18:07 killerfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.112 2008/06/21 18:24:00 killerfox Exp $
+
+ 21 Jun 2008; René Nussbaumer <killerfox@gentoo.org>
+ -rxvt-unicode-8.3.ebuild, -rxvt-unicode-8.4.ebuild,
+ -rxvt-unicode-8.8.ebuild, -rxvt-unicode-8.9.ebuild,
+ -rxvt-unicode-9.02.ebuild:
+ Cleaning up
*rxvt-unicode-9.05 (21 Jun 2008)
diff --git a/x11-terms/rxvt-unicode/rxvt-unicode-9.02.ebuild b/x11-terms/rxvt-unicode/rxvt-unicode-9.02.ebuild
deleted file mode 100644
index a1d544a30cb8..000000000000
--- a/x11-terms/rxvt-unicode/rxvt-unicode-9.02.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.02.ebuild,v 1.1 2008/03/20 20:45:02 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
- media-libs/libafterimage
- 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."
-}