blob: 2507a2bb1805d43ebe7790eba5d340d1e0729231 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/babytrans/babytrans-0.9.2-r3.ebuild,v 1.3 2005/01/01 12:46:21 eradicator Exp $
inherit eutils
DESCRIPTION="BabyTrans is a Linux clone of the popular Babylon Translator for Windows."
SRC_URI="http://fjolliton.free.fr/babytrans/test/${P}.tar.gz"
HOMEPAGE="http://fjolliton.free.fr/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE=""
RDEPEND="=x11-libs/gtk+-1.2*
=dev-libs/glib-1.2*
app-dicts/babytrans-en"
src_unpack() {
unpack ${A}
cd ${S}/src
epatch ${FILESDIR}/${P}-gcc.patch
# Using make install instead of einstall causes a problem with sandbox.
# This simple patch is supposed to solve this.
cd ${S}/po
epatch ${FILESDIR}/${P}-nls.patch
}
src_install() {
# Requested by bug 72019
make install DESTDIR=${D} || die
insinto /usr/share/babytrans
doins ${FILESDIR}/dictionary
dodoc AUTHORS README
}
pkg_postinst() {
einfo ""
einfo "Now you should install one of the babytrans dictionaries"
einfo "available in portage. You can find then in $PORTDIR under"
einfo "the app-dicts category"
einfo ""
}
|