summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-10-08 01:10:16 +0000
committerMike Frysinger <vapier@gentoo.org>2007-10-08 01:10:16 +0000
commit9e68fd0bd086a9f2e7ea4961b26d63eb9f3e1269 (patch)
tree94a06302ffd0cf397f4e56515b818bca049a295a /sys-apps
parentversion bump - build patch update from Denis Dupeyron (bug #190541) (diff)
downloadgentoo-2-9e68fd0bd086a9f2e7ea4961b26d63eb9f3e1269.tar.gz
gentoo-2-9e68fd0bd086a9f2e7ea4961b26d63eb9f3e1269.tar.bz2
gentoo-2-9e68fd0bd086a9f2e7ea4961b26d63eb9f3e1269.zip
Version bump #195027 by Elias Pipping.
(Portage version: 2.1.3.12)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/texinfo/ChangeLog7
-rw-r--r--sys-apps/texinfo/files/digest-texinfo-4.113
-rw-r--r--sys-apps/texinfo/texinfo-4.11.ebuild40
3 files changed, 49 insertions, 1 deletions
diff --git a/sys-apps/texinfo/ChangeLog b/sys-apps/texinfo/ChangeLog
index 5e6c7af36cce..6fd4931f2e1a 100644
--- a/sys-apps/texinfo/ChangeLog
+++ b/sys-apps/texinfo/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/texinfo
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.84 2007/05/11 03:29:24 kumba Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/ChangeLog,v 1.85 2007/10/08 01:10:15 vapier Exp $
+
+*texinfo-4.11 (08 Oct 2007)
+
+ 08 Oct 2007; Mike Frysinger <vapier@gentoo.org> +texinfo-4.11.ebuild:
+ Version bump #195027 by Elias Pipping.
11 May 2007; Joshua Kinard <kumba@gentoo.org> texinfo-4.8-r5.ebuild:
Stable on mips.
diff --git a/sys-apps/texinfo/files/digest-texinfo-4.11 b/sys-apps/texinfo/files/digest-texinfo-4.11
new file mode 100644
index 000000000000..9b7071167155
--- /dev/null
+++ b/sys-apps/texinfo/files/digest-texinfo-4.11
@@ -0,0 +1,3 @@
+MD5 c6bf13df4fbeff8ce874aacd6a51e814 texinfo-4.11.tar.bz2 1659601
+RMD160 d07dbc50f98dd8f9f4088b58781abdebfb7f5781 texinfo-4.11.tar.bz2 1659601
+SHA256 61033d48778ac7a6c80ac7cee66ca962fc4a1565fad13759618916f7f292f5f7 texinfo-4.11.tar.bz2 1659601
diff --git a/sys-apps/texinfo/texinfo-4.11.ebuild b/sys-apps/texinfo/texinfo-4.11.ebuild
new file mode 100644
index 000000000000..f2663cb688cb
--- /dev/null
+++ b/sys-apps/texinfo/texinfo-4.11.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.11.ebuild,v 1.1 2007/10/08 01:10:15 vapier Exp $
+
+inherit flag-o-matic
+
+DESCRIPTION="The GNU info program and utilities"
+HOMEPAGE="http://www.gnu.org/software/texinfo/"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+IUSE="nls static"
+
+RDEPEND="!=app-text/tetex-2*
+ >=sys-libs/ncurses-5.2-r2
+ nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+ nls? ( sys-devel/gettext )"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ sed -i '1i#include <ctype.h>' system.h
+}
+
+src_compile() {
+ use static && append-ldflags -static
+ econf $(use_enable nls) || die
+ emake || die "emake"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "install failed"
+
+ dodoc AUTHORS ChangeLog INTRODUCTION NEWS README TODO
+ newdoc info/README README.info
+ newdoc makeinfo/README README.makeinfo
+}