diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-18 18:17:48 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-18 18:17:48 +0000 |
commit | 98df0e6bdb40741ebbaf92f17fe06847c55b1475 (patch) | |
tree | d0ef1c32b6c5cdbf8a0d0b17d943270ab723e8e0 | |
parent | Some sparc32 profile cleanup (diff) | |
download | gentoo-2-98df0e6bdb40741ebbaf92f17fe06847c55b1475.tar.gz gentoo-2-98df0e6bdb40741ebbaf92f17fe06847c55b1475.tar.bz2 gentoo-2-98df0e6bdb40741ebbaf92f17fe06847c55b1475.zip |
Add a new revision that depends on ncurses 5.6 that have another copy of the terminfo data.
(Portage version: 2.1.2)
-rw-r--r-- | app-i18n/jfbterm/ChangeLog | 11 | ||||
-rw-r--r-- | app-i18n/jfbterm/files/digest-jfbterm-0.4.7-r3 | 3 | ||||
-rw-r--r-- | app-i18n/jfbterm/jfbterm-0.4.7-r3.ebuild | 56 |
3 files changed, 68 insertions, 2 deletions
diff --git a/app-i18n/jfbterm/ChangeLog b/app-i18n/jfbterm/ChangeLog index 32208e9fab00..f20110978625 100644 --- a/app-i18n/jfbterm/ChangeLog +++ b/app-i18n/jfbterm/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-i18n/jfbterm -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/jfbterm/ChangeLog,v 1.35 2006/11/26 17:12:53 flameeyes Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/jfbterm/ChangeLog,v 1.36 2007/01/18 18:17:48 flameeyes Exp $ + +*jfbterm-0.4.7-r3 (18 Jan 2007) + + 18 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> + +jfbterm-0.4.7-r3.ebuild: + Add a new revision that depends on ncurses 5.6 that have another copy of the + terminfo data. *jfbterm-0.4.7-r2 (26 Nov 2006) diff --git a/app-i18n/jfbterm/files/digest-jfbterm-0.4.7-r3 b/app-i18n/jfbterm/files/digest-jfbterm-0.4.7-r3 new file mode 100644 index 000000000000..e9393b952732 --- /dev/null +++ b/app-i18n/jfbterm/files/digest-jfbterm-0.4.7-r3 @@ -0,0 +1,3 @@ +MD5 cb0b869bd1c21f0dd224b7fc40517680 jfbterm-0.4.7.tar.gz 104592 +RMD160 814c9c78fd7da8d8a4747b2644f8007554e6679f jfbterm-0.4.7.tar.gz 104592 +SHA256 a18446040cfaadd51c1ce77bb06ba6860372a70a04e36962e2635253a1f693a3 jfbterm-0.4.7.tar.gz 104592 diff --git a/app-i18n/jfbterm/jfbterm-0.4.7-r3.ebuild b/app-i18n/jfbterm/jfbterm-0.4.7-r3.ebuild new file mode 100644 index 000000000000..5f6a4be60ad3 --- /dev/null +++ b/app-i18n/jfbterm/jfbterm-0.4.7-r3.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/jfbterm/jfbterm-0.4.7-r3.ebuild,v 1.1 2007/01/18 18:17:48 flameeyes Exp $ + +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="latest" + +inherit flag-o-matic eutils autotools + +DESCRIPTION="The J Framebuffer Terminal/Multilingual Enhancement with UTF-8 support" +HOMEPAGE="http://jfbterm.sourceforge.jp/" +SRC_URI="mirror://sourceforge.jp/${PN}/13501/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug" + +DEPEND=">=sys-libs/ncurses-5.6" +RDEPEND="media-fonts/unifont + media-fonts/font-misc-misc" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-sigchld-debian.patch" + epatch "${FILESDIR}/${P}-no-kernel-headers.patch" + + eautoreconf + + sed -i -e 's/a18/8x16/' \ + -e 's:/usr/X11R6/lib/X11/fonts:/usr/share/fonts:' \ + -e 's:/usr/share/fonts/misc/unifont:/usr/share/fonts/unifont/unifont:' \ + jfbterm.conf.sample +} + +src_compile() { + append-ldflags $(bindnow-flags) + + econf \ + $(use_enable debug) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + dodir /etc /usr/share/fonts/jfbterm + emake -j1 DESTDIR="${D}" install || die "emake install failed" + + mv "${D}"/etc/jfbterm.conf{.sample,} + + doman jfbterm.1 jfbterm.conf.5 + + dodoc AUTHORS ChangeLog INSTALL* NEWS README* + dodoc jfbterm.conf.sample* +} |