diff options
author | root <root@rshg054.dnsready.net> | 2012-04-28 00:01:35 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-04-28 00:01:35 +0000 |
commit | 00f77ef3b2b7856520daba393370f67b773c2184 (patch) | |
tree | ac5b63574a95d0d851e012957254f7456ced564f /extra/hylafax | |
parent | 5233daa5825f00ccf0722ef9733ea6b3bbd44bc8 (diff) |
Sat Apr 28 00:01:35 UTC 2012
Diffstat (limited to 'extra/hylafax')
-rw-r--r-- | extra/hylafax/PKGBUILD | 17 | ||||
-rw-r--r-- | extra/hylafax/config.local | 12 | ||||
-rw-r--r-- | extra/hylafax/faxq.service | 9 | ||||
-rw-r--r-- | extra/hylafax/hfaxd.service | 9 |
4 files changed, 36 insertions, 11 deletions
diff --git a/extra/hylafax/PKGBUILD b/extra/hylafax/PKGBUILD index b086a4621..2c1aeaba5 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') 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 |