at: deleted unmaintained port

This commit is contained in:
Tim Biermann 2021-03-08 18:34:03 +00:00
parent e135c5f630
commit 245e4be4e6
Signed by: tb
GPG Key ID: 42F8B4E30B673606
4 changed files with 0 additions and 85 deletions

View File

@ -1,32 +0,0 @@
drwxr-xr-x root/root etc/
-rw-r----- root/daemon etc/at.deny
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/atd
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwsr-sr-x daemon/daemon usr/bin/at
lrwxrwxrwx root/root usr/bin/atq -> at
lrwxrwxrwx root/root usr/bin/atrm -> at
-rwxr-xr-x root/root usr/bin/batch
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/atd
-rwxr-xr-x root/root usr/sbin/atrun
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/at.1.gz
lrwxrwxrwx root/root usr/share/man/man1/atq.1.gz -> at.1.gz
lrwxrwxrwx root/root usr/share/man/man1/atrm.1.gz -> at.1.gz
lrwxrwxrwx root/root usr/share/man/man1/batch.1.gz -> at.1.gz
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/at.allow.5.gz
lrwxrwxrwx root/root usr/share/man/man5/at.deny.5.gz -> at.allow.5.gz
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/atd.8.gz
-rw-r--r-- root/root usr/share/man/man8/atrun.8.gz
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/spool/
drwxr-xr-x root/root var/spool/cron/
drwxrwx--T daemon/daemon var/spool/cron/atjobs/
-rw------- daemon/daemon var/spool/cron/atjobs/.SEQ (EMPTY)
drwxrwx--T daemon/daemon var/spool/cron/atspool/

View File

@ -1,6 +0,0 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF30qd22CEggf28idES26NayF87YHANwzIAHpRKDWwfOrm9sTNlyuTniIIrYemfmcHmjsTvj4HB2VXpi2cWVX4rQw=
SHA256 (Pkgfile) = 23f2982709b858203b6ce131634cdb837d115bb48c1c6774aa78c0a5819f0789
SHA256 (.footprint) = 60feeb0ada64af8cf2577b02f5735b8ea2786da8ccd3ae9e67aa5e6103730bb5
SHA256 (at_3.2.1.orig.tar.gz) = aabe6e5cb6dd19fe9fb25c2747492f2db38762b95ea41b86f949609c39fb55c4
SHA256 (atd) = 832b65588cde8e9f13afb314c6546186d554bb459d04d98e9e4d5a95a6f10b01

View File

@ -1,24 +0,0 @@
# Description: at, batch - queue, examine or delete jobs for later execution
# URL: http://blog.calhariz.com/index.php/tag/at
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
# Depends on: exim
name=at
version=3.2.1
release=1
source=(http://software.calhariz.com/at/${name}_$version.orig.tar.gz
atd)
build() {
cd $name-$version
SENDMAIL=/usr/sbin/sendmail \
CONFIG_SHELL=/bin/bash \
./configure --prefix=/usr
make -j1
make IROOT=$PKG install
rm -r $PKG/usr/doc
install -D -m 0755 $SRC/atd $PKG/etc/rc.d/atd
}

23
at/atd
View File

@ -1,23 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/atd: start/stop at daemon
#
case $1 in
start)
/usr/sbin/atd
;;
stop)
killall -q /usr/sbin/atd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file