# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/sloccount/sloccount-2.22.ebuild,v 1.6 2004/03/12 09:18:44 mr_bones_ Exp $ inherit eutils DESCRIPTION="tools for counting Source Lines of Code (SLOC) for a large number of languages" HOMEPAGE="http://www.dwheeler.com/sloccount/" SRC_URI="http://www.dwheeler.com/sloccount/${P}.tar.gz" LICENSE="GPL-1" SLOT="0" KEYWORDS="x86" DEPEND="dev-lang/perl >=sys-apps/sed-4 app-shells/bash" src_unpack() { unpack ${A} cd ${S} # Patch to move most of the executables out of /usr/bin # and into /usr/libexec/sloccount to avoid conflicts. epatch ${FILESDIR}/${P}-libexec.patch sed -i \ -e "/^CC/ { s/$/ ${CFLAGS}/g }" \ -e "/^DOC_DIR/ { s/-\$(RPM_VERSION)//g }" \ -e "/^MYDOCS/ { s/[^ =]\+\.html//g }" \ makefile || die "sed makefile failed" } src_compile() { emake || die "make failed" } src_install() { einstall PREFIX=${D}/usr || die prepalldocs dohtml *html }