diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-23 10:38:07 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-23 10:38:07 +0000 |
commit | 3f2be35377686d31df5a734264dda7cb03c20d1f (patch) | |
tree | eb0f206e9edf104c22f525e32efb0f82678e058d /dev-util/diffstat | |
parent | Added GNU GPL version 1 (diff) | |
download | historical-3f2be35377686d31df5a734264dda7cb03c20d1f.tar.gz historical-3f2be35377686d31df5a734264dda7cb03c20d1f.tar.bz2 historical-3f2be35377686d31df5a734264dda7cb03c20d1f.zip |
repoman'd
Diffstat (limited to 'dev-util/diffstat')
-rw-r--r-- | dev-util/diffstat/diffstat-1.29.ebuild | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/dev-util/diffstat/diffstat-1.29.ebuild b/dev-util/diffstat/diffstat-1.29.ebuild index ce94bc27528e..e12727d7b4a6 100644 --- a/dev-util/diffstat/diffstat-1.29.ebuild +++ b/dev-util/diffstat/diffstat-1.29.ebuild @@ -1,21 +1,26 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-util/diffstat/diffstat-1.29.ebuild,v 1.2 2002/07/11 06:30:25 drobbins Exp $ +# Copyright 1999-2002 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.3 2002/07/23 10:38:07 seemant 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/diffstat/diffstat.tar.gz" +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" + DEPEND="sys-apps/diffutils" -src_compile() { - ./configure --prefix=/usr --host="${CHOST}" - assert +src_compile() { - make CFLAGS="-Wshadow -Wconversion -Wstrict-prototypes -Wmissing-prototypes ${CFLAGS}" || die + econf || die + export CFLAGS="-Wshadow -Wconversion -Wstrict-prototypes -Wmissing-prototypes ${CFLAGS}" + make || die } -src_install() { +src_install() { dobin diffstat doman diffstat.1 dodoc README CHANGES |