summaryrefslogtreecommitdiff
blob: 7aba3f1bc4489cbb9c4258a1fb2dae3a8d198d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

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"
S="${WORKDIR}/${MY_P}"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="checksum debug metalink"
REQUIRED_USE="checksum? ( metalink )"

DEPEND="
	app-text/htmltidy
	dev-libs/uriparser
	net-misc/curl
	sys-devel/gettext
	virtual/libiconv
	virtual/libintl
	metalink? (
		media-libs/libmetalink
		checksum? ( dev-libs/openssl )
	)
"
RDEPEND="${DEPEND}"

PATCHES=(
	"${FILESDIR}/${PN}-0.7.0-musl-locale.patch"
)

src_configure() {
	local checksum=

	if use metalink && use checksum ; then
		checksum="--enable-checksum"
	fi

	econf \
		$(use_enable debug) \
		$(use_enable metalink) \
		"${checksum}"
}

src_install() {
	default

	# Remove static libraries
	find "${ED}" -name '*.a' -delete || die
	# and libtool archives
	find "${ED}" -name '*.la' -delete || die
}