blob: b819e7325de8b9eef59e9852bd2c38b7f54b5eae (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/plptools/plptools-0.11-r1.ebuild,v 1.3 2003/09/06 22:21:40 msterret Exp $
DESCRIPTION="Libraries and utilities to communicate with a Psion palmtop via serial."
HOMEPAGE="http://plptools.sourceforge.net"
SRC_URI="http://unc.dl.sourceforge.net/sourceforge/plptools/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
DEPEND="virtual/glibc"
S="${WORKDIR}/${P}"
src_compile() {
patch -p1 < ${FILESDIR}/${P}-gentoo.patch || die "Patch failed!"
local myconf
myconf="${myconf} --disable-kde"
./configure ${myconf} --prefix=/usr || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc CHANGES README TODO
insinto /etc/conf.d
newins ${FILESDIR}/psion.conf psion
exeinto /etc/init.d
doexe ${FILESDIR}/psion
}
|