blob: 89eaa309539ec4c6b1c865524786d4a49b844cc4 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexftp/obexftp-0.19-r1.ebuild,v 1.1 2006/05/06 06:07:55 mrness Exp $
inherit perl-module flag-o-matic eutils
DESCRIPTION="File transfer over OBEX for mobile phones"
SRC_URI="http://triq.net/obexftp/${P}.tar.gz"
HOMEPAGE="http://triq.net/obex"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="bluetooth debug perl python swig tcltk"
DEPEND=">=dev-libs/openobex-1.1
bluetooth? ( >=net-wireless/bluez-libs-2.19 )
perl? ( >=dev-lang/perl-5.8.6 )
python? ( >=dev-lang/python-2.4.2 )
tcltk? ( >=dev-lang/tcl-8.4.9 )
swig? ( >=dev-lang/swig-1.3.7 )"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}/${P}-cobex_write.patch"
}
src_compile() {
if use debug ; then
strip-flags
append-flags "-g -DOBEXFTP_DEBUG=5"
fi
econf \
$(use_enable bluetooth) \
$(use_enable perl) \
$(use_enable python) \
$(use_enable tcltk tcl) || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README* THANKS TODO
dohtml doc/*.html
insinto /usr/share/doc/${PF}/examples
doins -r apps/*_example.*
use perl && fixlocalpod
}
|