# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.7.ebuild,v 1.3 2004/08/24 03:45:16 swegener Exp $ inherit flag-o-matic gnuconfig eutils DESCRIPTION="The GNU info program and utilities" HOMEPAGE="http://www.gnu.org/software/texinfo/" SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~ppc64 ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64 ~s390" IUSE="nls build static" DEPEND="virtual/libc !build? ( >=sys-libs/ncurses-5.2-r2 >=sys-apps/sed-4.0.5 nls? ( sys-devel/gettext ) )" RDEPEND="virtual/libc !build? ( >=sys-libs/ncurses-5.2-r2 )" src_unpack() { unpack ${A} cd ${S}/doc # Get the texinfo info page to have a proper name of texinfo.info sed -i 's:setfilename texinfo:setfilename texinfo.info:' texinfo.txi sed -i \ -e 's:INFO_DEPS = texinfo:INFO_DEPS = texinfo.info:' \ -e 's:texinfo\::texinfo.info\::' \ Makefile.in # update config.sub/config.guess for newer arches. gnuconfig_update # patch to fix groff build against 4.7. See also bug #57690 and # http://lists.gnu.org/archive/html/bug-texinfo/2004-07/msg00002.html cd ${S}/makeinfo && epatch ${FILESDIR}/makeinfo.patch } src_compile() { local myconf= if ! use nls || use build ; then myconf="--disable-nls" fi use static && append-ldflags -static export WANT_AUTOMAKE=1.6 econf ${myconf} || die emake || die } src_install() { if use build ; then mv util/ginstall-info util/install-info dobin makeinfo/makeinfo util/{install-info,texi2dvi,texindex} else make DESTDIR=${D} \ infodir=/usr/share/info \ install || die exeinto /usr/sbin doexe ${FILESDIR}/mkinfodir if [ ! -f ${D}/usr/share/info/texinfo.info ] ; then die "Could not install texinfo.info!!!" fi dodoc AUTHORS ChangeLog INTRODUCTION NEWS README TODO docinto info dodoc info/README docinto makeinfo dodoc makeinfo/README fi }