diff options
author | 2008-06-23 16:41:43 +0200 | |
---|---|---|
committer | 2008-06-23 16:41:43 +0200 | |
commit | 5d00b3e71015d295624bf6859e8a616dc2dc3b5b (patch) | |
tree | fecaa4625b55d731f88cc2cd53d9ec11a8774e65 /x11-terms/rxvt-unicode-terminfo/rxvt-unicode-terminfo-9.02-r1.ebuild | |
parent | aircrack-ng-1.0_beta2 for testing (diff) | |
download | falco-5d00b3e71015d295624bf6859e8a616dc2dc3b5b.tar.gz falco-5d00b3e71015d295624bf6859e8a616dc2dc3b5b.tar.bz2 falco-5d00b3e71015d295624bf6859e8a616dc2dc3b5b.zip |
Provides rxvt-unicode terminfo files when rxvt-unicode is not installed on your SSH box, see bug 192083
Signed-off-by: Raphaël Marichez <falco@gentoo.org>
Diffstat (limited to 'x11-terms/rxvt-unicode-terminfo/rxvt-unicode-terminfo-9.02-r1.ebuild')
-rw-r--r-- | x11-terms/rxvt-unicode-terminfo/rxvt-unicode-terminfo-9.02-r1.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/x11-terms/rxvt-unicode-terminfo/rxvt-unicode-terminfo-9.02-r1.ebuild b/x11-terms/rxvt-unicode-terminfo/rxvt-unicode-terminfo-9.02-r1.ebuild new file mode 100644 index 0000000..d2442ff --- /dev/null +++ b/x11-terms/rxvt-unicode-terminfo/rxvt-unicode-terminfo-9.02-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="Provides terminfo for rxvt-unicode if rxvt-unicode is not installed" +HOMEPAGE="http://software.schmorp.de/" + +PARENT_P="${P/-terminfo/}" +PARENT_PN="${PN/-terminfo/}" +SRC_URI="http://dist.schmorp.de/rxvt-unicode/${PARENT_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="sys-libs/ncurses" +RDEPEND="!x11-terms/rxvt-unicode" + +S="${WORKDIR}"/"${PARENT_P}" + +src_compile() { + return +} + +src_install() { + dodoc doc/etc/* + /usr/bin/tic -o "${D}/usr/share/terminfo" doc/etc/rxvt-unicode.terminfo +} |