summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-12-05 09:56:20 +0000
committerMike Frysinger <vapier@gentoo.org>2003-12-05 09:56:20 +0000
commit386b555e7b9f9b47b41df9a99077d0425314ddcb (patch)
treec3eea7c63877b5c5d7a0894912c800711556da8b /dev-util/indent
parentold (diff)
downloadgentoo-2-386b555e7b9f9b47b41df9a99077d0425314ddcb.tar.gz
gentoo-2-386b555e7b9f9b47b41df9a99077d0425314ddcb.tar.bz2
gentoo-2-386b555e7b9f9b47b41df9a99077d0425314ddcb.zip
fix installing files into /usr/doc
Diffstat (limited to 'dev-util/indent')
-rw-r--r--dev-util/indent/indent-2.2.9.ebuild20
1 files changed, 8 insertions, 12 deletions
diff --git a/dev-util/indent/indent-2.2.9.ebuild b/dev-util/indent/indent-2.2.9.ebuild
index 5028117dd287..440329231a7b 100644
--- a/dev-util/indent/indent-2.2.9.ebuild
+++ b/dev-util/indent/indent-2.2.9.ebuild
@@ -1,24 +1,20 @@
# Copyright 1999-2003 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.9 2003/09/24 22:04:51 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/indent/indent-2.2.9.ebuild,v 1.10 2003/12/05 09:56:20 vapier Exp $
-S=${WORKDIR}/${P}
DESCRIPTION="Indent program source files"
+HOMEPAGE="http://www.gnu.org/software/indent/indent.html"
SRC_URI="mirror://gnu/indent/${P}.tar.gz"
-HOMEPAGE="http://www.gnu.org"
-SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="ia64 x86 ppc sparc alpha hppa amd64"
+SLOT="0"
+KEYWORDS="x86 ppc sparc alpha hppa amd64 ia64"
DEPEND="virtual/glibc"
-src_compile() {
- econf || die "./configure failed"
- emake || die
-}
-
-src_install () {
- einstall || die
+src_install() {
+ make install DESTDIR=${D} || die
dodoc AUTHORS COPYING NEWS README*
+ dodoc ${D}/usr/doc/indent/*
+ rm -rf ${D}/usr/doc
}