summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2001-10-06 17:04:49 +0000
committerDaniel Robbins <drobbins@gentoo.org>2001-10-06 17:04:49 +0000
commit43cb8791bad8fdb2c233b4ad1526b708780fb41a (patch)
treeece229d908037be9326b4f51de12df94796fac37 /sys-apps/groff
parentfixums (diff)
downloadgentoo-2-43cb8791bad8fdb2c233b4ad1526b708780fb41a.tar.gz
gentoo-2-43cb8791bad8fdb2c233b4ad1526b708780fb41a.tar.bz2
gentoo-2-43cb8791bad8fdb2c233b4ad1526b708780fb41a.zip
fixums
Diffstat (limited to 'sys-apps/groff')
-rw-r--r--sys-apps/groff/groff-1.16.1-r1.ebuild31
1 files changed, 10 insertions, 21 deletions
diff --git a/sys-apps/groff/groff-1.16.1-r1.ebuild b/sys-apps/groff/groff-1.16.1-r1.ebuild
index e40b69e0004c..973eff9081b6 100644
--- a/sys-apps/groff/groff-1.16.1-r1.ebuild
+++ b/sys-apps/groff/groff-1.16.1-r1.ebuild
@@ -1,33 +1,22 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
+# Copyright 1999-2001 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.16.1-r1.ebuild,v 1.2 2001/05/11 14:01:40 achim Exp $
+# Author: Daniel Robbins <drobbins@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.16.1-r1.ebuild,v 1.3 2001/10/06 17:04:49 drobbins Exp $
-A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Text formatter used for man pages"
-SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/groff/${A}
- ftp://prep.ai.mit.edu/gnu/groff/${A}"
+SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/groff/${P}.tar.gz ftp://prep.ai.mit.edu/gnu/groff/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/groff/groff.html"
-
DEPEND="virtual/glibc"
src_compile() {
-
- try ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man
- # pmake does not work !
- try make
+ ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man || die
+ # emake doesn't work
+ make || die
}
src_install() {
-
- dodir /usr
- try make prefix=${D}/usr manroot=${D}/usr/share/man install
-
- dodoc NEWS PROBLEMS PROJECTS README TODO VERSION \
- BUG-REPORT COPYING ChangeLog FDL MORE.STUFF \
- REVISION
-
+ 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
}
-
-