blob: 03af4b0c09b1908b662460638ac1858c73dc208e (
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/net-ftp/bareftp/bareftp-0.2.2.ebuild,v 1.2 2009/09/11 11:31:41 flameeyes Exp $
EAPI=2
inherit mono eutils autotools gnome2
DESCRIPTION="Mono based file transfer client"
HOMEPAGE="http://www.bareftp.org/"
SRC_URI="http://www.bareftp.org/release/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND=">=dev-lang/mono-2.0
>=dev-dotnet/gtk-sharp-2.12
>=dev-dotnet/gnome-sharp-2.20
>=dev-dotnet/gnomevfs-sharp-2.20
>=dev-dotnet/gconf-sharp-2.20"
DEPEND="${RDEPEND}"
pkg_setup() {
G2CONF="--disable-caches"
}
src_prepare() {
gnome2_src_prepare
epatch "${FILESDIR}/${PN}-0.2.2-script.patch"
eautoreconf
}
src_install() {
gnome2_src_install
dodoc ChangeLog README || die "dodoc failed"
}
|