blob: 40813a8897909ae3b029578e5a2a9c3ce8a564c3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/pilrc/pilrc-3.2.ebuild,v 1.4 2005/09/02 17:28:19 gustavoz Exp $
DESCRIPTION="PalmOS Resource Compiler and Viewer"
HOMEPAGE="http://www.ardiri.com/index.php?redir=palm&cat=pilrc"
SRC_URI="mirror://sourceforge/pilrc/pilrc-${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~ppc sparc x86"
IUSE="gtk"
RDEPEND="gtk? ( =x11-libs/gtk+-1.2* )"
DEPEND="app-arch/unzip
${RDEPEND}"
src_unpack() {
unpack ${A}
cd ${S}
mkdir fonts
unzip -d fonts -q contrib/pilfont.zip
}
src_compile() {
ECONF_SOURCE=unix econf $(use_enable gtk pilrcui)
emake || die "make failed"
cd ${S}/fonts; emake || die "fonts make failed"
}
src_install () {
make DESTDIR=${D} install || die
dobin fonts/pilfont
dodoc README.txt LICENSE.txt
dohtml -r doc/*.html doc/images
newdoc fonts/README README-pilfont.txt
use gtk && dobin pilrcui
}
|