summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-07-07 04:50:34 +0000
committerMike Frysinger <vapier@gentoo.org>2007-07-07 04:50:34 +0000
commit48d6b9273ab62027fcf2391eeb5d6dbf63a03c78 (patch)
tree6476b5419d4b190eb070521c64677c243fe30ae1 /sys-apps/texinfo
parentuse emake in src_install (diff)
downloadhistorical-48d6b9273ab62027fcf2391eeb5d6dbf63a03c78.tar.gz
historical-48d6b9273ab62027fcf2391eeb5d6dbf63a03c78.tar.bz2
historical-48d6b9273ab62027fcf2391eeb5d6dbf63a03c78.zip
old
Package-Manager: portage-2.1.3_rc6
Diffstat (limited to 'sys-apps/texinfo')
-rw-r--r--sys-apps/texinfo/files/digest-texinfo-4.8-r23
-rw-r--r--sys-apps/texinfo/files/digest-texinfo-4.8-r33
-rw-r--r--sys-apps/texinfo/files/digest-texinfo-4.8-r43
-rw-r--r--sys-apps/texinfo/texinfo-4.8-r2.ebuild69
-rw-r--r--sys-apps/texinfo/texinfo-4.8-r3.ebuild75
-rw-r--r--sys-apps/texinfo/texinfo-4.8-r4.ebuild76
6 files changed, 0 insertions, 229 deletions
diff --git a/sys-apps/texinfo/files/digest-texinfo-4.8-r2 b/sys-apps/texinfo/files/digest-texinfo-4.8-r2
deleted file mode 100644
index 8bfc6f00eb18..000000000000
--- a/sys-apps/texinfo/files/digest-texinfo-4.8-r2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 6ba369bbfe4afaa56122e65b3ee3a68c texinfo-4.8.tar.bz2 1521822
-RMD160 5cb82cd240d1f22da813c7142df8828b4f6f1ea4 texinfo-4.8.tar.bz2 1521822
-SHA256 f6bb61fb9c1d6a65523c786a4a74ab61e455420469e09a86929f2d403d9a21bb texinfo-4.8.tar.bz2 1521822
diff --git a/sys-apps/texinfo/files/digest-texinfo-4.8-r3 b/sys-apps/texinfo/files/digest-texinfo-4.8-r3
deleted file mode 100644
index 8bfc6f00eb18..000000000000
--- a/sys-apps/texinfo/files/digest-texinfo-4.8-r3
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 6ba369bbfe4afaa56122e65b3ee3a68c texinfo-4.8.tar.bz2 1521822
-RMD160 5cb82cd240d1f22da813c7142df8828b4f6f1ea4 texinfo-4.8.tar.bz2 1521822
-SHA256 f6bb61fb9c1d6a65523c786a4a74ab61e455420469e09a86929f2d403d9a21bb texinfo-4.8.tar.bz2 1521822
diff --git a/sys-apps/texinfo/files/digest-texinfo-4.8-r4 b/sys-apps/texinfo/files/digest-texinfo-4.8-r4
deleted file mode 100644
index 8bfc6f00eb18..000000000000
--- a/sys-apps/texinfo/files/digest-texinfo-4.8-r4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 6ba369bbfe4afaa56122e65b3ee3a68c texinfo-4.8.tar.bz2 1521822
-RMD160 5cb82cd240d1f22da813c7142df8828b4f6f1ea4 texinfo-4.8.tar.bz2 1521822
-SHA256 f6bb61fb9c1d6a65523c786a4a74ab61e455420469e09a86929f2d403d9a21bb texinfo-4.8.tar.bz2 1521822
diff --git a/sys-apps/texinfo/texinfo-4.8-r2.ebuild b/sys-apps/texinfo/texinfo-4.8-r2.ebuild
deleted file mode 100644
index f3d3f2559364..000000000000
--- a/sys-apps/texinfo/texinfo-4.8-r2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.8-r2.ebuild,v 1.3 2007/02/28 22:22:35 genstef Exp $
-
-inherit flag-o-matic 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="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-IUSE="nls build static"
-
-RDEPEND="!build? ( >=sys-libs/ncurses-5.2-r2 )"
-DEPEND="${RDEPEND}
- !build? ( nls? ( sys-devel/gettext ) )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-freebsd.patch
- epatch "${FILESDIR}"/${P}-tempfile.patch #106105
-
- cd 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
-}
-
-src_compile() {
- local myconf=
- if ! use nls || use build ; then
- myconf="--disable-nls"
- fi
- use static && append-ldflags -static
-
- econf ${myconf} || die
-
- # work around broken dependency's in info/Makefile.am #85540
- emake -C lib || die "emake lib"
- emake -C info makedoc || die "emake makedoc"
- emake -C info doc.c || die "emake doc.c"
- emake || die "emake"
-}
-
-src_install() {
- if use build ; then
- newbin util/ginstall-info install-info
- dobin makeinfo/makeinfo util/{texi2dvi,texindex}
- else
- make DESTDIR="${D}" install || die "install failed"
- dosbin ${FILESDIR}/mkinfodir
- # tetex installs this guy #76812
- has_version '<app-text/tetex-3' && rm -f "${D}"/usr/bin/texi2pdf
-
- if [[ ! -f ${D}/usr/share/info/texinfo.info ]] ; then
- die "Could not install texinfo.info!!!"
- fi
-
- dodoc AUTHORS ChangeLog INTRODUCTION NEWS README TODO
- newdoc info/README README.info
- newdoc makeinfo/README README.makeinfo
- fi
-}
diff --git a/sys-apps/texinfo/texinfo-4.8-r3.ebuild b/sys-apps/texinfo/texinfo-4.8-r3.ebuild
deleted file mode 100644
index a9cbbeb848d9..000000000000
--- a/sys-apps/texinfo/texinfo-4.8-r3.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.8-r3.ebuild,v 1.5 2007/02/28 22:22:35 genstef Exp $
-
-inherit flag-o-matic eutils toolchain-funcs
-
-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="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE="nls build static"
-
-RDEPEND="!build? ( >=sys-libs/ncurses-5.2-r2 )
- !build? ( nls? ( virtual/libintl ) )"
-DEPEND="${RDEPEND}
- !build? ( nls? ( sys-devel/gettext ) )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-freebsd.patch
- epatch "${FILESDIR}"/${P}-tempfile-owl.patch #114499
-
- cd 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
-}
-
-src_compile() {
- local myconf=
- if ! use nls || use build ; then
- myconf="--disable-nls"
- fi
- use static && append-ldflags -static
-
- econf ${myconf} || die
-
- # Cross-compile workaround #133429
- if tc-is-cross-compiler ; then
- emake -C tools || die "emake tools"
- fi
-
- # work around broken dependency's in info/Makefile.am #85540
- emake -C lib || die "emake lib"
- emake -C info makedoc || die "emake makedoc"
- emake -C info doc.c || die "emake doc.c"
- emake || die "emake"
-}
-
-src_install() {
- if use build ; then
- newbin util/ginstall-info install-info
- dobin makeinfo/makeinfo util/{texi2dvi,texindex}
- else
- make DESTDIR="${D}" install || die "install failed"
- dosbin ${FILESDIR}/mkinfodir
- # tetex installs this guy #76812
- has_version '<app-text/tetex-3' && rm -f "${D}"/usr/bin/texi2pdf
-
- if [[ ! -f ${D}/usr/share/info/texinfo.info ]] ; then
- die "Could not install texinfo.info!!!"
- fi
-
- dodoc AUTHORS ChangeLog INTRODUCTION NEWS README TODO
- newdoc info/README README.info
- newdoc makeinfo/README README.makeinfo
- fi
-}
diff --git a/sys-apps/texinfo/texinfo-4.8-r4.ebuild b/sys-apps/texinfo/texinfo-4.8-r4.ebuild
deleted file mode 100644
index 07c093c5375a..000000000000
--- a/sys-apps/texinfo/texinfo-4.8-r4.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.8-r4.ebuild,v 1.3 2007/02/28 22:22:35 genstef Exp $
-
-inherit flag-o-matic eutils toolchain-funcs
-
-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="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
-IUSE="nls build static"
-
-RDEPEND="!build? ( >=sys-libs/ncurses-5.2-r2 )
- !build? ( nls? ( virtual/libintl ) )"
-DEPEND="${RDEPEND}
- !build? ( nls? ( sys-devel/gettext ) )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-freebsd.patch
- epatch "${FILESDIR}"/${P}-tempfile-owl.patch #114499
- epatch "${FILESDIR}"/${P}-bounds-check.patch #140902
-
- cd 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
-}
-
-src_compile() {
- local myconf=
- if ! use nls || use build ; then
- myconf="--disable-nls"
- fi
- use static && append-ldflags -static
-
- econf ${myconf} || die
-
- # Cross-compile workaround #133429
- if tc-is-cross-compiler ; then
- emake -C tools || die "emake tools"
- fi
-
- # work around broken dependency's in info/Makefile.am #85540
- emake -C lib || die "emake lib"
- emake -C info makedoc || die "emake makedoc"
- emake -C info doc.c || die "emake doc.c"
- emake || die "emake"
-}
-
-src_install() {
- if use build ; then
- newbin util/ginstall-info install-info
- dobin makeinfo/makeinfo util/{texi2dvi,texindex}
- else
- make DESTDIR="${D}" install || die "install failed"
- dosbin ${FILESDIR}/mkinfodir
- # tetex installs this guy #76812
- has_version '<app-text/tetex-3' && rm -f "${D}"/usr/bin/texi2pdf
-
- if [[ ! -f ${D}/usr/share/info/texinfo.info ]] ; then
- die "Could not install texinfo.info!!!"
- fi
-
- dodoc AUTHORS ChangeLog INTRODUCTION NEWS README TODO
- newdoc info/README README.info
- newdoc makeinfo/README README.makeinfo
- fi
-}