blob: 13f663d8b52db7dfbb6d833257dbca92fd46e2e8 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils flag-o-matic
IUSE=""
DESCRIPTION="Nagios Console"
HOMEPAGE="http://www.vanheusden.com/nagcon/"
SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
DEPEND="sys-libs/ncurses virtual/libstdc++"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}.patch
}
src_compile() {
# TODO: fix CXXFLAGS in Makefile
emake || die "make failed"
}
src_install() {
dobin nagcon
dodoc readme.txt
}
|