summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2002-01-01 22:35:51 +0000
committerMartin Schlemmer <azarah@gentoo.org>2002-01-01 22:35:51 +0000
commit6958fd94660a6f75a8de8b52b4f994965b22573c (patch)
tree1fc05a3b3717559d2787ef0c8284e2eb26a87775 /sys-apps/groff
parentlots of cleanup. jpeg,zlib,libpng should now extract in the correct dirs (diff)
downloadgentoo-2-6958fd94660a6f75a8de8b52b4f994965b22573c.tar.gz
gentoo-2-6958fd94660a6f75a8de8b52b4f994965b22573c.tar.bz2
gentoo-2-6958fd94660a6f75a8de8b52b4f994965b22573c.zip
header, tab fixes
Diffstat (limited to 'sys-apps/groff')
-rw-r--r--sys-apps/groff/groff-1.17.2.ebuild17
1 files changed, 11 insertions, 6 deletions
diff --git a/sys-apps/groff/groff-1.17.2.ebuild b/sys-apps/groff/groff-1.17.2.ebuild
index b58ad35e01ad..c6b47bd07977 100644
--- a/sys-apps/groff/groff-1.17.2.ebuild
+++ b/sys-apps/groff/groff-1.17.2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2001 Gentoo Technologies, Inc.
+# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# Author: Daniel Robbins <drobbins@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.17.2.ebuild,v 1.1 2001/12/17 14:22:58 azarah Exp $
+# Maintainer: Daniel Robbins <drobbins@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.17.2.ebuild,v 1.2 2002/01/01 22:35:51 azarah Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Text formatter used for man pages"
@@ -11,13 +11,18 @@ HOMEPAGE="http://www.gnu.org/software/groff/groff.html"
DEPEND="virtual/glibc"
src_compile() {
- ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man || die
+ ./configure --host=${CHOST} \
+ --prefix=/usr \
+ --mandir=/usr/share/man || die
# emake doesn't work
make || die
}
src_install() {
dodir /usr
- make prefix=${D}/usr manroot=${D}/usr/share/man install || die
- dodoc NEWS PROBLEMS PROJECTS README TODO VERSION BUG-REPORT COPYING ChangeLog FDL MORE.STUFF REVISION
+ make prefix=${D}/usr \
+ manroot=${D}/usr/share/man \
+ install || die
+ dodoc NEWS PROBLEMS PROJECTS README TODO VERSION BUG-REPORT \
+ COPYING ChangeLog FDL MORE.STUFF REVISION
}