diff options
author | 2003-11-19 19:55:05 +0000 | |
---|---|---|
committer | 2003-11-19 19:55:05 +0000 | |
commit | 5efdbf1a862ca0205ec980fe5d1c2584b94761a1 (patch) | |
tree | a30a272fcb477d1ad2e7766fec25dc9101c78fea /sys-apps/at/at-3.1.8-r6.ebuild | |
parent | non-existant packages, removing (diff) | |
download | gentoo-2-5efdbf1a862ca0205ec980fe5d1c2584b94761a1.tar.gz gentoo-2-5efdbf1a862ca0205ec980fe5d1c2584b94761a1.tar.bz2 gentoo-2-5efdbf1a862ca0205ec980fe5d1c2584b94761a1.zip |
remove old versions
Diffstat (limited to 'sys-apps/at/at-3.1.8-r6.ebuild')
-rw-r--r-- | sys-apps/at/at-3.1.8-r6.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/sys-apps/at/at-3.1.8-r6.ebuild b/sys-apps/at/at-3.1.8-r6.ebuild deleted file mode 100644 index 652385105901..000000000000 --- a/sys-apps/at/at-3.1.8-r6.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/at/at-3.1.8-r6.ebuild,v 1.11 2003/11/06 10:00:05 usata Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="Queues jobs for later execution" -SRC_URI="ftp://jurix.jura.uni-sb.de/pub/jurix/source/chroot/appl/at/${P}.tar.bz2 - ftp://jurix.jura.uni-sb.de/pub/jurix/source/chroot/appl/at/${P}.dif" -HOMEPAGE="ftp://jurix.jura.uni-sb.de/pub/jurix/source/chroot/appl/at/" -KEYWORDS="x86 amd64" -SLOT="0" -LICENSE="GPL-2" - -DEPEND="virtual/glibc >=sys-devel/flex-2.5.4a" -RDEPEND="virtual/glibc" - -src_unpack() { - unpack ${A} - cd ${S} - patch -p0 < ${DISTDIR}/${P}.dif || die - cp configure.in configure.orig - patch -p0 < ${FILESDIR}/${P}-configure.in-sendmail-gentoo.diff || die - patch -p0 < ${FILESDIR}/${P}-configure-sendmail-gentoo.diff || die -} - -src_compile() { - - ./configure --host=${CHOST/-pc/} --sysconfdir=/etc/at \ - --with-jobdir=/var/cron/atjobs \ - --with-atspool=/var/cron/atspool \ - --with-etcdir=/etc/at \ - --with-daemon_username=at \ - --with-daemon_groupname=at || die - emake || die -} - -src_install() { - - into /usr - chmod 755 batch - chmod 755 atrun - dobin at batch - fperms 4755 /usr/bin/at - dosym at /usr/bin/atrm - dosym at /usr/bin/atq - dosbin atd atrun - - for i in atjobs atspool - do - dodir /var/cron/${i} - fperms 700 /var/cron/${i} - fowners at:at /var/cron/${i} - touch ${D}/var/cron/${i}/.SEQ - done - - exeinto /etc/init.d - newexe ${FILESDIR}/atd.rc6 atd - insinto /etc/at - insopts -m 0644 - doins ${FILESDIR}/at.deny - doman at.1 at_allow.5 atd.8 atrun.8 - dodoc COPYING ChangeLog Copyright Problems README -} |