summaryrefslogtreecommitdiff
blob: 3fe40d8c87e95db429e43490dd06af5c9f2d300d (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
53
54
55
56
57
58
59
60
# 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-4.0.ebuild,v 1.5 2004/06/24 22:53:29 agriffis Exp $

inherit rpm

DESCRIPTION="The static libraries and header files needed for developing PalmOS applications."
HOMEPAGE="http://www.palmos.com/"
LICENSE="Palm-SDK"

SLOT="4.0"
KEYWORDS="~x86"
DEPEND="dev-lang/prc-tools"
# Note: There is an sdk40-docs.tar.gz but it's actually a zip file, so
# might as well just get the zip file.
SRC_URI="sdk40.tar.gz sdk40upd1.tar.gz
	doc? ( sdk40-docs.zip sdk40-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/sdk40.cgi"
	einfo "and put them in ${DISTDIR}, then emerge this package again."
	for a in ${A}; do
		einfo "  ${a}"
	done
}

src_unpack() {
	unpack ${A}
	rpm_unpack *.rpm
}

src_install() {
	typeset base=/opt/palmdev/sdk-${SLOT}

	# Copy the updates over top of the existing files
	cp -Rf PalmOS-4.0-SDK-Update-1/PalmOS-Unix/PalmOS-Support/* \
		opt/palmdev/sdk-4 || die
	if use doc; then
		cp -Rf PalmOS-4.0-SDK-Update-1/PalmOS-Unix/Documentation/* \
			Documentation || die
	fi

	# Now install
	dodir ${base%/*} || die
	mv opt/palmdev/sdk-4 ${D}${base} || die
	if use doc; then
		mv Documentation ${D}${base} || die
		mv Examples ${D}${base}/Documentation || die
	fi
}

pkg_postinst() {
	palmdev-prep || eerror "Error running palmdev-prep :-("
}