blob: a62d6ec890f1461076ce4833deabda24e71fef64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexfs/obexfs-0.7.ebuild,v 1.1 2006/01/22 22:14:12 mrness Exp $
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=">=dev-libs/openobex-1.0.0
>=app-mobilephone/obexftp-0.18
>=sys-fs/fuse-2.4.1-r1"
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog README
}
|