blob: 6ab69eba8f9d2752c1c94a87416e9c531fc637dd (
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.2.ebuild,v 1.1 2005/02/27 07:06:43 genstef Exp $
inherit gnome2 mono
DESCRIPTION="Gfax is a free fax front end"
HOMEPAGE="http://gfax.cowlug.org/"
SRC_URI="http://gfax.cowlug.org/${P}-2.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="${IUSE}"
RDEPEND=">=dev-dotnet/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_install() {
gnome2_src_install eprefix=${D}
keepdir /var/spool/gfax/doneq /var/spool/gfax/recq
}
pkg_postinst() {
gnome2_pkg_postinst
einfo "Please run"
echo 'env GCONF_CONFIG_SOURCE="" gconftool-2 --makefile-install-rule /etc/gconf/schemas/gfax.schemas'
einfo "as your local user, to get gfax working"
}
|