diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2002-07-05 21:31:07 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2002-07-05 21:31:07 +0000 |
commit | a6dd080d77cd780b28ae23180d5752b0743caf86 (patch) | |
tree | 14e9ee5b6cf78f8bceb396bf8245264c7069fbd5 /sys-devel | |
parent | new version - 0.5 (diff) | |
download | gentoo-2-a6dd080d77cd780b28ae23180d5752b0743caf86.tar.gz gentoo-2-a6dd080d77cd780b28ae23180d5752b0743caf86.tar.bz2 gentoo-2-a6dd080d77cd780b28ae23180d5752b0743caf86.zip |
disable creation of PDF documentation.
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/distcc/distcc-0.5.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys-devel/distcc/distcc-0.5.ebuild b/sys-devel/distcc/distcc-0.5.ebuild index 89ae0ca814e4..1c58483a481c 100644 --- a/sys-devel/distcc/distcc-0.5.ebuild +++ b/sys-devel/distcc/distcc-0.5.ebuild @@ -1,6 +1,6 @@ # Copyright 2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/distcc-0.5.ebuild,v 1.1 2002/07/05 21:25:11 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/distcc-0.5.ebuild,v 1.2 2002/07/05 21:31:07 drobbins Exp $ SRC_URI="http://ftp.samba.org/ftp/distcc/${P}.tar.gz" HOMEPAGE="http://ftp.samba.org/ftp/distcc/" @@ -12,11 +12,16 @@ LICENSE="GPL-2" src_compile() { ./configure --prefix=/usr --mandir=/usr/share/man || die "config" + #Disable creation of PDF documentation + cd man + mv Makefile Makefile.orig + sed < Makefile.orig > Makefile -e 's:distcc.pdf::g' -e 's:distccd.pdf::g' + cd ${S} emake || die "emake" } src_install () { dobin src/distcc src/distccd doman man/*.1 - dodoc man/*.pdf man/*.html man/*.ps README + dodoc man/*.html man/*.ps README } |