blob: 04ddf3b92b7188bd31079d3b103db3d25051002e (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/obexfs/obexfs-0.8.ebuild,v 1.1 2006/06/04 13:30:48 mrness Exp $
inherit eutils
DESCRIPTION="FUSE filesystem interface for ObexFTP"
HOMEPAGE="http://triq.net/obex/"
SRC_URI="http://triq.net/obexftp/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=net-wireless/bluez-libs-2.19
>=app-mobilephone/obexftp-0.19
>=sys-fs/fuse-2.4.1-r1"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}/${P}-as-needed.patch"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog README
}
|