summaryrefslogtreecommitdiff
path: root/extra/hylafax
diff options
context:
space:
mode:
Diffstat (limited to 'extra/hylafax')
-rw-r--r--extra/hylafax/PKGBUILD17
-rw-r--r--extra/hylafax/config.local12
-rw-r--r--extra/hylafax/faxq.service9
-rw-r--r--extra/hylafax/hfaxd.service9
4 files changed, 36 insertions, 11 deletions
diff --git a/extra/hylafax/PKGBUILD b/extra/hylafax/PKGBUILD
index ee95019de..8ca86f3c1 100644
--- a/extra/hylafax/PKGBUILD
+++ b/extra/hylafax/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 148782 2012-02-05 11:50:17Z ibiru $
+# $Id: PKGBUILD 157237 2012-04-26 13:06:28Z tpowa $
# Maintainer: Paul Mattal <paul@archlinux.org>
pkgname=hylafax
pkgver=6.0.5
-pkgrel=3
+pkgrel=4
pkgdesc="Fax Server"
arch=('i686' 'x86_64' 'mips64el')
install='hylafax.install'
@@ -18,13 +18,17 @@ source=(ftp://ftp.hylafax.org/source/${pkgname}-${pkgver}.tar.gz
hylafax.cron.daily
config.local
configure-6.0.5.patch
- hylafax-libtiff4.patch)
+ hylafax-libtiff4.patch
+ faxq.service
+ hfaxd.service)
md5sums=('eb9ac942354ad708e20e4583cec6615f'
'6602288a405324d8c8e3c5eac2bf19fd'
'52beffe7dc296b4f9ce9fd0387f7804e'
- '0d2ce24d918226a852539aebf57d3f4a'
+ '60f2a7e62c256ead4e9238cb31b35b90'
'51d9f639bb76e5e39cdc8e2ac07e208d'
- '3d239c186f24720e945508d349b069b1')
+ '3d239c186f24720e945508d349b069b1'
+ '9c8916a753106795fc3f40268889f645'
+ 'a0b5a008b7fbf1943d167e0d5eb32341')
build() {
cd "$srcdir/${pkgname}-${pkgver}"
@@ -48,6 +52,9 @@ package () {
"$pkgdir"/var/spool/hylafax/bin/notify.awk
# fix permission on /var/lock
chmod 1777 "$pkgdir"/var/lock
+ # add systemd files
+ install -D -m644 $srcdir/hfaxd.service $pkgdir/usr/lib/systemd/system/hfaxd.service
+ install -D -m644 $srcdir/faxq.service $pkgdir/usr/lib/systemd/system/faxq.service
install -D -m644 COPYRIGHT "$pkgdir"/usr/share/licenses/$pkgname/COPYRIGHT
}
diff --git a/extra/hylafax/config.local b/extra/hylafax/config.local
index 0d8e2bcd8..4ea0f3500 100644
--- a/extra/hylafax/config.local
+++ b/extra/hylafax/config.local
@@ -250,24 +250,24 @@ SYSUID="root" # user ID for system installs
# based on whether or not they are capable of processing scripts
# included in the distribution (e.g AWK and SCRIPT_SH, SED).
#
-#AWK="/bin/awk" # pathname of suitable awk program
+AWK="/usr/bin/awk" # pathname of suitable awk program
#CAT="/bin/cat" # pathname of suitable cat program
#CHGRP="/etc/chgrp" # pathname of suitable chgrp program
#CHMOD="/etc/chmod" # pathname of suitable chmod program
#CHOWN="/etc/chown" # pathname of suitable chown program
-#CMP="/bin/cmp" # pathname of suitable cmp program
-#COL="/bin/col" # pathname of suitable col program
+CMP="/usr/bin/cmp" # pathname of suitable cmp program
+COL="/usr/bin/col" # pathname of suitable col program
#CP="/bin/cp" # pathname of suitable cp program
#ECHO="/bin/echo" # pathname of suitable echo program
-#GREP="/bin/grep" # pathname of suitable grep program
+GREP="/usr/bin/grep" # pathname of suitable grep program
#LN="/bin/ln" # pathname of suitable ln program
#LN_S="-s" # option to ${LN} to create symlink
#MAN="/usr/bin/man" # pathname of suitable man program
#MKDIR="/bin/mkdir" # pathname of suitable mkdir program
-#MKFIFO="/bin/mkfifo" # pathname of suitable mkfifo program
+MKFIFO="/usr/bin/mkfifo" # pathname of suitable mkfifo program
#MV="/bin/mv" # pathname of suitable mv program
#MV_F="-f" # option to ${MV} to force operation
#RMCMD="/bin/rm" # pathname of suitable rm program
#SED="/bin/sed" # pathname of suitable sed program
#SCRIPT_SH="/bin/sh" # pathname of suitable shell
-#SORT="/bin/sort" # pathname of suitable sort program
+SORT="/usr/bin/sort" # pathname of suitable sort program
diff --git a/extra/hylafax/faxq.service b/extra/hylafax/faxq.service
new file mode 100644
index 000000000..1fef20a6d
--- /dev/null
+++ b/extra/hylafax/faxq.service
@@ -0,0 +1,9 @@
+[Unit]
+Description=Hyla FAX queue manager
+
+[Service]
+ExecStart=/usr/sbin/faxq
+ExecReload=/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target
diff --git a/extra/hylafax/hfaxd.service b/extra/hylafax/hfaxd.service
new file mode 100644
index 000000000..d5d96c34d
--- /dev/null
+++ b/extra/hylafax/hfaxd.service
@@ -0,0 +1,9 @@
+[Unit]
+Description=Hyla FAX client-server
+
+[Service]
+ExecStart=/usr/lib/fax/hfaxd -i hylafax
+ExecReload=/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target