app-admin/sysklogd: Fixing build issue with Glibc 2.24. bug #604232
authorRodrigo Saboya <saboya@users.noreply.github.com>
Mon, 16 Jan 2017 17:48:08 +0000 (15:48 -0200)
committerLars Wendler <polynomial-c@gentoo.org>
Tue, 17 Jan 2017 17:38:57 +0000 (18:38 +0100)
Closes: https://github.com/gentoo/gentoo/pull/3508

app-admin/sysklogd/files/sysklogd-1.5-glibc-2.24.patch [new file with mode: 0644]
app-admin/sysklogd/sysklogd-1.5.1-r1.ebuild [new file with mode: 0644]

diff --git a/app-admin/sysklogd/files/sysklogd-1.5-glibc-2.24.patch b/app-admin/sysklogd/files/sysklogd-1.5-glibc-2.24.patch
new file mode 100644 (file)
index 0000000..fcddb75
--- /dev/null
@@ -0,0 +1,11 @@
+--- sysklogd-1.5.1/syslogd.c
++++ sysklogd-1.5.1/syslogd.c
+@@ -2094,7 +2094,7 @@
+       (void) signal(SIGCHLD, reapchild);      /* reset signal handler -ASP */
+       wait ((int *)0);
+ #else
+-      union wait status;
++      int status;
+       while (wait3(&status, WNOHANG, (struct rusage *) NULL) > 0)
+               ;
diff --git a/app-admin/sysklogd/sysklogd-1.5.1-r1.ebuild b/app-admin/sysklogd/sysklogd-1.5.1-r1.ebuild
new file mode 100644 (file)
index 0000000..9fdc76a
--- /dev/null
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils flag-o-matic toolchain-funcs
+
+DEB_PV="1.5-6"
+DESCRIPTION="Standard log daemons"
+HOMEPAGE="http://www.infodrom.org/projects/sysklogd/"
+SRC_URI="http://www.infodrom.org/projects/sysklogd/download/${P}.tar.gz
+       mirror://debian/pool/main/s/sysklogd/${PN}_${DEB_PV}.diff.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE="logrotate"
+RESTRICT="test"
+
+DEPEND=""
+RDEPEND="dev-lang/perl
+       sys-apps/debianutils"
+
+src_prepare() {
+       epatch "${WORKDIR}"/${PN}_${DEB_PV}.diff
+
+       epatch "${FILESDIR}"/${PN}-1.5-debian-cron.patch
+       epatch "${FILESDIR}"/${PN}-1.5-build.patch
+
+       # CAEN/OWL security patches
+       epatch "${FILESDIR}"/${PN}-1.4.2-caen-owl-syslogd-bind.diff
+       epatch "${FILESDIR}"/${PN}-1.4.2-caen-owl-syslogd-drop-root.diff
+       epatch "${FILESDIR}"/${PN}-1.4.2-caen-owl-klogd-drop-root.diff
+
+       epatch "${FILESDIR}"/${PN}-1.5-syslog-func-collision.patch #342601
+       epatch "${FILESDIR}"/${PN}-1.5-glibc-2.24.patch #604232
+}
+
+src_configure() {
+       append-lfs-flags
+       tc-export CC
+}
+
+src_install() {
+       dosbin syslogd klogd debian/syslog-facility debian/syslogd-listfiles
+       doman *.[1-9] debian/syslogd-listfiles.8
+       insinto /etc
+       doins debian/syslog.conf
+       if use logrotate ; then
+               insinto /etc/logrotate.d
+               newins "${FILESDIR}"/sysklogd.logrotate sysklogd
+       else
+               exeinto /etc/cron.daily
+               newexe debian/cron.daily syslog
+               exeinto /etc/cron.weekly
+               newexe debian/cron.weekly syslog
+       fi
+       dodoc ANNOUNCE CHANGES NEWS README.1st README.linux
+       newinitd "${FILESDIR}"/sysklogd.rc7 sysklogd
+       newconfd "${FILESDIR}"/sysklogd.confd sysklogd
+}