blob: 073f2e2b4cc0c9d232ee478173f7bf1a7773b87d (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/mulk/mulk-0.7.0.ebuild,v 1.1 2012/12/29 17:14:37 hwoarang Exp $
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 )
)"
REQUIRE_USE="checksum? ( metalink )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_configure() {
econf \
$(use_enable debug) \
$(use_enable metalink) \
$(use metalink && use checksum && echo --enable-checksum)
}
|