blob: 08011896421bc3c4bf8528e43ec6a2a91d9f3619 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/microdc2/microdc2-0.15.6-r2.ebuild,v 1.1 2010/03/06 16:23:01 ssuominen Exp $
inherit autotools eutils
DESCRIPTION="A small command-line based Direct Connect client"
HOMEPAGE="http://corsair626.no-ip.org/microdc/"
SRC_URI="http://corsair626.no-ip.org/microdc/${P}.tar.gz
mirror://debian/pool/main/m/${PN}/${PN}_${PV}-1.debian.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls"
RDEPEND="app-arch/bzip2
>=dev-libs/libxml2-2.6.16
sys-libs/ncurses
>=sys-libs/readline-4"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd "${S}"
local dpatch="${WORKDIR}/debian/patches"
epatch \
"${dpatch}"/disable-libxml2-version-check \
"${dpatch}"/rename-manpage \
"${dpatch}"/disable-make-tthsum \
"${dpatch}"/debian-link-system-bz2
eautoreconf
}
src_compile() {
econf \
$(use_enable nls)
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README doc/*
}
|