aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven 'sleipnir' Rebhan <odinshorse@googlemail.com>2009-03-02 18:29:46 +0000
committerSven 'sleipnir' Rebhan <odinshorse@googlemail.com>2009-03-02 18:29:46 +0000
commit19d149a018bc6f6892314749387eba6c46164408 (patch)
treee442a16029871aba0ca3177f69b67a6657ec29a9 /sys-apps
parentFix coreutils-7.1 compilation (diff)
downloadembedded-cross-19d149a018bc6f6892314749387eba6c46164408.tar.gz
embedded-cross-19d149a018bc6f6892314749387eba6c46164408.tar.bz2
embedded-cross-19d149a018bc6f6892314749387eba6c46164408.zip
The texinfo fix is in portage now, so no need to keep it in here.
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/texinfo/Manifest2
-rw-r--r--sys-apps/texinfo/texinfo-4.13.ebuild42
2 files changed, 0 insertions, 44 deletions
diff --git a/sys-apps/texinfo/Manifest b/sys-apps/texinfo/Manifest
deleted file mode 100644
index aeec6e5..0000000
--- a/sys-apps/texinfo/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST texinfo-4.13.tar.lzma 1563777 RMD160 31d68ab41fead86d473ecc1de183fd1629e01560 SHA1 676ec9aa25a97c05dff66fba5225f9e101160063 SHA256 6d28b0ceae866e3536142fc552e7a3bc9f84c8303119c25731b2478eef64c9e5
-EBUILD texinfo-4.13.ebuild 1156 RMD160 eed0828ed17e8539becc87bc48c64e019d7b0cc4 SHA1 6ddc54f53509618e05cc098c55ae1d67c38c94df SHA256 b6ad62d4f6fe4446924bff1cceaea30ab221acf029763d93f4dffd5c7c5c4ccd
diff --git a/sys-apps/texinfo/texinfo-4.13.ebuild b/sys-apps/texinfo/texinfo-4.13.ebuild
deleted file mode 100644
index 6251d69..0000000
--- a/sys-apps/texinfo/texinfo-4.13.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.13.ebuild,v 1.1 2008/10/22 05:34:03 robbat2 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.lzma"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE="nls static"
-
-RDEPEND="!=app-text/tetex-2*
- >=sys-libs/ncurses-5.2-r2
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- app-arch/lzma-utils
- nls? ( sys-devel/gettext )"
-
-src_compile() {
- use static && append-ldflags -static
- econf $(use_enable nls) || die
-
- # http://bugs.gentoo.org/196041
- if tc-is-cross-compiler; then
- emake -C tools/gnulib/lib || die "emake -C tools/gnulib/lib"
- fi
- 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
-
- rm -f "${D}"/usr/lib/charset.alias #195148
-}