blob: 13de24132e57b2635ee11fc5f4c9ff4d92347ed5 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
head 1.1;
access;
symbols;
locks; strict;
comment @# @;
1.1
date 2002.08.12.06.37.56; author root; state Exp;
branches;
next ;
desc
@pilot-link-0.11.3.ebuild
@
1.1
log
@Initial revision
@
text
@# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-libs/pilot-link/pilot-link-0.11.3.ebuild,v 1.1 2002/08/12 06:40:04 satai 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://pilot-link.org/source/${P}.tar.bz2"
HOMEPAGE="http://www.pilot-link.org/"
DEPEND="virtual/glibc"
SLOT="0"
LICENSE="GPL-2 | LGPL"
KEYWORDS="x86"
src_compile() {
local myconf
use perl || myconf="${myconf} --with-perl5=no"
use java || myconf="${myconf} --with-java=no"
use tcltk || myconf="${myconf} --with-tcl=no --with-itcl=no --with-tk=no"
econf \
--includedir=/usr/include/libpisock \
--with-perl5=no \
--with-python=no \
--with-java=no \
--with-tcl=no \
--with-itcl=no \
--with-tk=no || die
cd ${S}
emake || die
}
src_install() {
make \
DESTDIR=${D} \
install || die
mv ${D}/*.hxx ${D}/usr/include/libpisock/
dodoc ChangeLog README TODO NEWS AUTHORS
}
@
|