* [gentoo-commits] proj/hardened-dev:uclibc commit in: sys-process/at/files/, sys-process/at/
@ 2013-02-25 2:09 Anthony G. Basile
0 siblings, 0 replies; 2+ messages in thread
From: Anthony G. Basile @ 2013-02-25 2:09 UTC (permalink / raw
To: gentoo-commits
commit: 22c9068586041053e2fb00ad8ea452d7f9ed1cf2
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 25 02:08:11 2013 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Feb 25 02:08:11 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=22c90685
sys-process/at: fix getloadavg for uclibc
---
sys-process/at/at-3.1.13-r99.ebuild | 81 ++++++++++++++++++++
...at-3.1.10.2-Makefile.in-parallel-make-fix.patch | 12 +++
sys-process/at/files/at-3.1.13-Makefile.patch | 29 +++++++
....1.13-configure.in-fix-PAM-automagick-dep.patch | 22 +++++
sys-process/at/files/at-3.1.13-getloadavg.patch | 19 +++++
.../at/files/at-3.1.13-parallel-make-fix.patch | 11 +++
sys-process/at/files/at-3.1.8-more-deny.patch | 20 +++++
sys-process/at/files/at.pamd-3.1.13-r1 | 9 ++
sys-process/at/files/atd.confd | 8 ++
sys-process/at/files/atd.rc6 | 21 +++++
sys-process/at/metadata.xml | 5 +
11 files changed, 237 insertions(+), 0 deletions(-)
diff --git a/sys-process/at/at-3.1.13-r99.ebuild b/sys-process/at/at-3.1.13-r99.ebuild
new file mode 100644
index 0000000..af42a25
--- /dev/null
+++ b/sys-process/at/at-3.1.13-r99.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.13-r1.ebuild,v 1.12 2013/02/18 17:57:48 swift Exp $
+
+EAPI=4
+
+inherit autotools eutils flag-o-matic pam
+
+DESCRIPTION="Queues jobs for later execution"
+HOMEPAGE="http://packages.qa.debian.org/a/at.html"
+SRC_URI="mirror://debian/pool/main/a/at/${PN}_${PV}.orig.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~x86"
+IUSE="pam selinux"
+
+DEPEND="virtual/mta
+ >=sys-devel/autoconf-2.64
+ sys-devel/bison
+ >=sys-devel/flex-2.5.4a
+ pam? ( virtual/pam )
+ selinux? ( sec-policy/selinux-at )"
+RDEPEND="virtual/mta
+ virtual/logger
+ selinux? ( sec-policy/selinux-at )"
+
+pkg_setup() {
+ enewgroup at 25
+ enewuser at 25 -1 /var/spool/at/atjobs at
+}
+
+src_prepare() {
+ epatch "${FILESDIR}"/${PN}-3.1.8-more-deny.patch
+ epatch "${FILESDIR}"/${PN}-3.1.13-Makefile.patch
+ # fix parallel make issues, bug #244884
+ epatch "${FILESDIR}"/${PN}-3.1.10.2-Makefile.in-parallel-make-fix.patch
+ epatch "${FILESDIR}"/${P}-configure.in-fix-PAM-automagick-dep.patch
+ # Fix parallel make issue (bug #408375)
+ epatch "${FILESDIR}"/${PN}-3.1.13-parallel-make-fix.patch
+ epatch "${FILESDIR}"/${PN}-3.1.13-getloadavg.patch
+
+ eautoconf
+}
+
+src_configure() {
+ use pam || my_conf="--without-pam"
+ econf \
+ --sysconfdir=/etc/at \
+ --with-jobdir=/var/spool/at/atjobs \
+ --with-atspool=/var/spool/at/atspool \
+ --with-etcdir=/etc/at \
+ --with-daemon_username=at \
+ --with-daemon_groupname=at \
+ ${my_conf}
+}
+
+src_install() {
+ emake install IROOT="${D}" || die
+
+ newinitd "${FILESDIR}"/atd.rc6 atd
+ newconfd "${FILESDIR}"/atd.confd atd
+ newpamd "${FILESDIR}"/at.pamd-3.1.13-r1 atd
+
+ # Preserve existing .SEQ files (bug #386625)
+ local seq_file="${ROOT}/var/spool/at/atjobs/.SEQ"
+ if [ -f "${seq_file}" ] ; then
+ einfo "Preserving existing .SEQ file (bug #386625)."
+ cp -p "${seq_file}" "${D}"/var/spool/at/atjobs/ || die
+ fi
+}
+
+pkg_postinst() {
+ einfo "Forcing correct permissions on /var/spool/at"
+ chown at:at "${ROOT}/var/spool/at/atjobs"
+ chmod 1770 "${ROOT}/var/spool/at/atjobs"
+ chown at:at "${ROOT}/var/spool/at/atjobs/.SEQ"
+ chmod 0600 "${ROOT}/var/spool/at/atjobs/.SEQ"
+ chown at:at "${ROOT}/var/spool/at/atspool"
+ chmod 1770 "${ROOT}/var/spool/at/atspool"
+}
diff --git a/sys-process/at/files/at-3.1.10.2-Makefile.in-parallel-make-fix.patch b/sys-process/at/files/at-3.1.10.2-Makefile.in-parallel-make-fix.patch
new file mode 100644
index 0000000..8fd82e6
--- /dev/null
+++ b/sys-process/at/files/at-3.1.10.2-Makefile.in-parallel-make-fix.patch
@@ -0,0 +1,12 @@
+diff -Naur at-3.1.10.2.orig/Makefile.in at-3.1.10.2/Makefile.in
+--- at-3.1.10.2.orig/Makefile.in 2009-01-31 15:38:54.000000000 +0100
++++ at-3.1.10.2/Makefile.in 2009-01-31 15:39:22.000000000 +0100
+@@ -78,7 +78,7 @@
+ y.tab.c y.tab.h: parsetime.y
+ $(YACC) -d parsetime.y
+
+-lex.yy.c: parsetime.l
++lex.yy.c: parsetime.l y.tab.h
+ $(LEX) -i parsetime.l
+
+ atrun: atrun.in
diff --git a/sys-process/at/files/at-3.1.13-Makefile.patch b/sys-process/at/files/at-3.1.13-Makefile.patch
new file mode 100644
index 0000000..d9b1acf
--- /dev/null
+++ b/sys-process/at/files/at-3.1.13-Makefile.patch
@@ -0,0 +1,29 @@
+# - install into Gentoo/FHS doc dir
+# - respect Gentoo LDFLAGS
+# - dont allow install to strip binaries
+
+--- at-3.1.13/Makefile.in
++++ at-3.1.13/Makefile.in
+@@ -12,8 +12,11 @@
+ man1dir = $(mandir)/man1
+ man5dir = $(mandir)/man5
+ man8dir = $(mandir)/man8
+-docdir = $(prefix)/doc
+-atdocdir = $(docdir)/at
++ifndef PF
++PF = at-$(VERSION)
++endif
++docdir = $(prefix)/share/doc
++atdocdir = $(docdir)/$(PF)
+ etcdir = @ETCDIR@
+
+ DAEMON_USERNAME = @DAEMON_USERNAME@
+@@ -35,7 +38,7 @@
+ -DDAEMON_USERNAME=\"$(DAEMON_USERNAME)\" \
+ -DDAEMON_GROUPNAME=\"$(DAEMON_GROUPNAME)\" \
+ -DLFILE=\"$(LFILE)\" -Wall
+-LIBS = @LIBS@
++LIBS = @LIBS@ @LDFLAGS@
+ LIBOBJS = @LIBOBJS@
+ INSTALL = @INSTALL@
+ PAMLIB = @PAMLIB@
diff --git a/sys-process/at/files/at-3.1.13-configure.in-fix-PAM-automagick-dep.patch b/sys-process/at/files/at-3.1.13-configure.in-fix-PAM-automagick-dep.patch
new file mode 100644
index 0000000..ee24b7f
--- /dev/null
+++ b/sys-process/at/files/at-3.1.13-configure.in-fix-PAM-automagick-dep.patch
@@ -0,0 +1,22 @@
+--- at-3.1.13/configure.ac
++++ at-3.1.13/configure.ac
+@@ -82,10 +82,15 @@
+ AC_FUNC_VPRINTF
+ AC_FUNC_GETLOADAVG
+ AC_CHECK_FUNCS(getcwd mktime strftime setreuid setresuid sigaction waitpid)
+-AC_CHECK_HEADERS(security/pam_appl.h, [
+- PAMLIB="-lpam"
+- AC_DEFINE(HAVE_PAM, 1, [Define to 1 for PAM support])
+-])
++AC_ARG_WITH([pam], AS_HELP_STRING([--without-pam],
++ [Build without PAM support(default: enabled)]))
++
++if test "x$with_pam" != "xno"; then
++ AC_CHECK_HEADERS(security/pam_appl.h, [
++ PAMLIB="-lpam"
++ AC_DEFINE(HAVE_PAM, 1, [Define to 1 for PAM support])
++ ])
++fi
+
+ dnl Checking for programs
+
diff --git a/sys-process/at/files/at-3.1.13-getloadavg.patch b/sys-process/at/files/at-3.1.13-getloadavg.patch
new file mode 100644
index 0000000..7de085d
--- /dev/null
+++ b/sys-process/at/files/at-3.1.13-getloadavg.patch
@@ -0,0 +1,19 @@
+diff --git a/getloadavg.c b/getloadavg.c
+index cf5869f..c7e2b27 100644
+--- a/getloadavg.c
++++ b/getloadavg.c
+@@ -69,8 +69,12 @@ Boston, MA 02110-1301 USA */
+ #include <config.h>
+ #endif
+
+-#include "lisp.h"
+-#include "sysfile.h" /* for encapsulated open, close, read, write */
++#include <sys/types.h>
++#include <sys/stat.h>
++#include <fcntl.h>
++
++//#include "lisp.h"
++//#include "sysfile.h" /* for encapsulated open, close, read, write */
+
+ #ifndef HAVE_GETLOADAVG
+
diff --git a/sys-process/at/files/at-3.1.13-parallel-make-fix.patch b/sys-process/at/files/at-3.1.13-parallel-make-fix.patch
new file mode 100644
index 0000000..dec02e4
--- /dev/null
+++ b/sys-process/at/files/at-3.1.13-parallel-make-fix.patch
@@ -0,0 +1,11 @@
+--- at-3.1.13_orig/Makefile.in 2011-06-25 14:43:14.000000000 +0200
++++ at-3.1.13/Makefile.in 2012-03-16 17:23:26.210267660 +0100
+@@ -73,7 +73,7 @@
+ atd: $(RUNOBJECTS)
+ $(CC) $(CFLAGS) -o atd $(RUNOBJECTS) $(LIBS) $(PAMLIB)
+
+-y.tab.c y.tab.h: parsetime.y
++%.tab.c %.tab.h: parsetime.y
+ $(YACC) -d parsetime.y
+
+ lex.yy.c: parsetime.l
diff --git a/sys-process/at/files/at-3.1.8-more-deny.patch b/sys-process/at/files/at-3.1.8-more-deny.patch
new file mode 100644
index 0000000..006713b
--- /dev/null
+++ b/sys-process/at/files/at-3.1.8-more-deny.patch
@@ -0,0 +1,20 @@
+--- at.deny
++++ at.deny
+@@ -10,6 +10,8 @@
+ lp
+ mail
+ man
++mysql
++news
+ nobody
+ operator
+ proxy
+@@ -19,6 +21,8 @@
+ qmailq
+ qmailr
+ qmails
++squid
+ sync
+ sys
++uucp
+ www-data
diff --git a/sys-process/at/files/at.pamd-3.1.13-r1 b/sys-process/at/files/at.pamd-3.1.13-r1
new file mode 100644
index 0000000..5c529c1
--- /dev/null
+++ b/sys-process/at/files/at.pamd-3.1.13-r1
@@ -0,0 +1,9 @@
+#
+# The PAM configuration file for the at daemon
+#
+
+auth required pam_env.so
+auth include system-services
+account include system-services
+session include system-services
+
diff --git a/sys-process/at/files/atd.confd b/sys-process/at/files/atd.confd
new file mode 100644
index 0000000..db42ea5
--- /dev/null
+++ b/sys-process/at/files/atd.confd
@@ -0,0 +1,8 @@
+#!/sbin/runscript
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/at/files/atd.confd,v 1.1 2011/04/17 22:46:40 jer Exp $
+
+# Define startup options for atd(8).
+# For example: ATD_OPTS="-l 3.0 -b 5"
+ATD_OPTS=""
diff --git a/sys-process/at/files/atd.rc6 b/sys-process/at/files/atd.rc6
new file mode 100755
index 0000000..8c89ad5
--- /dev/null
+++ b/sys-process/at/files/atd.rc6
@@ -0,0 +1,21 @@
+#!/sbin/runscript
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/at/files/atd.rc6,v 1.3 2011/09/23 12:04:44 polynomial-c Exp $
+
+depend() {
+ need clock logger
+}
+
+start() {
+ ebegin "Starting atd"
+ start-stop-daemon --start --quiet --pidfile /var/run/atd.pid \
+ --exec /usr/sbin/atd -- ${ATD_OPTS}
+ eend $?
+}
+
+stop() {
+ ebegin "Shutting down atd"
+ start-stop-daemon --stop --quiet --pidfile /var/run/atd.pid
+ eend $?
+}
diff --git a/sys-process/at/metadata.xml b/sys-process/at/metadata.xml
new file mode 100644
index 0000000..3f399e9
--- /dev/null
+++ b/sys-process/at/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>cron</herd>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] proj/hardened-dev:uclibc commit in: sys-process/at/files/, sys-process/at/
@ 2013-02-26 21:01 Anthony G. Basile
0 siblings, 0 replies; 2+ messages in thread
From: Anthony G. Basile @ 2013-02-26 21:01 UTC (permalink / raw
To: gentoo-commits
commit: 277210b3cfb062a3f5d568040d38f5b6ab9b8676
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 26 20:46:18 2013 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Tue Feb 26 20:46:18 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=277210b3
sys-process/at: fix moved to tree
---
sys-process/at/at-3.1.13-r99.ebuild | 81 --------------------
...at-3.1.10.2-Makefile.in-parallel-make-fix.patch | 12 ---
sys-process/at/files/at-3.1.13-Makefile.patch | 29 -------
....1.13-configure.in-fix-PAM-automagick-dep.patch | 22 -----
sys-process/at/files/at-3.1.13-getloadavg.patch | 19 -----
.../at/files/at-3.1.13-parallel-make-fix.patch | 11 ---
sys-process/at/files/at-3.1.8-more-deny.patch | 20 -----
sys-process/at/files/at.pamd-3.1.13-r1 | 9 --
sys-process/at/files/atd.confd | 8 --
sys-process/at/files/atd.rc6 | 21 -----
sys-process/at/metadata.xml | 5 -
11 files changed, 0 insertions(+), 237 deletions(-)
diff --git a/sys-process/at/at-3.1.13-r99.ebuild b/sys-process/at/at-3.1.13-r99.ebuild
deleted file mode 100644
index af42a25..0000000
--- a/sys-process/at/at-3.1.13-r99.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.13-r1.ebuild,v 1.12 2013/02/18 17:57:48 swift Exp $
-
-EAPI=4
-
-inherit autotools eutils flag-o-matic pam
-
-DESCRIPTION="Queues jobs for later execution"
-HOMEPAGE="http://packages.qa.debian.org/a/at.html"
-SRC_URI="mirror://debian/pool/main/a/at/${PN}_${PV}.orig.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~x86"
-IUSE="pam selinux"
-
-DEPEND="virtual/mta
- >=sys-devel/autoconf-2.64
- sys-devel/bison
- >=sys-devel/flex-2.5.4a
- pam? ( virtual/pam )
- selinux? ( sec-policy/selinux-at )"
-RDEPEND="virtual/mta
- virtual/logger
- selinux? ( sec-policy/selinux-at )"
-
-pkg_setup() {
- enewgroup at 25
- enewuser at 25 -1 /var/spool/at/atjobs at
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-3.1.8-more-deny.patch
- epatch "${FILESDIR}"/${PN}-3.1.13-Makefile.patch
- # fix parallel make issues, bug #244884
- epatch "${FILESDIR}"/${PN}-3.1.10.2-Makefile.in-parallel-make-fix.patch
- epatch "${FILESDIR}"/${P}-configure.in-fix-PAM-automagick-dep.patch
- # Fix parallel make issue (bug #408375)
- epatch "${FILESDIR}"/${PN}-3.1.13-parallel-make-fix.patch
- epatch "${FILESDIR}"/${PN}-3.1.13-getloadavg.patch
-
- eautoconf
-}
-
-src_configure() {
- use pam || my_conf="--without-pam"
- econf \
- --sysconfdir=/etc/at \
- --with-jobdir=/var/spool/at/atjobs \
- --with-atspool=/var/spool/at/atspool \
- --with-etcdir=/etc/at \
- --with-daemon_username=at \
- --with-daemon_groupname=at \
- ${my_conf}
-}
-
-src_install() {
- emake install IROOT="${D}" || die
-
- newinitd "${FILESDIR}"/atd.rc6 atd
- newconfd "${FILESDIR}"/atd.confd atd
- newpamd "${FILESDIR}"/at.pamd-3.1.13-r1 atd
-
- # Preserve existing .SEQ files (bug #386625)
- local seq_file="${ROOT}/var/spool/at/atjobs/.SEQ"
- if [ -f "${seq_file}" ] ; then
- einfo "Preserving existing .SEQ file (bug #386625)."
- cp -p "${seq_file}" "${D}"/var/spool/at/atjobs/ || die
- fi
-}
-
-pkg_postinst() {
- einfo "Forcing correct permissions on /var/spool/at"
- chown at:at "${ROOT}/var/spool/at/atjobs"
- chmod 1770 "${ROOT}/var/spool/at/atjobs"
- chown at:at "${ROOT}/var/spool/at/atjobs/.SEQ"
- chmod 0600 "${ROOT}/var/spool/at/atjobs/.SEQ"
- chown at:at "${ROOT}/var/spool/at/atspool"
- chmod 1770 "${ROOT}/var/spool/at/atspool"
-}
diff --git a/sys-process/at/files/at-3.1.10.2-Makefile.in-parallel-make-fix.patch b/sys-process/at/files/at-3.1.10.2-Makefile.in-parallel-make-fix.patch
deleted file mode 100644
index 8fd82e6..0000000
--- a/sys-process/at/files/at-3.1.10.2-Makefile.in-parallel-make-fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur at-3.1.10.2.orig/Makefile.in at-3.1.10.2/Makefile.in
---- at-3.1.10.2.orig/Makefile.in 2009-01-31 15:38:54.000000000 +0100
-+++ at-3.1.10.2/Makefile.in 2009-01-31 15:39:22.000000000 +0100
-@@ -78,7 +78,7 @@
- y.tab.c y.tab.h: parsetime.y
- $(YACC) -d parsetime.y
-
--lex.yy.c: parsetime.l
-+lex.yy.c: parsetime.l y.tab.h
- $(LEX) -i parsetime.l
-
- atrun: atrun.in
diff --git a/sys-process/at/files/at-3.1.13-Makefile.patch b/sys-process/at/files/at-3.1.13-Makefile.patch
deleted file mode 100644
index d9b1acf..0000000
--- a/sys-process/at/files/at-3.1.13-Makefile.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-# - install into Gentoo/FHS doc dir
-# - respect Gentoo LDFLAGS
-# - dont allow install to strip binaries
-
---- at-3.1.13/Makefile.in
-+++ at-3.1.13/Makefile.in
-@@ -12,8 +12,11 @@
- man1dir = $(mandir)/man1
- man5dir = $(mandir)/man5
- man8dir = $(mandir)/man8
--docdir = $(prefix)/doc
--atdocdir = $(docdir)/at
-+ifndef PF
-+PF = at-$(VERSION)
-+endif
-+docdir = $(prefix)/share/doc
-+atdocdir = $(docdir)/$(PF)
- etcdir = @ETCDIR@
-
- DAEMON_USERNAME = @DAEMON_USERNAME@
-@@ -35,7 +38,7 @@
- -DDAEMON_USERNAME=\"$(DAEMON_USERNAME)\" \
- -DDAEMON_GROUPNAME=\"$(DAEMON_GROUPNAME)\" \
- -DLFILE=\"$(LFILE)\" -Wall
--LIBS = @LIBS@
-+LIBS = @LIBS@ @LDFLAGS@
- LIBOBJS = @LIBOBJS@
- INSTALL = @INSTALL@
- PAMLIB = @PAMLIB@
diff --git a/sys-process/at/files/at-3.1.13-configure.in-fix-PAM-automagick-dep.patch b/sys-process/at/files/at-3.1.13-configure.in-fix-PAM-automagick-dep.patch
deleted file mode 100644
index ee24b7f..0000000
--- a/sys-process/at/files/at-3.1.13-configure.in-fix-PAM-automagick-dep.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- at-3.1.13/configure.ac
-+++ at-3.1.13/configure.ac
-@@ -82,10 +82,15 @@
- AC_FUNC_VPRINTF
- AC_FUNC_GETLOADAVG
- AC_CHECK_FUNCS(getcwd mktime strftime setreuid setresuid sigaction waitpid)
--AC_CHECK_HEADERS(security/pam_appl.h, [
-- PAMLIB="-lpam"
-- AC_DEFINE(HAVE_PAM, 1, [Define to 1 for PAM support])
--])
-+AC_ARG_WITH([pam], AS_HELP_STRING([--without-pam],
-+ [Build without PAM support(default: enabled)]))
-+
-+if test "x$with_pam" != "xno"; then
-+ AC_CHECK_HEADERS(security/pam_appl.h, [
-+ PAMLIB="-lpam"
-+ AC_DEFINE(HAVE_PAM, 1, [Define to 1 for PAM support])
-+ ])
-+fi
-
- dnl Checking for programs
-
diff --git a/sys-process/at/files/at-3.1.13-getloadavg.patch b/sys-process/at/files/at-3.1.13-getloadavg.patch
deleted file mode 100644
index 7de085d..0000000
--- a/sys-process/at/files/at-3.1.13-getloadavg.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/getloadavg.c b/getloadavg.c
-index cf5869f..c7e2b27 100644
---- a/getloadavg.c
-+++ b/getloadavg.c
-@@ -69,8 +69,12 @@ Boston, MA 02110-1301 USA */
- #include <config.h>
- #endif
-
--#include "lisp.h"
--#include "sysfile.h" /* for encapsulated open, close, read, write */
-+#include <sys/types.h>
-+#include <sys/stat.h>
-+#include <fcntl.h>
-+
-+//#include "lisp.h"
-+//#include "sysfile.h" /* for encapsulated open, close, read, write */
-
- #ifndef HAVE_GETLOADAVG
-
diff --git a/sys-process/at/files/at-3.1.13-parallel-make-fix.patch b/sys-process/at/files/at-3.1.13-parallel-make-fix.patch
deleted file mode 100644
index dec02e4..0000000
--- a/sys-process/at/files/at-3.1.13-parallel-make-fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- at-3.1.13_orig/Makefile.in 2011-06-25 14:43:14.000000000 +0200
-+++ at-3.1.13/Makefile.in 2012-03-16 17:23:26.210267660 +0100
-@@ -73,7 +73,7 @@
- atd: $(RUNOBJECTS)
- $(CC) $(CFLAGS) -o atd $(RUNOBJECTS) $(LIBS) $(PAMLIB)
-
--y.tab.c y.tab.h: parsetime.y
-+%.tab.c %.tab.h: parsetime.y
- $(YACC) -d parsetime.y
-
- lex.yy.c: parsetime.l
diff --git a/sys-process/at/files/at-3.1.8-more-deny.patch b/sys-process/at/files/at-3.1.8-more-deny.patch
deleted file mode 100644
index 006713b..0000000
--- a/sys-process/at/files/at-3.1.8-more-deny.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- at.deny
-+++ at.deny
-@@ -10,6 +10,8 @@
- lp
- mail
- man
-+mysql
-+news
- nobody
- operator
- proxy
-@@ -19,6 +21,8 @@
- qmailq
- qmailr
- qmails
-+squid
- sync
- sys
-+uucp
- www-data
diff --git a/sys-process/at/files/at.pamd-3.1.13-r1 b/sys-process/at/files/at.pamd-3.1.13-r1
deleted file mode 100644
index 5c529c1..0000000
--- a/sys-process/at/files/at.pamd-3.1.13-r1
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# The PAM configuration file for the at daemon
-#
-
-auth required pam_env.so
-auth include system-services
-account include system-services
-session include system-services
-
diff --git a/sys-process/at/files/atd.confd b/sys-process/at/files/atd.confd
deleted file mode 100644
index db42ea5..0000000
--- a/sys-process/at/files/atd.confd
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/at/files/atd.confd,v 1.1 2011/04/17 22:46:40 jer Exp $
-
-# Define startup options for atd(8).
-# For example: ATD_OPTS="-l 3.0 -b 5"
-ATD_OPTS=""
diff --git a/sys-process/at/files/atd.rc6 b/sys-process/at/files/atd.rc6
deleted file mode 100755
index 8c89ad5..0000000
--- a/sys-process/at/files/atd.rc6
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/at/files/atd.rc6,v 1.3 2011/09/23 12:04:44 polynomial-c Exp $
-
-depend() {
- need clock logger
-}
-
-start() {
- ebegin "Starting atd"
- start-stop-daemon --start --quiet --pidfile /var/run/atd.pid \
- --exec /usr/sbin/atd -- ${ATD_OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Shutting down atd"
- start-stop-daemon --stop --quiet --pidfile /var/run/atd.pid
- eend $?
-}
diff --git a/sys-process/at/metadata.xml b/sys-process/at/metadata.xml
deleted file mode 100644
index 3f399e9..0000000
--- a/sys-process/at/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>cron</herd>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-02-26 21:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-25 2:09 [gentoo-commits] proj/hardened-dev:uclibc commit in: sys-process/at/files/, sys-process/at/ Anthony G. Basile
-- strict thread matches above, loose matches on Subject: below --
2013-02-26 21:01 Anthony G. Basile
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox