blob: 1f155a9658a59624c6200b71869b0710f133c000 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/diffstat/diffstat-1.29.ebuild,v 1.7 2003/02/13 11:50:44 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="diffstat reads the output of diff and displays a histogram of the insertions, deletions, and modifications per-file"
SRC_URI="ftp://invisible-island.net/${PN}/${PN}.tar.gz"
HOMEPAGE="http://dickey.his.com/diffstat/diffstat.html"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 sparc "
DEPEND="sys-apps/diffutils"
src_compile() {
econf || die
export CFLAGS="-Wshadow -Wconversion -Wstrict-prototypes -Wmissing-prototypes ${CFLAGS}"
make || die
}
src_install() {
dobin diffstat
doman diffstat.1
dodoc README CHANGES
}
|