diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-25 15:10:26 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-25 15:10:26 +0000 |
commit | 3b400917584ce927f27df4cf507cc5630759f143 (patch) | |
tree | c5148d0abb45f9c45a2fd8ad233dcda899e8da92 /sys-apps/groff | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-3b400917584ce927f27df4cf507cc5630759f143.tar.gz gentoo-2-3b400917584ce927f27df4cf507cc5630759f143.tar.bz2 gentoo-2-3b400917584ce927f27df4cf507cc5630759f143.zip |
*** empty log message ***
Diffstat (limited to 'sys-apps/groff')
-rw-r--r-- | sys-apps/groff/files/digest-groff-1.16.1 | 1 | ||||
-rw-r--r-- | sys-apps/groff/groff-1.16.1.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/sys-apps/groff/files/digest-groff-1.16.1 b/sys-apps/groff/files/digest-groff-1.16.1 new file mode 100644 index 000000000000..a63bf91c1ed9 --- /dev/null +++ b/sys-apps/groff/files/digest-groff-1.16.1 @@ -0,0 +1 @@ +MD5 f5dfb985bd890fd6dcd95b138935a9ad groff-1.16.1.tar.gz diff --git a/sys-apps/groff/groff-1.16.1.ebuild b/sys-apps/groff/groff-1.16.1.ebuild new file mode 100644 index 000000000000..112a893f9bef --- /dev/null +++ b/sys-apps/groff/groff-1.16.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2000 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.ebuild,v 1.1 2000/08/25 15:10:25 achim Exp $ + +P=groff-1.16.1 +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Text formatter used for man pages" +SRC_URI="ftp://prep.ai.mit.edu/gnu/groff/${A}" +HOMEPAGE="http://www.gnu.org/software/groff/groff.html" + +src_compile() { + ./configure --host=${CHOST} --prefix=/usr + cd ${S}/tmac + mv Makefile.sub Makefile.sub.orig + sed -e "s/all: stamp-strip stamp-wrap/all: stamp-strip/" Makefile.sub.orig > Makefile.sub + #fixed some things with the build process using good 'ol sed + cd ${S} + make +} + +src_install() { + into /usr + dodoc NEWS PROBLEMS PROJECTS README TODO VERSION BUG-REPORT COPYING ChangeLog + make prefix=${D}/usr install +} + + |