blob: 99f5fd05f0d5de2ff605b908da554af66b882309 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pinger/pinger-0.32c.ebuild,v 1.4 2008/04/22 13:33:05 drac Exp $
inherit eutils autotools
DESCRIPTION="Cyclic multi ping utility for selected adresses using GTK/ncurses."
HOMEPAGE="http://aa.vslib.cz/silk/projekty/pinger/index.php"
SRC_URI="http://aa.vslib.cz/silk/projekty/pinger/download/${P}.tar.gz
mirror://gentoo/gtk-2.0-for-pinger.m4.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="gtk nls"
RDEPEND="gtk? ( >=x11-libs/gtk+-2.4 )
sys-libs/ncurses"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/disable_gtk.patch
cp "${WORKDIR}"/gtk-2.0-for-pinger.m4 m4/
AT_M4DIR="m4" eautoreconf
}
src_compile() {
! use nls && myconf="${myconf} --disable-nls"
econf \
$(use_enable gtk) \
${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS BUGS ChangeLog NEWS README
use gtk || rm "${D}"/usr/bin/gtkpinger
}
|