SHA256
1
0
forked from pool/uucp
uucp/uucpman.sh
Dr. Werner Fink def3280df7 Accepting request 402727 from home:scarabeus_iv
- Switch from uucp xinetd to systemd activated service
- Switch from suucp stunnel service to systemd service properly
  initing the stunnel

- Split out from sendmail package
- Cleanup to use proper deps and only depend on what's needed in which
  scriptlet
- Use %configure macro and friends
- Use just make_install and describe what is going in the install phase

OBS-URL: https://build.opensuse.org/request/show/402727
OBS-URL: https://build.opensuse.org/package/show/server:mail/uucp?expand=0&rev=4
2016-07-07 08:19:15 +00:00

16 lines
388 B
Bash

#!/bin/bash
for man in uucp.1 uux.1 uustat.1 uuname.1 uulog.1 uuto.1 uupick.1 \
cu.1 uucico.8 uuxqt.8 uuchk.1 uuconv.1 uusched.8
do
test -e $man && continue
touch .#$man
( echo NAME
echo "${man%.[0-9]} - "
echo SYNOPSIS
info -f ./uucp.info "Invoking ${man%.[0-9]}" | tail -n +5 ) | \
rman -n ${man%.[0-9]} -s ${man#*.} -K -f roff > $man
echo $man
done