blob: f1d31011a6499e51950a137ada92b68d9d7838a3 (
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
|
# 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-2.9.ebuild,v 1.12 2005/09/02 17:28:19 gustavoz Exp $
DESCRIPTION="Pilot Resource Compiler"
HOMEPAGE="http://www.ardiri.com/index.php?redir=palm&cat=pilrc"
SRC_URI="http://www.ardiri.com/download/files/palm/pilrc_src.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 -sparc"
IUSE="gtk"
src_compile() {
cd ${S}
pwd
use gtk \
|| myconf="${myconf} --disable-pilrcui"
./configure ${myconf}
make || die
}
src_install () {
cd ${S}
dobin pilrc
if [ -e pilrcui ]
then
dobin pilrcui
fi
}
|