blob: e851fcc0cd9deb471e19d215d5717dc65d9a7f7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/indent/indent-2.2.9.ebuild,v 1.11 2004/03/09 04:51:08 geoman Exp $
DESCRIPTION="Indent program source files"
HOMEPAGE="http://www.gnu.org/software/indent/indent.html"
SRC_URI="mirror://gnu/indent/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha hppa amd64 ia64 ~mips"
DEPEND="virtual/glibc"
src_install() {
make install DESTDIR=${D} || die
dodoc AUTHORS COPYING NEWS README*
dodoc ${D}/usr/doc/indent/*
rm -rf ${D}/usr/doc
}
|