blob: d35ef1e12383ff0dcf95a8bce71e3bc0f21972cb (
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
52
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/omegat/omegat-1.8.1_p01.ebuild,v 1.1 2009/01/10 17:19:22 matsuu Exp $
JAVA_PKG_BSFIX_NAME="build.xml build-impl.xml profiler-build-impl.xml"
inherit eutils java-pkg-2 java-ant-2
MY_P="OmegaT_${PV/_p/_}"
DESCRIPTION="Open source computer assisted translation (CAT) tool written in Java."
HOMEPAGE="http://www.omegat.org/"
SRC_URI="mirror://sourceforge/omegat/${MY_P}_Source.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=virtual/jdk-1.4
app-arch/unzip"
RDEPEND=">=virtual/jre-1.4"
S="${WORKDIR}"
src_install() {
local myarch
if use x86 ; then
myarch=i386
elif use amd64 ; then
myarch=amd64
fi
java-pkg_dojar dist/*.jar
dosym /usr/share/doc/${PF}/html "${JAVA_PKG_JARDEST}"/docs
if [ -n "${myarch}" ] ; then
libopts -m0755
java-pkg_sointo "${JAVA_PKG_JARDEST}"/native
java-pkg_doso dist/native/libhunspell-${myarch}.so
fi
java-pkg_jarinto "${JAVA_PKG_JARDEST}"/lib
java-pkg_dojar dist/lib/*.jar
java-pkg_dolauncher ${PN} --jar OmegaT.jar
dodoc release/changes.txt release/readme*.txt
dohtml -A properties -r docs/*
docinto lib; dodoc lib/*.txt
doicon images/OmegaT.png
make_desktop_entry ${PN} "OmegaT" "OmegaT" "Application;Office"
}
|