blob: d65e16e7bc4b6bd474cdccebd4db952016722009 (
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
76
|
# Copyright 1999-2011 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-r1.ebuild,v 1.13 2011/03/31 05:50:44 ssuominen Exp $
EAPI=2
inherit eutils flag-o-matic perl-module toolchain-funcs
DESCRIPTION="A command-line tool to synchronize PalmOS PDAs with Unix workstations"
HOMEPAGE="http://www.coldsync.org/"
SRC_URI="http://www.coldsync.org/download/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~amd64 ~ppc sparc x86"
IUSE="nls perl"
RDEPEND="perl? ( dev-lang/perl )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_prepare() {
epatch "${FILESDIR}"/${P}-toolchain.patch
if use perl; then
pushd perl/ColdSync
perl-module_src_prepare
popd
fi
}
src_configure() {
tc-export CC CXX
append-cflags -fno-strict-aliasing
# TODO: i18n: msgfmt fails but doesn't || die
econf \
$(use_with nls i18n) \
--without-perl
if use perl; then
pushd perl/ColdSync
perl-module_src_configure
popd
fi
}
src_compile() {
default
if use perl; then
pushd perl/ColdSync
perl-module_src_compile
popd
fi
}
src_install() {
emake \
PREFIX="${D}"/usr \
MANDIR="${D}"/usr/share/man \
SYSCONFDIR="${D}"/etc \
DATADIR="${D}"/usr/share \
INFODIR="${D}"/usr/share/info \
INSTALLMAN3DIR="${D}"/usr/share/man/man3 \
INSTALLSITEMAN3DIR="${D}"/usr/share/man/man3 \
INSTALLVENDORMAN3DIR="${D}"/usr/share/man/man3 \
install || die
if use perl; then
pushd perl/ColdSync
perl-module_src_install
popd
fi
dodoc AUTHORS ChangeLog FAQ HACKING NEWS README* TODO
}
|