diff options
author | Thilo Bangert <bangert@gentoo.org> | 2009-01-03 22:56:19 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2009-01-03 22:56:19 +0000 |
commit | 19cd2bdf18416d3210b51444799eec61254a2408 (patch) | |
tree | d6c24a47dcd3bc367ce94a1bfb070fcbe4103b60 /x11-terms/rxvt | |
parent | Add patch to fix compilation with gcc-4.3; bug #250754 (diff) | |
download | gentoo-2-19cd2bdf18416d3210b51444799eec61254a2408.tar.gz gentoo-2-19cd2bdf18416d3210b51444799eec61254a2408.tar.bz2 gentoo-2-19cd2bdf18416d3210b51444799eec61254a2408.zip |
qa: remove old version (bindnow - bug #227035)
(Portage version: 2.2_rc20/cvs/Linux 2.6.28-gentoo i686)
Diffstat (limited to 'x11-terms/rxvt')
-rw-r--r-- | x11-terms/rxvt/ChangeLog | 7 | ||||
-rw-r--r-- | x11-terms/rxvt/rxvt-2.7.10-r3.ebuild | 98 |
2 files changed, 5 insertions, 100 deletions
diff --git a/x11-terms/rxvt/ChangeLog b/x11-terms/rxvt/ChangeLog index 9415b3bc6a6a..56321ce5c124 100644 --- a/x11-terms/rxvt/ChangeLog +++ b/x11-terms/rxvt/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-terms/rxvt -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt/ChangeLog,v 1.65 2008/08/21 22:30:50 cardoe Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt/ChangeLog,v 1.66 2009/01/03 22:56:19 bangert Exp $ + + 03 Jan 2009; Thilo Bangert <bangert@gentoo.org> -rxvt-2.7.10-r3.ebuild: + qa: remove old version (bindnow - bug #227035) 21 Aug 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml: add GLEP 56 USE flag desc from use.local.desc diff --git a/x11-terms/rxvt/rxvt-2.7.10-r3.ebuild b/x11-terms/rxvt/rxvt-2.7.10-r3.ebuild deleted file mode 100644 index a39697739132..000000000000 --- a/x11-terms/rxvt/rxvt-2.7.10-r3.ebuild +++ /dev/null @@ -1,98 +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/rxvt-2.7.10-r3.ebuild,v 1.17 2008/05/03 15:35:49 opfer Exp $ - -inherit eutils flag-o-matic libtool - -DESCRIPTION="rxvt -- nice small x11 terminal" -HOMEPAGE="http://rxvt.sourceforge.net/ - http://www.giga.it.okayama-u.ac.jp/~ishihara/opensource/" -SRC_URI="mirror://sourceforge/rxvt/${P}.tar.gz - http://www.giga.it.okayama-u.ac.jp/~ishihara/opensource/${P}-xim-fix.patch.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86" -IUSE="motif cjk xgetdefault linuxkeys" - -RDEPEND="virtual/libc - x11-libs/libX11 - x11-libs/libXpm - x11-libs/libXext - motif? ( x11-libs/openmotif )" -DEPEND="${RDEPEND} - x11-proto/xproto" - -src_unpack() { - unpack ${P}.tar.gz - cd ${S} - - epatch ${FILESDIR}/${P}-line-scroll.patch - epatch ${FILESDIR}/${P}-asneeded.patch - use motif && epatch ${FILESDIR}/${P}-azz4.diff - if use cjk ; then - epatch ${DISTDIR}/${P}-xim-fix.patch.gz - if use linguas_ja ; then - epatch ${FILESDIR}/${P}-rk.patch - fi - fi - - elibtoolize -} - -src_compile() { - - local term - if [ -n "${RXVT_TERM}" ] ; then - term="${RXVT_TERM}" - else - term="rxvt" - fi - - # bug #22325 - use linuxkeys && append-flags -DLINUX_KEYS - append-ldflags $(bindnow-flags) - - econf \ - --enable-everything \ - --enable-rxvt-scroll \ - --enable-next-scroll \ - --enable-xterm-scroll \ - --enable-transparency \ - --enable-xpm-background \ - --enable-utmp \ - --enable-wtmp \ - --enable-mousewheel \ - --enable-slipwheeling \ - --enable-smart-resize \ - --enable-256-color \ - --enable-menubar \ - $(use_enable cjk languages) \ - --enable-xim \ - --enable-shared \ - --enable-keepscrolling \ - --with-term=${term} \ - $(use_enable xgetdefault) || die - - emake || die -} - -src_install() { - - einstall mandir=${D}/usr/share/man/man1 || die - - cd ${S}/doc - dodoc README* *.txt BUGS FAQ - dohtml *.html -} - -pkg_postinst() { - - einfo - einfo "If you want to change default TERM variable other than rxvt," - einfo "set RXVT_TERM environment variable and then emerge rxvt." - einfo "Especially, if you use rxvt under monochrome X you might need to run" - einfo "\t RXVT_TERM=rxvt-basic emerge rxvt" - einfo "otherwise curses based program will not work." - einfo -} |