summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-09-11 13:26:33 +0200
committerMichał Górny <mgorny@gentoo.org>2019-09-11 18:20:29 +0200
commit14ecde10957d4def2e2b25c6337cdb9ac7d6d8fe (patch)
tree5207f677247073ae3f48fb4ce9137d794a6e043a /net-misc/mulk
parentnet-misc/hylafaxplus: Drop old (diff)
downloadgentoo-14ecde10957d4def2e2b25c6337cdb9ac7d6d8fe.tar.gz
gentoo-14ecde10957d4def2e2b25c6337cdb9ac7d6d8fe.tar.bz2
gentoo-14ecde10957d4def2e2b25c6337cdb9ac7d6d8fe.zip
net-misc/mulk: Drop old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-misc/mulk')
-rw-r--r--net-misc/mulk/Manifest1
-rw-r--r--net-misc/mulk/files/mulk-0.6.0-large-file.patch32
-rw-r--r--net-misc/mulk/mulk-0.6.0.ebuild43
3 files changed, 0 insertions, 76 deletions
diff --git a/net-misc/mulk/Manifest b/net-misc/mulk/Manifest
index d560144ac55f..228afabfc1a2 100644
--- a/net-misc/mulk/Manifest
+++ b/net-misc/mulk/Manifest
@@ -1,2 +1 @@
-DIST mulk-0.6.0.tar.gz 459141 BLAKE2B f63d2d78128e9f9cfa39107ec294d49d401fffe37883be41b9bab391c70751de1fdb955683c85f9491b0739c3e99fcde3525c54fcb3beb2e280851eac0c98d29 SHA512 9e42add34305b071ac5132c645be75d3666e2a47b6b3a7c7eb46b1fbc130db85bccdd31dd54586b20c4d3629f000219c630511d6f2a59d241d60afce2cfeee37
DIST mulk-0.7.0.tar.gz 487995 BLAKE2B 446cf6652f7a1736dc1fbadf7a4fca8941507fa02abdc6ff3871e1cbb7dcd341e00be03c0e0b860f4cfe70ce1241a90adbae15e947e958fe37fd206863aaa01e SHA512 e1c6cf14b0ee2e42d83c8ad33d011feec9eb192ea4f8495cc67926db934d7ac132dfea66e40c47844965321573bd5b0734e4b19fe34c97c38170ee0cf4643499
diff --git a/net-misc/mulk/files/mulk-0.6.0-large-file.patch b/net-misc/mulk/files/mulk-0.6.0-large-file.patch
deleted file mode 100644
index 801433080e46..000000000000
--- a/net-misc/mulk/files/mulk-0.6.0-large-file.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Index: mulk-0.6.0/lib/defines.h
-===================================================================
---- mulk-0.6.0.orig/lib/defines.h
-+++ mulk-0.6.0/lib/defines.h
-@@ -41,6 +41,12 @@
- #include <stdio.h>
- #include <string.h>
- #include <time.h>
-+#ifdef HAVE_STDINT_H
-+ #include <stdint.h>
-+#endif
-+#ifdef HAVE_INTTYPES_H
-+ #include <inttypes.h>
-+#endif
- #include <curl/curl.h>
- #include <curl/multi.h>
- #include <uriparser/Uri.h>
-Index: mulk-0.6.0/lib/m_malloc.c
-===================================================================
---- mulk-0.6.0.orig/lib/m_malloc.c
-+++ mulk-0.6.0/lib/m_malloc.c
-@@ -34,10 +34,6 @@
-
- #ifdef MULKDEBUG
-
--#ifdef HAVE_STDINT_H
--#include <stdint.h> /* for uint32_t */
--#endif
--
- #define HASH_TABLE_SIZE 131072 /* 2^17, use always power of 2 */
- #define HASH_CHUNK_SIZE 2048
- #define INC_INDEX(i) i = ((i == HASH_TABLE_SIZE-1) ? 0 : i+1)
diff --git a/net-misc/mulk/mulk-0.6.0.ebuild b/net-misc/mulk/mulk-0.6.0.ebuild
deleted file mode 100644
index af8c80b6d579..000000000000
--- a/net-misc/mulk/mulk-0.6.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit base
-
-MY_PV=${PV/_beta/}
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="Download agent similar to wget/curl"
-HOMEPAGE="http://mulk.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="checksum debug metalink"
-
-DEPEND="net-misc/curl
- app-text/htmltidy
- dev-libs/uriparser
- metalink? (
- media-libs/libmetalink
- checksum? ( dev-libs/openssl )
- )"
-
-REQUIRED_USE="checksum? ( metalink )"
-
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-large-file.patch
-)
-
-src_configure() {
- econf \
- $(use_enable debug) \
- $(use_enable metalink) \
- $(use metalink && use checksum && echo --enable-checksum)
-}