blob: b170b2307cdfd6b624f0012ad7c24f8fc6ed4369 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/jpilot/jpilot-0.99.5.ebuild,v 1.10 2005/01/01 15:44:41 eradicator Exp $
SYNCMAL="0.71.2"
MALSYNC="2.1.1"
DESCRIPTION="Desktop Organizer Software for the Palm Pilot"
SRC_URI="http://jpilot.org/${P}.tar.gz
http://www.tomw.org/malsync/malsync_${MALSYNC}.src.tar.gz
http://jasonday.home.att.net/code/syncmal/jpilot-syncmal_${SYNCMAL}.tar.gz"
HOMEPAGE="http://jpilot.org/"
# In order to use the malsync plugin you'll need to refer to the homepage
# for jpilot-syncmal http://jasonday.home.att.net/code/syncmal/
# And you'll also need an avangto account.
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc alpha"
IUSE="nls gtk gtk2"
DEPEND="gtk2? ( >=x11-libs/gtk+-2 )
gtk? ( >=x11-libs/gtk+-1.2 )
>=app-pda/pilot-link-0.11.5"
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
unpack jpilot-syncmal_${SYNCMAL}.tar.gz
cd ${S}/jpilot-syncmal_${SYNCMAL}
unpack malsync_${MALSYNC}.src.tar.gz
}
src_compile() {
use nls || myconf="--disable-nls"
use gtk2 && myconf="${myconf} --enable-gtk2" \
|| myconf="${myconf} --disable-gtk2"
econf ${myconf} || die "econf failed"
# make sure we use $CFLAGS
sed -i "s/-g -O2/${CFLAGS}/" Makefile
emake || die
# build malsync plugin
cd ${S}/jpilot-syncmal_${SYNCMAL}
econf ${myconf} || die "econf failed"
emake || die
}
src_install() {
# work around for broken Makefile
dodir /usr/bin
einstall
insinto /usr/lib/jpilot/plugins
doins jpilot-syncmal_${SYNCMAL}/.libs/libsyncmal.so
dodoc README TODO UPGRADING ABOUT-NLS BUGS ChangeLog COPYING \
INSTALL
doman docs/*.1
newdoc jpilot-syncmal_${SYNCMAL}/ChangeLog ChangeLog.jpilot-syncmal
newdoc jpilot-syncmal_${SYNCMAL}/README README.jpilot-syncmal
dodoc jpilot-syncmal_${SYNCMAL}/malsync/Doc/README_AvantGo
dodoc jpilot-syncmal_${SYNCMAL}/malsync/Doc/README_malsync
}
|