# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ inherit autotools cvs eutils flag-o-matic multilib toolchain-funcs DESCRIPTION="Text formatter used for man pages" HOMEPAGE="http://www.gnu.org/software/groff/groff.html" SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" IUSE="X" DEPEND=">=sys-apps/texinfo-4.7-r1 media-libs/netpbm" VERSIO_PRAESENS="${PV#*_pre}" ECVS_SERVER="cvs.savannah.gnu.org:/sources/groff" ECVS_MODULE="groff" ECVS_AUTH="pserver" ECVS_USER="anonymous" ECVS_CO_OPTS="-D${VERSIO_PRAESENS}" ECVS_UP_OPTS="-dP -D${VERSIO_PRAESENS}" S="${WORKDIR}/${ECVS_MODULE}" src_unpack() { cvs_src_unpack cd "${S}" # Make dashes the same as minus on the keyboard so that you # can search for it. Fixes #17580 and #16108 # Thanks to James Cloos epatch "${FILESDIR}"/${PN}-man-UTF-8.diff # Make sure we can cross-compile this puppy if tc-is-cross-compiler ; then sed -i \ -e '/^GROFFBIN=/s:=.*:=/usr/bin/groff:' \ -e '/^TROFFBIN=/s:=.*:=/usr/bin/troff:' \ -e '/^GROFF_BIN_PATH=/s:=.*:=:' \ contrib/mom/Makefile.sub \ doc/Makefile.in \ doc/Makefile.sub || die "cross-compile sed failed" fi } src_compile() { # Fix problems with not finding g++ tc-export CC CXX # -Os causes segfaults, -O is probably a fine replacement # (fixes bug 36008, 06 Jan 2004 agriffis) replace-flags -Os -O econf \ --with-appresdir=/etc/X11/app-defaults \ $(use_with X x) \ || die emake || die } src_install() { dodir /usr/bin make \ prefix="${D}"/usr \ bindir="${D}"/usr/bin \ libdir="${D}"/usr/$(get_libdir) \ appresdir="${D}"/etc/X11/app-defaults \ datadir="${D}"/usr/share \ mandir="${D}"/usr/share/man \ infodir="${D}"/usr/share/info \ docdir="${D}"/usr/share/doc/${PF} \ install || die # The following links are required for man #123674 dosym eqn /usr/bin/geqn dosym tbl /usr/bin/gtbl dodoc BUG-REPORT ChangeLog FDL MORE.STUFF NEWS \ PROBLEMS PROJECTS README REVISION TODO VERSION } pkg_postinst() { einfo "To utilize preconv machinery, change NROFF definition to" einfo "\"/usr/bin/preconv | /usr/bin/nroff -c -mandoc\" in /etc/man.conf." }