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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit pam toolchain-funcs
MY_PN="${PN/plus/}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Enterprise client-server fax package for class 1 and 2 fax modems"
HOMEPAGE="http://hylafax.sourceforge.net"
SRC_URI="mirror://sourceforge/hylafax/${MY_P}.tar.gz"
SLOT="0"
LICENSE="hylafaxplus"
KEYWORDS="~amd64 ~x86"
IUSE="jbig html lcms ldap mgetty pam"
DEPEND="
>=sys-libs/zlib-1.1.4
app-text/ghostscript-gpl
virtual/mta
media-libs/tiff:0[jbig?]
virtual/jpeg:0
jbig? ( media-libs/jbigkit )
virtual/awk
lcms? ( media-libs/lcms )
ldap? ( net-nds/openldap )
pam? ( sys-libs/pam )
mgetty? ( net-dialup/mgetty[-fax] )
!net-dialup/mgetty[fax]
"
RDEPEND="${DEPEND}
net-mail/metamail
!net-dialup/sendpage
"
S="${WORKDIR}/${MY_P}"
export CONFIG_PROTECT="${CONFIG_PROTECT} /var/spool/fax/etc /usr/lib/fax"
export CONFIG_PROTECT_MASK="${CONFIG_PROTECT_MASK} /var/spool/fax/etc/xferfaxlog"
PATCHES=( "${FILESDIR}/ldconfig-patch" )
src_prepare() {
default
# force it not to strip binaries
for dir in etc util faxalter faxcover faxd faxmail faxrm faxstat \
hfaxd sendfax sendpage ; do
sed -i -e "s:-idb:-idb \"nostrip\" -idb:g" \
"${dir}"/Makefile.in || die "sed failed"
done
sed -i -e "s:hostname:hostname -f:g" util/{faxrcvd,pollrcvd}.sh.in || die "sed on hostname failed"
# Respect LDFLAGS(at least partially)
sed -i -e "/^LDFLAGS/s/LDOPTS}/LDOPTS} ${LDFLAGS}/" defs.in || die "sed on defs.in failed"
sed -i -e "s|-fpic|-fPIC|g" \
configure || die
}
src_configure() {
do_configure() {
echo ./configure --nointeractive ${1}
# eval required for quoting in ${my_conf} to work properly, better way?
eval ./configure --nointeractive ${1} || die "./configure failed"
}
local my_conf="
--with-DIR_BIN=/usr/bin
--with-DIR_SBIN=/usr/sbin
--with-DIR_LIB=/usr/$(get_libdir)
--with-DIR_LIBEXEC=/usr/sbin
--with-DIR_LIBDATA=/usr/$(get_libdir)/fax
--with-DIR_LOCALE=/usr/share/locale
--with-DIR_LOCKS=/var/lock
--with-DIR_MAN=/usr/share/man
--with-DIR_SPOOL=/var/spool/fax
--with-DIR_HTML=/usr/share/doc/${P}/html
--with-DIR_CGI="${WORKDIR}"
--with-PATH_DPSRIP=/var/spool/fax/bin/ps2fax
--with-PATH_IMPRIP=\"\"
--with-SYSVINIT=no
--with-REGEX=yes
--with-LIBTIFF=\"-ltiff -ljpeg -lz\"
--with-OPTIMIZER=\"${CFLAGS}\"
--with-DSO=auto
--with-HTML=$(usex html)"
if use mgetty; then
my_conf="${my_conf} \
--with-PATH_GETTY=/sbin/mgetty \
--with-PATH_EGETTY=/sbin/mgetty \
--with-PATH_VGETTY=/usr/sbin/vgetty"
else
# GETTY defaults to /sbin/agetty
my_conf="${my_conf} \
--with-PATH_EGETTY=/bin/false \
--with-PATH_VGETTY=/bin/false"
fi
#--enable-pam isn't valid
use pam || my_conf="${my_conf} $(use_enable pam)"
use lcms || my_conf="${my_conf} $(use_enable lcms)"
use ldap || my_conf="${my_conf} $(use_enable ldap)"
use jbig || my_conf="${my_conf} $(use_enable jbig)"
tc-export CC CXX AR RANLIB
do_configure "${my_conf}"
}
src_compile() {
# Parallel building is borked, bug #????
emake -j1
}
src_install() {
dodir /usr/{bin,sbin} /usr/$(get_libdir)/fax /usr/share/man
dodir /var/spool /var/spool/fax
fowners uucp:uucp /var/spool/fax
fperms 0600 /var/spool/fax
dodir "/usr/share/doc/${P}/samples"
emake DESTDIR="${D}" \
BIN="${D}/usr/bin" \
SBIN="${D}/usr/sbin" \
LIBDIR="${D}/usr/$(get_libdir)" \
LIB="${D}/usr/$(get_libdir)" \
LIBEXEC="${D}/usr/sbin" \
LIBDATA="${D}/usr/$(get_libdir)/fax" \
DIR_LOCALE="${D}/usr/share/locale" \
MAN="${D}/usr/share/man" \
SPOOL="${D}/var/spool/fax" \
HTMLDIR="${D}/usr/share/doc/${PF}/html" \
install
keepdir /var/spool/fax/{archive,client,etc,pollq,recvq,tmp}
keepdir /var/spool/fax/{status,sendq,log,info,doneq,docq,dev}
generate_files # in this case, it only generates the env.d entry
einfo "Adding env.d entry for ${PN}"
doenvd "${T}/99${PN}"
newconfd "${FILESDIR}/${PN}-conf" ${PN}
newinitd "${FILESDIR}/${PN}-init" ${PN}
use pam && pamd_mimic_system ${MY_PN} auth account session
einstalldocs
docinto samples
}
generate_files() {
cat <<-EOF > "${T}/99${PN}"
PATH="/var/spool/fax/bin"
CONFIG_PROTECT="/var/spool/fax/etc /usr/$(get_libdir)/fax"
CONFIG_PROTECT_MASK="/var/spool/fax/etc/xferfaxlog"
EOF
}
|