From: Jeroen Roovers Date: Sun, 17 May 2020 12:05:59 +0000 (+0200) Subject: net-mail/mboxgrep: Fix building with CFLAGS=-fno-common X-Git-Url: http://git.tremily.us/?p=gentoo.git;a=commitdiff_plain;h=8c4407a0939ac072040c56f2f00b60fdc7e11176 net-mail/mboxgrep: Fix building with CFLAGS=-fno-common Also: - Add missing dependencies - EAPI=7 - New HOMEPAGE - Use _DEFAULT_SOURCE to suppress compiler warning Package-Manager: Portage-2.3.99, Repoman-2.3.22 Closes: https://bugs.gentoo.org/707224 Signed-off-by: Jeroen Roovers --- diff --git a/net-mail/mboxgrep/files/mboxgrep-0.7.9-_DEFAULT_SOURCE.patch b/net-mail/mboxgrep/files/mboxgrep-0.7.9-_DEFAULT_SOURCE.patch new file mode 100644 index 000000000000..fe7ffec2d578 --- /dev/null +++ b/net-mail/mboxgrep/files/mboxgrep-0.7.9-_DEFAULT_SOURCE.patch @@ -0,0 +1,11 @@ +--- a/src/misc.c ++++ b/src/misc.c +@@ -19,7 +19,7 @@ + $Id: misc.c,v 1.13 2003/04/06 21:01:49 dspiljar Exp $ */ + + #define _XOPEN_SOURCE /* Pull in strptime(3) from time.h */ +-#define _BSD_SOURCE /* Compensate for _XOPEN_SOURCE to pull in strdup(3) ++#define _DEFAULT_SOURCE /* Compensate for _XOPEN_SOURCE to pull in strdup(3) + * from string.h. */ + + #include diff --git a/net-mail/mboxgrep/files/mboxgrep-0.7.9-fno-common.patch b/net-mail/mboxgrep/files/mboxgrep-0.7.9-fno-common.patch new file mode 100644 index 000000000000..09c8388998cb --- /dev/null +++ b/net-mail/mboxgrep/files/mboxgrep-0.7.9-fno-common.patch @@ -0,0 +1,20 @@ +--- a/src/mboxgrep.h ++++ b/src/mboxgrep.h +@@ -129,6 +129,6 @@ + } + option_t; + +-option_t config; ++extern option_t config; + + #endif /* MBOXGREP_H */ +--- a/src/main.c ++++ b/src/main.c +@@ -57,6 +57,7 @@ + int count = 0; + void *tmpp; + checksum_t *cs; ++option_t config; + + int + main (int argc, char **argv) diff --git a/net-mail/mboxgrep/mboxgrep-0.7.9-r2.ebuild b/net-mail/mboxgrep/mboxgrep-0.7.9-r2.ebuild new file mode 100644 index 000000000000..5e42763bd887 --- /dev/null +++ b/net-mail/mboxgrep/mboxgrep-0.7.9-r2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Grep for mbox files" +SRC_URI="mirror://sourceforge/mboxgrep/${P}.tar.gz" +HOMEPAGE="https://datatipp.se/mboxgrep/" + +SLOT="0" +LICENSE="GPL-2+" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="dmalloc" + +RDEPEND=" + app-arch/bzip2 + dev-libs/libpcre + sys-libs/zlib + dmalloc? ( dev-libs/dmalloc ) +" +DEPEND=" + ${RDEPEND} +" +PATCHES=( + "${FILESDIR}"/${P}-_DEFAULT_SOURCE.patch + "${FILESDIR}"/${P}-fno-common.patch + "${FILESDIR}"/${P}-ldflags.patch +) + +src_configure() { + econf \ + $(use_with dmalloc no yes) +} + +src_install() { + emake \ + prefix="${D}"/usr \ + mandir="${D}"/usr/share/man \ + infodir="${D}"/usr/share/info \ + install + dodoc ChangeLog NEWS TODO README +} diff --git a/net-mail/mboxgrep/metadata.xml b/net-mail/mboxgrep/metadata.xml index dff8618ac7eb..63436f59f911 100644 --- a/net-mail/mboxgrep/metadata.xml +++ b/net-mail/mboxgrep/metadata.xml @@ -2,6 +2,9 @@ + +Enable debugging using dev-libs/dmalloc + mboxgrep