blob: 20dbb75d6141986301ec63c58939d3b663ba8411 (
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
41
42
43
44
45
46
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/efax-gtk/efax-gtk-2.0.7.ebuild,v 1.2 2003/07/13 12:52:21 mholzer Exp $
DESCRIPTION="GTK+2 frontend for the efax program."
HOMEPAGE="http://www.cvine.freeserve.co.uk/efax-gtk"
SRC_URI="http://www.cvine.freeserve.co.uk/efax-gtk/${P}.src.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND=">=dev-cpp/gtkmm-2.0.5
>=x11-libs/gtk+-2*"
RDEPEND=">=net-misc/efax-0.9*"
S=${WORKDIR}/${PN}
src_compile() {
econf
emake || die
}
src_install() {
# The binaries
dobin efax-gtk efax-gtk-send
# The man page
doman efax-gtk.1.gz
# The spool directory and print filter
dodir /var/spool/fax
fowners lp:lp /var/spool/fax
insinto /var/spool/fax
insopts -m755 -oroot -groot
doins efax-gtk-faxfilter
# Config file
insinto /etc
doins efax-gtkrc
# Docs
dodoc BUGS COPYRIGHT HISTORY README
}
|