diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2008-06-10 22:05:42 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2008-06-10 22:05:42 +0000 |
commit | fb6b664f534aa094180228ae4eea1bf025edf1f6 (patch) | |
tree | f0c75c4dfd4e4749daa20da30971b4b97c91c6a1 /x11-terms/mrxvt | |
parent | Improve ebuild, changes by Thomas Anderson (gentoofan23). (diff) | |
download | gentoo-2-fb6b664f534aa094180228ae4eea1bf025edf1f6.tar.gz gentoo-2-fb6b664f534aa094180228ae4eea1bf025edf1f6.tar.bz2 gentoo-2-fb6b664f534aa094180228ae4eea1bf025edf1f6.zip |
Remove old versions.
(Portage version: 2.1.5.4)
Diffstat (limited to 'x11-terms/mrxvt')
-rw-r--r-- | x11-terms/mrxvt/ChangeLog | 7 | ||||
-rw-r--r-- | x11-terms/mrxvt/files/mrxvt-0.5.2-no_debug_x.patch | 13 | ||||
-rw-r--r-- | x11-terms/mrxvt/mrxvt-0.5.1.ebuild | 104 | ||||
-rw-r--r-- | x11-terms/mrxvt/mrxvt-0.5.2-r1.ebuild | 119 | ||||
-rw-r--r-- | x11-terms/mrxvt/mrxvt-0.5.3-r1.ebuild | 121 |
5 files changed, 6 insertions, 358 deletions
diff --git a/x11-terms/mrxvt/ChangeLog b/x11-terms/mrxvt/ChangeLog index 6021520c84e8..c542bdcffdd8 100644 --- a/x11-terms/mrxvt/ChangeLog +++ b/x11-terms/mrxvt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-terms/mrxvt # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/mrxvt/ChangeLog,v 1.65 2008/05/06 17:38:43 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-terms/mrxvt/ChangeLog,v 1.66 2008/06/10 22:05:42 nelchael Exp $ + + 10 Jun 2008; Krzysiek Pawlik <nelchael@gentoo.org> + -files/mrxvt-0.5.2-no_debug_x.patch, -mrxvt-0.5.1.ebuild, + -mrxvt-0.5.2-r1.ebuild, -mrxvt-0.5.3-r1.ebuild: + Remove old versions. 06 May 2008; Tobias Scherbaum <dertobi123@gentoo.org> mrxvt-0.5.3-r2.ebuild: diff --git a/x11-terms/mrxvt/files/mrxvt-0.5.2-no_debug_x.patch b/x11-terms/mrxvt/files/mrxvt-0.5.2-no_debug_x.patch deleted file mode 100644 index ca2f9789c978..000000000000 --- a/x11-terms/mrxvt/files/mrxvt-0.5.2-no_debug_x.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: src/init.c -=================================================================== ---- src/init.c (revision 195) -+++ src/init.c (working copy) -@@ -41,7 +41,7 @@ - # define DEBUG_X - #else - # define DEBUG_LEVEL 0 --# define DEBUG_X -+# undef DEBUG_X - #endif - - #if DEBUG_LEVEL diff --git a/x11-terms/mrxvt/mrxvt-0.5.1.ebuild b/x11-terms/mrxvt/mrxvt-0.5.1.ebuild deleted file mode 100644 index b84266c8f14d..000000000000 --- a/x11-terms/mrxvt/mrxvt-0.5.1.ebuild +++ /dev/null @@ -1,104 +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/mrxvt/mrxvt-0.5.1.ebuild,v 1.9 2008/04/30 07:02:27 nelchael Exp $ - -inherit eutils - -IUSE="debug png jpeg session truetype menubar" - -DESCRIPTION="Multi-tabbed rxvt clone with XFT, transparent background and CJK support" -HOMEPAGE="http://materm.sourceforge.net/" -SRC_URI="mirror://sourceforge/materm/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ~mips ppc x86" - -RDEPEND="png? ( media-libs/libpng ) - jpeg? ( media-libs/jpeg ) - truetype? ( virtual/xft - media-libs/fontconfig - media-libs/freetype ) - x11-libs/libX11 - x11-libs/libXt - x11-libs/libXpm - x11-libs/libXrender" - -DEPEND="${RDEPEND} - x11-proto/xproto" - -src_compile() { - - local myconf - - # if you want to pass any other flags, use EXTRA_ECONF. - if use linguas_el ; then - myconf="${myconf} --enable-greek" - fi - if use linguas_ja ; then - # --with-encoding=sjis - myconf="${myconf} --enable-kanji --with-encoding=eucj" - fi - if use linguas_ko ; then - myconf="${myconf} --enable-kr --with-encoding=kr" - fi - if use linguas_th ; then - myconf="${myconf} --enable-thai" - fi - if use linguas_zh_CN ; then - # --with-encoding=gbk - myconf="${myconf} --enable-gb --with-encoding=gb" - fi - if use linguas_zh_TW ; then - myconf="${myconf} --enable-big5 --with-encoding=big5" - fi - - # 2006-03-13 gi1242: mrxvt works best with TERM=rxvt AND correctly set - # termcap / terminfo entries. If the rxvt termcap / terminfo entries are - # messed up then then it's better to set TERM=xterm. - # - # Provide support for this by setting the or RXVT_TERM environment variables - # before emerging, as done in the rxvt ebuild. - - if [[ -n ${RXVT_TERM} ]]; then - myconf="${myconf} --with-term=${RXVT_TERM}" - fi - - econf \ - --enable-everything \ - $(use_enable debug) \ - $(use_enable png) \ - $(use_enable jpeg) \ - $(use_enable session sessionmgr) \ - $(use_enable truetype xft) \ - $(use_enable menubar) \ - ${myconf} || die - - emake || die - -} - -src_install() { - - make DESTDIR=${D} docdir=/usr/share/doc/${PF} install || die - dodoc AUTHORS CREDITS ChangeLog FAQ NEWS README* TODO - -} - -pkg_postinst() { - - if [[ -z $RXVT_TERM ]]; then - einfo - einfo "If you experience problems with curses programs, then this is" - einfo "most likely because of incorrectly set termcap / terminfo" - einfo "entries. If you are unsure how to fix them, then you can try" - einfo "setting TERM=xterm." - einfo - einfo "To emerge mrxvt with TERM=xterm by default, set the RXVT_TERM" - einfo "environment variable to 'xterm', or your desired default" - einfo "terminal name. Alternately you can put 'Mrxvt.termName: xterm'" - einfo "in your ~/.mrxvtrc, or /etc/mrxvt/mrxvtrc." - einfo - fi - -} diff --git a/x11-terms/mrxvt/mrxvt-0.5.2-r1.ebuild b/x11-terms/mrxvt/mrxvt-0.5.2-r1.ebuild deleted file mode 100644 index 5cdbbf471cd7..000000000000 --- a/x11-terms/mrxvt/mrxvt-0.5.2-r1.ebuild +++ /dev/null @@ -1,119 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/mrxvt/mrxvt-0.5.2-r1.ebuild,v 1.4 2007/11/11 11:01:06 grobian Exp $ - -inherit eutils - -DESCRIPTION="Multi-tabbed rxvt clone with XFT, transparent background and CJK support" -HOMEPAGE="http://materm.sourceforge.net/" -SRC_URI="mirror://sourceforge/materm/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~mips ~ppc ~x86" - -LINGUAS_IUSE="linguas_el linguas_ja linguas_ko linguas_th linguas_zh_CN linguas_zh_TW" -IUSE="debug png jpeg session truetype menubar utempter xpm ${LINGUAS_IUSE}" - -RDEPEND="png? ( media-libs/libpng ) - utempter? ( sys-libs/libutempter ) - jpeg? ( media-libs/jpeg ) - truetype? ( virtual/xft - media-libs/fontconfig - media-libs/freetype ) - x11-libs/libX11 - x11-libs/libXt - xpm? ( x11-libs/libXpm ) - x11-libs/libXrender" - -DEPEND="${RDEPEND} - x11-proto/xproto" - -src_unpack() { - - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-no_debug_x.patch" - -} - -src_compile() { - - local myconf - - # if you want to pass any other flags, use EXTRA_ECONF. - if use linguas_el ; then - myconf="${myconf} --enable-greek" - fi - if use linguas_ja ; then - # --with-encoding=sjis - myconf="${myconf} --enable-kanji --with-encoding=eucj" - fi - if use linguas_ko ; then - myconf="${myconf} --enable-kr --with-encoding=kr" - fi - if use linguas_th ; then - myconf="${myconf} --enable-thai" - fi - if use linguas_zh_CN ; then - # --with-encoding=gbk - myconf="${myconf} --enable-gb --with-encoding=gb" - fi - if use linguas_zh_TW ; then - myconf="${myconf} --enable-big5 --with-encoding=big5" - fi - - # 2006-03-13 gi1242: mrxvt works best with TERM=rxvt AND correctly set - # termcap / terminfo entries. If the rxvt termcap / terminfo entries are - # messed up then then it's better to set TERM=xterm. - # - # Provide support for this by setting the or RXVT_TERM environment variables - # before emerging, as done in the rxvt ebuild. - - if [[ -n ${RXVT_TERM} ]]; then - myconf="${myconf} --with-term=${RXVT_TERM}" - fi - - econf \ - --enable-everything \ - $(use_enable debug) \ - $(use_enable jpeg) \ - $(use_enable png) \ - $(use_enable xpm) \ - $(use_enable session sessionmgr) \ - $(use_enable truetype xft) \ - $(use_enable utempter) \ - $(use_enable menubar) \ - ${myconf} || die - - emake || die - -} - -src_install() { - - make DESTDIR=${D} docdir=/usr/share/doc/${PF} install || die - # Give mrxvt perms to update utmp - fowners root:utmp /usr/bin/mrxvt - fperms g+s /usr/bin/mrxvt - dodoc AUTHORS CREDITS ChangeLog FAQ NEWS README* TODO - -} - -pkg_postinst() { - - if [[ -z $RXVT_TERM ]]; then - einfo - einfo "If you experience problems with curses programs, then this is" - einfo "most likely because of incorrectly set termcap / terminfo" - einfo "entries. If you are unsure how to fix them, then you can try" - einfo "setting TERM=xterm." - einfo - einfo "To emerge mrxvt with TERM=xterm by default, set the RXVT_TERM" - einfo "environment variable to 'xterm', or your desired default" - einfo "terminal name. Alternately you can put 'Mrxvt.termName: xterm'" - einfo "in your ~/.mrxvtrc, or /etc/mrxvt/mrxvtrc." - einfo - fi - -} diff --git a/x11-terms/mrxvt/mrxvt-0.5.3-r1.ebuild b/x11-terms/mrxvt/mrxvt-0.5.3-r1.ebuild deleted file mode 100644 index d921863ff064..000000000000 --- a/x11-terms/mrxvt/mrxvt-0.5.3-r1.ebuild +++ /dev/null @@ -1,121 +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/mrxvt/mrxvt-0.5.3-r1.ebuild,v 1.9 2008/04/30 07:02:27 nelchael Exp $ - -inherit eutils - -DESCRIPTION="Multi-tabbed rxvt clone with XFT, transparent background and CJK support" -HOMEPAGE="http://materm.sourceforge.net/" -SRC_URI="mirror://sourceforge/materm/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ~mips ppc x86" - -LINGUAS_IUSE="linguas_el linguas_ja linguas_ko linguas_th linguas_zh_CN linguas_zh_TW" -IUSE="debug png jpeg session truetype menubar utempter xpm ${LINGUAS_IUSE}" - -RDEPEND="png? ( media-libs/libpng ) - utempter? ( sys-libs/libutempter ) - jpeg? ( media-libs/jpeg ) - truetype? ( virtual/xft - media-libs/fontconfig - media-libs/freetype ) - x11-libs/libX11 - x11-libs/libXt - xpm? ( x11-libs/libXpm ) - x11-libs/libXrender" - -DEPEND="${RDEPEND} - x11-proto/xproto" - -src_unpack() { - - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-no-scroll-with-buffer.patch" - -} - -src_compile() { - - local myconf - - # if you want to pass any other flags, use EXTRA_ECONF. - if use linguas_el ; then - myconf="${myconf} --enable-greek" - fi - if use linguas_ja ; then - # --with-encoding=sjis - myconf="${myconf} --enable-kanji --with-encoding=eucj" - fi - if use linguas_ko ; then - myconf="${myconf} --enable-kr --with-encoding=kr" - fi - if use linguas_th ; then - myconf="${myconf} --enable-thai" - fi - if use linguas_zh_CN ; then - # --with-encoding=gbk - myconf="${myconf} --enable-gb --with-encoding=gb" - fi - if use linguas_zh_TW ; then - myconf="${myconf} --enable-big5 --with-encoding=big5" - fi - - # 2006-03-13 gi1242: mrxvt works best with TERM=rxvt AND correctly set - # termcap / terminfo entries. If the rxvt termcap / terminfo entries are - # messed up then then it's better to set TERM=xterm. - # - # Provide support for this by setting the or RXVT_TERM environment variables - # before emerging, as done in the rxvt ebuild. - - if [[ -n ${RXVT_TERM} ]]; then - myconf="${myconf} --with-term=${RXVT_TERM}" - fi - - econf \ - --enable-everything \ - --with-atab-extra=25 \ - $(use_enable debug) \ - $(use_enable jpeg) \ - $(use_enable png) \ - $(use_enable xpm) \ - $(use_enable session sessionmgr) \ - $(use_enable truetype xft) \ - $(use_enable utempter) \ - $(use_enable menubar) \ - ${myconf} || die - - emake || die - -} - -src_install() { - - make DESTDIR="${D}" docdir=/usr/share/doc/${PF} install || die - # Give mrxvt perms to update utmp - fowners root:utmp /usr/bin/mrxvt - fperms g+s /usr/bin/mrxvt - dodoc AUTHORS CREDITS ChangeLog FAQ NEWS README* TODO - -} - -pkg_postinst() { - - if [[ -z $RXVT_TERM ]]; then - einfo - einfo "If you experience problems with curses programs, then this is" - einfo "most likely because of incorrectly set termcap / terminfo" - einfo "entries. To fix this you can dry and run (as user)" - einfo " tic /usr/share/doc/${P}/etc/mrxvt.terminfo" - einfo "Alternately, run the offending programs with TERM=xterm." - einfo - einfo "To emerge mrxvt with TERM=xterm by default, set the RXVT_TERM" - einfo "environment variable to 'xterm', or your desired default" - einfo "terminal name. Alternately you can put 'Mrxvt.termName: xterm'" - einfo "in your ~/.mrxvtrc, or /etc/mrxvt/mrxvtrc." - einfo - fi - -} |