blob: 5a70b988599521018e789002017c4ae2d6dbec8b (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# /space/gentoo/cvsroot/gentoo-x86/dev-lang/gpc/gpc-20020410.ebuild,v 1.2 2002/04/27 23:08:36 bangert Exp
S=${WORKDIR}/${P}
HOMEPAGE="http://www.palmos.com/dev/tools/emulator/"
SRC_URI="http://www.palmos.com/dev/tools/emulator/sources/emulator_src_3.5.tar.gz"
DESCRIPTION="Palm OS Emulator"
DEPEND=">=x11-libs/fltk-1.0.11"
src_compile() {
cd ${WORKDIR}/Emulator_Src_3.5/BuildUnix
./configure || die
make ||die
}
src_install() {
cd ${WORKDIR}/Emulator_Src_3.5/BuildUnix
make prefix=${D}/usr/ install || die
cd ${WORKDIR}/Emulator_Src_3.5/Docs
dodoc *.txt
insinto /usr/share/doc/${P}
doins *.pdf *.rtf *.html
}
|