blob: 22b6588a0961389ca9029f5dc4b6b25e51c16f3a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/wordnet/wordnet-2.0.ebuild,v 1.6 2005/11/12 17:50:44 grobian Exp $
inherit eutils
DESCRIPTION="WordNet : a lexical database for the English language"
HOMEPAGE="http://www.cogsci.princeton.edu/~wn/"
SRC_URI="ftp://ftp.cogsci.princeton.edu/pub/wordnet/${PV}/WordNet-${PV}.tar.gz"
DEPEND="dev-lang/tcl
dev-lang/tk"
LICENSE="Princeton"
IUSE=""
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc-macos ~x86"
S=${WORKDIR}/WordNet-${PV}
src_unpack() {
unpack $A
epatch ${FILESDIR}/Makefiles.diff
epatch "${FILESDIR}/${P}"-macos.patch
}
src_compile() {
MAKEOPTS="-e"
PLATFORM=linux WN_ROOT=${T}/usr \
WN_DICTDIR=${T}/usr/share/wordnet/dict \
WN_MANDIR=${T}/usr/share/man \
WN_DOCDIR=${T}/usr/share/doc/wordnet-${PV} \
CFLAGS="${CFLAGS} -DUNIX -I${T}/usr/include" \
emake SrcWorld || die
}
src_install() {
cp -r ${T}/usr ${D}
}
|