blob: 3ac7e9e128c6a54224409ecd8871b0af2ce77151 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/hylafax-4.1.2.ebuild,v 1.4 2002/07/11 06:30:48 drobbins Exp $
S=${WORKDIR}/${P}
MYSED=sed-3.02
PATCHES=${WORKDIR}/patches
DESCRIPTION="Fax package for class 1 and 2 fax modems."
SRC_URI="ftp://ftp.hylafax.org/source/${P}.tar.gz ftp://alpha.gnu.org/pub/gnu/sed/${MYSED}.tar.gz"
HOMEPAGE="http://www.hylafax.org"
KEYWORDS="x86"
LICENSE="hylafax"
SLOT="0"
DEPEND="net-dialup/mgetty
sys-libs/zlib
app-text/ghostscript
media-libs/tiff
jpeg? ( media-libs/jpeg )"
src_unpack() {
unpack ${MYSED}.tar.gz
unpack ${P}.tar.gz
mkdir patches
cd patches
tar jxvf ${FILESDIR}/${P}-gentoo-diffs.tar.bz2
cd ${S}
patch -p1 < ${PATCHES}/${P}-dso.chris.patch
patch -p1 < ${PATCHES}/${P}-shlib-pic.chris.patch
patch -p1 < ${PATCHES}/${P}-gentoo.patch
patch -p1 < ${PATCHES}/${P}-topmargin.patch
}
src_compile() {
# first compile the sed-3.02 release which is what hylafax's compile process
# knows about
cd ${WORKDIR}/${MYSED}
./configure --disable-nls --prefix=/usr || die
emake LDFLAGS=-static || die
# now, patch the configure script to call the static sed-3.02 instead of
# the system sed
cd ${S}
cp configure configure.orig
sed "s:sed :${WORKDIR}/${MYSED}/sed/sed :g" configure.orig > configure
./configure \
--with-DIR_BIN=/usr/bin \
--with-DIR_SBIN=/usr/sbin \
--with-DIR_LIB=/usr/lib \
--with-DIR_LIBEXEC=/usr/sbin \
--with-DIR_LIBDATA=/usr/lib/fax \
--with-DIR_LOCKS=/var/lock \
--with-DIR_MAN=/usr/share/man \
--with-DIR_SPOOL=/var/spool/fax \
--with-AFM=no \
--with-AWK=/usr/bin/gawk \
--with-PATH_VGETTY=/sbin/vgetty \
--with-PATH_GETTY=/sbin/agetty \
--with-HTML=no \
--with-PATH_DPSRIP=/var/spool/fax/bin/ps2fax \
--with-PATH_IMPRIP=/usr/share/fax/psrip \
--with-SYSVINIT=/etc/init.d \
--with-INTERACTIVE=no || die
make \
OPTIMIZER="${CFLAGS}" || die
}
src_install() {
dodir /usr/{bin,sbin} /usr/lib/fax /usr/share/man /var/spool/fax
make \
BIN=${D}/usr/bin \
SBIN=${D}/usr/sbin \
LIBDIR=${D}/usr/lib \
LIB=${D}/usr/lib \
LIBEXEC=${D}/usr/sbin \
LIBDATA=${D}/usr/lib/fax \
MAN=${D}/usr/share/man \
SPOOL=${D}/var/spool/fax \
install || die
insinto /etc/init.d
doins etc/hylafax
dodoc COPYRIGHT README TODO VERSION
dohtml -r .
}
|