diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-04-28 09:54:45 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-04-28 09:54:45 +0100 |
commit | b7ebc951da8800f711142f69d9d958bde67a112d (patch) | |
tree | e318514216845acb8f2e49fff7a5cba4027e9d91 /mail-client/nmh | |
parent | dc7cbdfa65fd814b3b9aa3c56257da201109e807 (diff) |
gentoo resync : 28.04.2019
Diffstat (limited to 'mail-client/nmh')
-rw-r--r-- | mail-client/nmh/Manifest | 5 | ||||
-rw-r--r-- | mail-client/nmh/files/nmh-1.3-db5.patch | 17 | ||||
-rw-r--r-- | mail-client/nmh/files/nmh-1.6-m_getfld.patch | 25 | ||||
-rw-r--r-- | mail-client/nmh/metadata.xml | 5 | ||||
-rw-r--r-- | mail-client/nmh/nmh-1.6.ebuild | 72 |
5 files changed, 0 insertions, 124 deletions
diff --git a/mail-client/nmh/Manifest b/mail-client/nmh/Manifest deleted file mode 100644 index 91e76282c301..000000000000 --- a/mail-client/nmh/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX nmh-1.3-db5.patch 568 BLAKE2B e895827d406c581b61d46da4331618b044f66e29a1c4055949f10ead52a3a7971f9b181cb7e224cc1764c3de472b10cb14949a4a5f4b0853f6026aa7944a1604 SHA512 512838c9838124f29e5f3bf0f9ea6956d1fb0a231fd4301f78268b36f9d69dcfec2cdf5d798569b191752a654934acd68b8a8fa095385daa2daf127718fdf376 -AUX nmh-1.6-m_getfld.patch 487 BLAKE2B 915e8c29e4da161b56e960373f4f7d1a6d0122243dfa76fa4bfa9bcfb3bf9ab7b955103147d4aed9ef688800077569965bd287986687306c72ce8746d4ba8040 SHA512 a69417fb263b27c65b38778f01a4e08b82fccbb8134f490d01566de1c6275334a02ce25e0a1ab2b7dd47b1e4e1fddd29f8769931f650823cdfbfacd55e325e32 -DIST nmh-1.6.tar.gz 1197272 BLAKE2B eb3700864604ad739b1750045c933e04bc7d457db65e87eee1610e1a08dab03fba45726fbc785b4f29d84bf6720f1eae6c979aba74a5e538f5a0b833fc8e5903 SHA512 03775e73f69eb21088e191f41a0bbc2e631956f0d496f87be97981ac2c85d8cbe0680e8ee7e37f97e79c34ccd814fca78f2684acfc8390e333a46c710fbdb2b7 -EBUILD nmh-1.6.ebuild 1899 BLAKE2B ac85473dea528dee0c4caa3634265515823de892be08d15c4dfb7d7311fe1d919cacbe6f238c1138ce4f15524c98424ccd64568d011a120ced820a97a926e8c0 SHA512 aacdaf8012495b7b14cf3c6c96435c8e50cf274507c36b1d2f0c7a0b00561c000aa982701b8cf28881ab1367facabb827969825bdf625e850fbe0c21a2a0be1a -MISC metadata.xml 167 BLAKE2B e4dadf27fd344484f2bccb5b904909c89aac568c32e5b3c44bdf139eacefd4b4fae74419f503d2b7da0dccc1b68ba05d777d11292c0f89270d1ac5c9c703e8ca SHA512 7c8decb24ee3a850e38186cf3c7f8933a28017426806870ad6ef9ceb2533be147a2681fc789b535a81cb528af8c29d90d3006e4f250aee23bd7dea4561294e33 diff --git a/mail-client/nmh/files/nmh-1.3-db5.patch b/mail-client/nmh/files/nmh-1.3-db5.patch deleted file mode 100644 index 473e2b609aeb..000000000000 --- a/mail-client/nmh/files/nmh-1.3-db5.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git a/uip/slocal.c b/uip/slocal.c -index 9697d84..d38a020 100644 ---- a/uip/slocal.c -+++ b/uip/slocal.c -@@ -46,6 +46,12 @@ - extern int initgroups(char*, int); - #endif - -+/* This define is needed for Berkeley db v5 and above to -+ * make the header file expose the 'historical' ndbm APIs. -+ * We define it unconditionally because this is simple and -+ * harmless. -+ */ -+#define HAVE_DBM - /* This define is needed for Berkeley db v2 and above to - * make the header file expose the 'historical' ndbm APIs. - * We define it unconditionally because this is simple and diff --git a/mail-client/nmh/files/nmh-1.6-m_getfld.patch b/mail-client/nmh/files/nmh-1.6-m_getfld.patch deleted file mode 100644 index 36f207796646..000000000000 --- a/mail-client/nmh/files/nmh-1.6-m_getfld.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- nmh-1.6/sbr/m_getfld.c -+++ nmh-1.6/sbr/m_getfld.c -@@ -919,16 +919,16 @@ - register char *ep = pat + patln; - register char pc = *pat++; - -- for(;;) { -- while (pc != *str++) -- if (str > es) -- return 0; -+ for(; str <= es; str++) { -+ if (pc != *str) -+ continue; - if (str > es+1) - return 0; -- sp = str; pp = pat; -+ sp = str+1; pp = pat; - while (pp < ep && *sp++ == *pp) - pp++; - if (pp >= ep) -- return --str; -+ return ((unsigned char *)str); - } -+ return 0; - } diff --git a/mail-client/nmh/metadata.xml b/mail-client/nmh/metadata.xml deleted file mode 100644 index 7a38bb900964..000000000000 --- a/mail-client/nmh/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> - <!-- maintainer-needed --> -</pkgmetadata> diff --git a/mail-client/nmh/nmh-1.6.ebuild b/mail-client/nmh/nmh-1.6.ebuild deleted file mode 100644 index c64883e3515f..000000000000 --- a/mail-client/nmh/nmh-1.6.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="New MH mail reader" -HOMEPAGE="http://www.nongnu.org/nmh/" -SRC_URI="https://savannah.nongnu.org/download/nmh/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux" -IUSE="gdbm readline sasl ssl" - -# bug 295996: media-gfx/pixie also uses show -# bug 631662: sys-apps/pick also uses pick -# bug 555550: sci-mathematics/snns also uses scan -DEPEND="gdbm? ( sys-libs/gdbm ) - !gdbm? ( sys-libs/db:= ) - >=sys-libs/ncurses-5.2:0= - net-libs/liblockfile - readline? ( sys-libs/readline:0= ) - sasl? ( dev-libs/cyrus-sasl ) - ssl? ( dev-libs/openssl:0= ) - !!media-gfx/pixie - !!sys-apps/pick - !!sci-mathematics/snns -" -RDEPEND="${DEPEND} - virtual/editor - virtual/pager -" - -DOCS=( ChangeLog DATE MACHINES README ) - -PATCHES=( - # bug #57886 - "${FILESDIR}"/${P}-m_getfld.patch - # bug #319937 - "${FILESDIR}"/${PN}-1.3-db5.patch -) - -src_configure() { - # Bug 348816 & Bug 341741: The previous ebuild default of - # /usr/bin caused unnecessary conflicts with other - # packages. However, the default nmh libdir location causes - # problems with cross-compiling, so we use, eg., /usr/lib64. - # Users may use /usr/lib/nmh in scripts needing these support - # programs in normal environments. - local myconf=( - --prefix="${EPREFIX}"/usr - --libdir="${EPREFIX}"/usr/$(get_libdir)/nmh - --mandir="${EPREFIX}"/usr/share/man - --sysconfdir="${EPREFIX}"/etc/nmh - $(use_with sasl cyrus-sasl) - $(use_with ssl tls) - $(use_with readline) - ) - - # have gdbm use flag actually control which version of db in use - if use gdbm; then - myconf+=( --with-ndbmheader=gdbm/ndbm.h --with-ndbm=gdbm_compat ) - else - if has_version ">=sys-libs/db-2"; then - myconf+=( --with-ndbmheader=db.h --with-ndbm=db ) - else - myconf+=( --with-ndbmheader=db1/ndbm.h --with-ndbm=db1 ) - fi - fi - - econf "${myconf[@]}" -} |