blob: 635bee891a50810c5985f2be9439dd076d0c88e5 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# AJ Lewis <aj@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-libs/pilot-link/pilot-link-0.9.6.ebuild,v 1.2 2001/11/10 12:05:20 hallski Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A suite of tools contains a series of conduits for moving
information to and from your Palm device and your desktop or workstation
system."
SRC_URI="http://www.gnu-designs.com/pilot-link/source/${P}.tar.gz
http://www.eskil.org/gnome-pilot/download/tarballs/${P}.tar.gz"
HOMEPAGE="http://www.gnu-designs.com/pilot-link/"
DEPEND="virtual/glibc"
src_compile() {
./configure --host=${CHOST} \
--prefix=/usr/ \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-tcl=no \
--with-itcl=no \
--with-tk=no \
--with-python=no \
--with-java=no \
--with-perl5=no
assert
emake || die
}
src_install() {
make prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
dodoc COPYING COPYING.LIB ChangeLog README TODO doc/syncabs.sgml
}
|