blob: cfcaea8cf8c5ff666de66b00d29b27e65cc4bc40 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/palmos-sdk/palmos-sdk-3.5.ebuild,v 1.5 2004/06/24 22:53:29 agriffis Exp $
DESCRIPTION="The static libraries and header files needed for developing PalmOS applications."
HOMEPAGE="http://www.palmos.com/"
LICENSE="Palm-SDK"
SLOT="3.5"
KEYWORDS="~x86"
DEPEND="dev-lang/prc-tools"
SRC_URI="sdk35.tar.gz sdk35-update1.tar.gz
doc? ( sdk35-docs.tar.gz sdk35-examples.tar.gz )"
IUSE="doc"
RESTRICT="nostrip fetch"
S=${WORKDIR}
pkg_nofetch() {
typeset a
einfo "Please download the following files from"
einfo "http://www.palmos.com/cgi-bin/sdk35.cgi"
einfo "and put them in ${DISTDIR}, then emerge this package again."
for a in ${A}; do
einfo " ${a}"
done
}
src_install() {
typeset base=/opt/palmdev/sdk-${SLOT}
dodir ${base} || die
mv Palm\ OS\ 3.5\ Support/GCC\ Libraries ${D}/${base}/lib || die
mv Palm\ OS\ 3.5\ Support/Incs ${D}/${base}/include || die
if use doc; then
mv docs ${D}/${base}/Documentation || die
mv Examples ${D}/${base}/Documentation || die
fi
}
pkg_postinst() {
palmdev-prep || eerror "Error running palmdev-prep :-("
}
|