blob: 6119d74978c6cde8464457fb32b91374ffa25c71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/sl/sl-3.03.ebuild,v 1.13 2005/02/02 16:40:15 luckyduck Exp $
inherit eutils
SL_PATCH="sl5-1.patch"
DESCRIPTION="sophisticated graphical program which corrects your miss typing"
HOMEPAGE="http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/ http://www.linet.gr.jp/~izumi/sl/"
SRC_URI="http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/sl/${PN}.tar
http://www.linet.gr.jp/~izumi/sl/${SL_PATCH}
http://www.sodan.ecc.u-tokyo.ac.jp/~okayama/sl/${PN}.en.1.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86 alpha sparc ppc64 ppc ppc-macos ~amd64"
IUSE="cjk"
DEPEND="virtual/libc
sys-libs/ncurses
!macos? ( !ppc-macos? ( cjk? ( app-i18n/nkf ) ) )"
RDEPEND="virtual/libc
sys-libs/ncurses"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${PN}.tar
cd ${S}
epatch ${DISTDIR}/${SL_PATCH}
epatch ${FILESDIR}/${P}-gentoo.diff
unpack ${PN}.en.1.gz
}
src_compile() {
emake CFLAGS="${CFLAGS}" LDFLAGS="-lncurses" || die
if use cjk; then
nkf -e sl.1 > sl.ja.1
fi
}
src_install() {
dobin sl || die
newman sl.en.1 sl.1
dodoc README* sl.txt
if use cjk ; then
insinto /usr/share/man/ja/man1
newins sl.ja.1 sl.1
fi
}
|