blob: 52eb2b15c1b4ab1ea4da4627095d2481e72d7782 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mirmon/mirmon-1.38.ebuild,v 1.1 2008/01/18 18:56:43 armin76 Exp $
inherit webapp
DESCRIPTION="Monitor the status of mirrors"
HOMEPAGE="http://www.cs.uu.nl/people/henkp/mirmon/"
SRC_URI="http://www.cs.uu.nl/people/henkp/$PN/src/$P.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
DEPEND=">=dev-lang/perl-5.8.5-r2"
src_install() {
webapp_src_preinst
for file in mirmon.html mirmon.txt; do
dodoc ${file}
rm -f ${file}
done
cp -R . "${D}"/${MY_HTDOCSDIR}
webapp_src_install
}
|