commit:     f220ced899998a40d40158ec7b364b929713f295
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 27 13:28:05 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 27 13:28:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f220ced8

net-misc/hylafaxplus: add 7.0.6

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/hylafaxplus/Manifest                 |   1 +
 net-misc/hylafaxplus/hylafaxplus-7.0.6.ebuild | 160 ++++++++++++++++++++++++++
 2 files changed, 161 insertions(+)

diff --git a/net-misc/hylafaxplus/Manifest b/net-misc/hylafaxplus/Manifest
index b133afba0840..c73f52d309e6 100644
--- a/net-misc/hylafaxplus/Manifest
+++ b/net-misc/hylafaxplus/Manifest
@@ -1 +1,2 @@
 DIST hylafax-7.0.3.tar.gz 1405116 BLAKE2B 
dbf8f87380929eb79ca0f18042c3397460dd6774f16defde8e9427d1d14094e00f6be491552f3ff6cc4c3d1fad0ec67a0c1a5fa3b4cb1e07c2f0c956eaefe8ed
 SHA512 
938a21e4573fdf12bbc03dfee85e00555e7790a83a26316ac9cd1983501860858175d599c35f3b383cb0748518644587c203fb429966b5de3b615689d856281a
+DIST hylafax-7.0.6.tar.gz 1418749 BLAKE2B 
83fff43dbc5c51f542aa847f61ae1617514a4260695d5c79a036416578ac632a778d0b5263a80fa7ccea9e9923a783759295a39199bdd32a2cb0ecac47ac91b4
 SHA512 
d1f69e13017f5d013ff39cf050c3a7ac6cef19a9ee5910ebe774a7ae06d7d22fd21e31de9734847764caea995539f578c3c458ecec7b9523b5823a841337d9cb

diff --git a/net-misc/hylafaxplus/hylafaxplus-7.0.6.ebuild 
b/net-misc/hylafaxplus/hylafaxplus-7.0.6.ebuild
new file mode 100644
index 000000000000..c6074f9715ad
--- /dev/null
+++ b/net-misc/hylafaxplus/hylafaxplus-7.0.6.ebuild
@@ -0,0 +1,160 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit edo 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="https://hylafax.sourceforge.io/";
+SRC_URI="mirror://sourceforge/hylafax/${MY_P}.tar.gz"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="hylafaxplus"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="html jbig lcms ldap mgetty pam"
+
+DEPEND="
+       app-text/ghostscript-gpl
+       media-libs/tiff[jbig?]
+       media-libs/libjpeg-turbo:=
+       >=sys-libs/zlib-1.1.4
+       virtual/awk
+       virtual/libcrypt:=
+       virtual/mta
+       jbig? ( media-libs/jbigkit )
+       lcms? ( media-libs/lcms )
+       ldap? ( net-nds/openldap:= )
+       mgetty? ( net-dialup/mgetty[-fax] )
+       pam? ( sys-libs/pam )
+"
+RDEPEND="
+       ${DEPEND}
+       !net-dialup/mgetty[fax]
+       !net-dialup/sendpage
+       net-mail/metamail
+"
+
+CONFIG_PROTECT="${CONFIG_PROTECT} /var/spool/fax/etc /usr/lib/fax"
+CONFIG_PROTECT_MASK="${CONFIG_PROTECT_MASK} /var/spool/fax/etc/xferfaxlog"
+
+# See bug #706154, bug #810658 if need to patch for newer libtiff.
+
+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 on 
${dir}/Makefile.in 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() {
+       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/${PF}/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+=(
+                       --with-PATH_GETTY=/sbin/mgetty
+                       --with-PATH_EGETTY=/sbin/mgetty
+                       --with-PATH_VGETTY=/usr/sbin/vgetty
+               )
+       else
+               # GETTY defaults to /sbin/agetty
+               my_conf+=(
+                       --with-PATH_EGETTY=/bin/false
+                       --with-PATH_VGETTY=/bin/false
+               )
+       fi
+
+       # --enable-pam isn't valid
+       use pam || my_conf+=( $(use_enable pam) )
+       use lcms || my_conf+=( $(use_enable lcms) )
+       use ldap || my_conf+=( $(use_enable ldap) )
+       use jbig || my_conf+=( $(use_enable jbig) )
+
+       tc-export CC CXX AR RANLIB
+
+       edo ./configure --nointeractive "${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/${PF}/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}
+
+       einfo "Adding env.d entry for ${PN}"
+       newenvd - 99hylafaxplus <<-EOF
+               PATH="/var/spool/fax/bin"
+               CONFIG_PROTECT="/var/spool/fax/etc /usr/$(get_libdir)/fax"
+               CONFIG_PROTECT_MASK="/var/spool/fax/etc/xferfaxlog"
+       EOF
+
+       newconfd "${FILESDIR}"/${PN}-conf ${PN}
+       newinitd "${FILESDIR}"/${PN}-init-r1 ${PN}
+
+       use pam && pamd_mimic_system ${MY_PN} auth account session
+
+       einstalldocs
+       docinto samples
+}

Reply via email to