diff --git a/at/.footprint b/at/.footprint deleted file mode 100644 index a38e562d5..000000000 --- a/at/.footprint +++ /dev/null @@ -1,31 +0,0 @@ -drwxr-xr-x root/root etc/ --rw------- root/root 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-xr-x root/root 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/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/at.1.gz -lrwxrwxrwx root/root usr/man/man1/atq.1.gz -> at.1.gz -lrwxrwxrwx root/root usr/man/man1/atrm.1.gz -> at.1.gz -lrwxrwxrwx root/root usr/man/man1/batch.1.gz -> at.1.gz -drwxr-xr-x root/root usr/man/man5/ --rw-r--r-- root/root usr/man/man5/at_allow.5.gz -lrwxrwxrwx root/root usr/man/man5/at_deny.5.gz -> at_allow.5.gz -drwxr-xr-x root/root usr/man/man8/ --rw-r--r-- root/root usr/man/man8/atd.8.gz --rw-r--r-- root/root usr/man/man8/atrun.8.gz -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 var/ -drwxr-xr-x root/root var/spool/ -drwxr-xr-x root/root var/spool/cron/ -drwx------ daemon/daemon var/spool/cron/atjobs/ --rw------- daemon/daemon var/spool/cron/atjobs/.SEQ (EMPTY) -drwx------ daemon/daemon var/spool/cron/atspool/ diff --git a/at/.md5sum b/at/.md5sum deleted file mode 100644 index 76b4acb5b..000000000 --- a/at/.md5sum +++ /dev/null @@ -1,2 +0,0 @@ -81dbae5162aaa8a398a81424d6631c77 at_3.1.8-11.tar.gz -16b912119fbeb370ccbeba243538d0e8 atd diff --git a/at/Pkgfile b/at/Pkgfile deleted file mode 100644 index 59f977695..000000000 --- a/at/Pkgfile +++ /dev/null @@ -1,29 +0,0 @@ -# Description: With at/atrun one can run commands at a specified time -# URL: N/A -# Maintainer: -# Packager: Olle Gustafsson, ogg at linux dot se -# Depends on: sendmail - -name=at -version=3.1.8 -release=2 -source=(http://ftp.sunet.se/pub/Linux/distributions/gentoo/distfiles/at_3.1.8-11.tar.gz atd) - -build() { - mkdir -p $PKG/etc/rc.d - install -m 755 atd $PKG/etc/rc.d/atd - cd $name-$version - ./configure --prefix=/usr \ - --disable-nls \ - --with-jobdir=/var/spool/cron/atjobs/ \ - --with-atspool=/var/spool/cron/atspool - make - make IROOT=$PKG install - cd $PKG/usr/man/man1 - ln -sf at.1.gz atq.1.gz - ln -sf at.1.gz atrm.1.gz - ln -sf at.1.gz batch.1.gz - cd $PKG/usr/man/man5 - ln -sf at_allow.5.gz at_deny.5.gz - rm -rf $PKG/usr/doc -} diff --git a/at/atd b/at/atd deleted file mode 100644 index 330a85b3b..000000000 --- a/at/atd +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -# -# /etc/rc.d/atd: start/stop atd daemon -# - -if [ "$1" = "start" ]; then - /usr/sbin/atd -elif [ "$1" = "stop" ]; then - killall -q /usr/sbin/atd -elif [ "$1" = "restart" ]; then - killall -q /usr/sbin/atd - /usr/sbin/atd -else - echo "usage: $0 start|stop|restart" -fi - -# End of file