blob: 6884d3e2ce8e660c77f8d84839a9d75d08b692b1 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/coldsync/coldsync-2.2.5.ebuild,v 1.6 2005/01/01 15:42:39 eradicator Exp $
DESCRIPTION="A command-line tool to synchronize PalmOS PDAs with Unix workstations"
SRC_URI="http://www.coldsync.org/download/${P}.tar.gz"
HOMEPAGE="http://www.coldsync.org/"
SLOT="0"
LICENSE="Artistic"
KEYWORDS="x86 sparc"
IUSE="nls perl"
src_compile() {
local myconf
use nls || myconf="${myconf} --without-i18n"
use perl || myconf="${myconf} --without-perl"
econf ${myconf} || die "configuring coldsync failed"
make || die "couldn't make coldsync"
}
src_install() {
make \
PREFIX=${D}/usr \
MANDIR=${D}/usr/share/man \
SYSCONFDIR=${D}/etc \
DATADIR=${D}/usr/share \
INFODIR=${D}/usr/share/info \
install || die "couldn't install coldsync"
dodoc AUTHORS Artistic ChangeLog HACKING INSTALL NEWS README TODO
}
|