blob: f19b0fa4f6b9f58322eb5235ca2efbade9763f21 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-fur/synce-fur-0.4.6.ebuild,v 1.2 2009/08/07 01:31:00 mescalinum Exp $
EAPI=2
inherit eutils
MY_P="FUR-${PV}"
DESCRIPTION="FUSE based filesystem access to a connected SynCE device."
HOMEPAGE="http://www.synce.org"
SRC_URI="mirror://sourceforge/synce/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="void-chmod"
DEPEND=">=app-pda/synce-0.14"
RDEPEND=">=app-pda/synce-0.14
>=sys-fs/fuse-2.7.4"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}/${P}-destdir.patch"
}
src_configure() {
econf $(use_enable void-chmod)
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc Changelog README.txt
( cd docs ; dodoc $(ls -1 | fgrep -v COPYING.txt) )
}
|