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 | 8f3db5a39519a52c57e2846fb9b18b75ea14e7e5 (patch) | |
tree | a78c8b5e12504a0f7abe0a613260c4a1e45e28f8 /sys-devel/distcc | |
parent | new version - 0.5 (diff) | |
download | historical-8f3db5a39519a52c57e2846fb9b18b75ea14e7e5.tar.gz historical-8f3db5a39519a52c57e2846fb9b18b75ea14e7e5.tar.bz2 historical-8f3db5a39519a52c57e2846fb9b18b75ea14e7e5.zip |
disable creation of PDF documentation.
Diffstat (limited to 'sys-devel/distcc')
-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 } |