blob: c41c78f356f36c865d7f45de769fdeb0b38348e9 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/gfax/gfax-0.7.3.ebuild,v 1.3 2005/07/15 01:16:00 agriffis Exp $
inherit gnome2 mono eutils
DESCRIPTION="Gfax is a free fax front end"
HOMEPAGE="http://gfax.cowlug.org/"
SRC_URI="http://gfax.cowlug.org/${P}-1.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=">=dev-lang/mono-0.93
=dev-dotnet/gtk-sharp-1.0*
=dev-dotnet/gconf-sharp-1.0*
=dev-dotnet/glade-sharp-1.0*
=dev-dotnet/gnome-sharp-1.0*"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.25"
S=${WORKDIR}/${PN}
G2CONF="${G2CONF} --disable-dbus"
DOCS="AUTHORS ChangeLog FAQ NEWS README TODO"
USE_DESTDIR="1"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/gfax-0.7.3-sandbox.diff
}
src_install() {
gnome2_src_install
keepdir /var/spool/gfax/doneq /var/spool/gfax/recq
}
|