blob: a9a77af5e9c8832acc492cb43f0943d37a84a6e3 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/linklint/linklint-2.3.4.ebuild,v 1.1 2003/06/08 17:19:06 avenj Exp $
DESCRIPTION="Linklint is a Perl program that checks links on web sites."
HOMEPAGE="http://www.mindspring.com/~bowlin/linklint/index.html"
SRC_URI="http://www.mindspring.com/~bowlin/linklint/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-lang/perl"
S=${WORKDIR}/${P}
src_install() {
exeinto /usr/bin
newexe ${P} linklint
dodoc INSTALL.unix INSTALL.windows LICENSE.txt READ_ME.txt CHANGES.txt
dohtml doc/*
}
|