blob: e8bc60187217b1f483b2c331ccd8270a9dd681c2 (
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.2 2003/07/13 21:44:10 aliz 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/*
}
|