diff options
author | Stuart Bouyer <stubear@gentoo.org> | 2002-07-16 10:23:12 +0000 |
---|---|---|
committer | Stuart Bouyer <stubear@gentoo.org> | 2002-07-16 10:23:12 +0000 |
commit | 20f78e2ac0b8a79c01fe25d5ed4bcdc2adc26409 (patch) | |
tree | 46c34cc271319ea7b86b01bf9c453c1348de2df4 /x11-terms/rxvt | |
parent | fixed typo in rxvt entry (diff) | |
download | historical-20f78e2ac0b8a79c01fe25d5ed4bcdc2adc26409.tar.gz historical-20f78e2ac0b8a79c01fe25d5ed4bcdc2adc26409.tar.bz2 historical-20f78e2ac0b8a79c01fe25d5ed4bcdc2adc26409.zip |
added multi-byte char support to rxvt
Diffstat (limited to 'x11-terms/rxvt')
-rw-r--r-- | x11-terms/rxvt/files/digest-rxvt-2.7.8-r5 | 1 | ||||
-rw-r--r-- | x11-terms/rxvt/rxvt-2.7.8-r4.ebuild | 4 | ||||
-rw-r--r-- | x11-terms/rxvt/rxvt-2.7.8-r5.ebuild | 60 |
3 files changed, 64 insertions, 1 deletions
diff --git a/x11-terms/rxvt/files/digest-rxvt-2.7.8-r5 b/x11-terms/rxvt/files/digest-rxvt-2.7.8-r5 new file mode 100644 index 000000000000..d71a447c4606 --- /dev/null +++ b/x11-terms/rxvt/files/digest-rxvt-2.7.8-r5 @@ -0,0 +1 @@ +MD5 e91b733b4f480f218db4b3b331ea42f6 rxvt-2.7.8.tar.gz 488213 diff --git a/x11-terms/rxvt/rxvt-2.7.8-r4.ebuild b/x11-terms/rxvt/rxvt-2.7.8-r4.ebuild index 2611b679f9c1..b41c3b07b755 100644 --- a/x11-terms/rxvt/rxvt-2.7.8-r4.ebuild +++ b/x11-terms/rxvt/rxvt-2.7.8-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt/rxvt-2.7.8-r4.ebuild,v 1.3 2002/07/11 06:30:58 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt/rxvt-2.7.8-r4.ebuild,v 1.4 2002/07/16 10:23:12 stubear Exp $ S=${WORKDIR}/${P} DESCRIPTION="rxvt -- nice small x11 terminal" @@ -39,6 +39,8 @@ src_compile() { --enable-slipwheeling \ --enable-smart-resize \ --enable-menubar \ + --enable-languages \ + --enable-xim \ --enable-shared \ --enable-keepscrolling || die diff --git a/x11-terms/rxvt/rxvt-2.7.8-r5.ebuild b/x11-terms/rxvt/rxvt-2.7.8-r5.ebuild new file mode 100644 index 000000000000..2c29e9c703fc --- /dev/null +++ b/x11-terms/rxvt/rxvt-2.7.8-r5.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt/rxvt-2.7.8-r5.ebuild,v 1.1 2002/07/16 10:23:12 stubear Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="rxvt -- nice small x11 terminal" +SRC_URI="ftp://ftp.rxvt.org/pub/rxvt/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +HOMEPAGE=http://www.rxvt.org + +DEPEND="virtual/glibc + virtual/x11 + motif? ( x11-libs/openmotif )" + + +src_unpack() { + + unpack ${A} + cd ${S} + + + [ "`use motif`" ] && patch -p1 < ${FILESDIR}/rxvt-2.7.8-azz4.diff +} + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --enable-rxvt-scroll \ + --enable-transparency \ + --enable-xpm-background \ + --enable-utmp \ + --enable-wtmp \ + --enable-mousewheel \ + --enable-slipwheeling \ + --enable-smart-resize \ + --enable-menubar \ + --enable-languages \ + --enable-xim \ + --enable-shared \ + --enable-keepscrolling || die + + emake || die +} + +src_install() { + + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man/man1 \ + install || die + + cd ${S}/doc + dodoc README* *.txt BUGS FAQ + dohtml *.html +} |