diff options
author | Maksim 'max_posedon' Melnikau <maxposedon@gmail.com> | 2009-03-11 10:31:27 +0000 |
---|---|---|
committer | Maksim 'max_posedon' Melnikau <maxposedon@gmail.com> | 2009-03-11 10:31:27 +0000 |
commit | c2c92f94e80114502421ed3e7084758879520c9a (patch) | |
tree | c0c46f48389f3012cbdfa9fcd6866f116f15ca1e /sys-apps | |
parent | add sys-libs/e2fsprogs-libs as rdep for mtd-utils (diff) | |
download | embedded-cross-c2c92f94e80114502421ed3e7084758879520c9a.tar.gz embedded-cross-c2c92f94e80114502421ed3e7084758879520c9a.tar.bz2 embedded-cross-c2c92f94e80114502421ed3e7084758879520c9a.zip |
package.provided should be used
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/diffutils/Manifest | 5 | ||||
-rw-r--r-- | sys-apps/diffutils/diffutils-2.8.7-r2.ebuild | 56 | ||||
-rw-r--r-- | sys-apps/diffutils/files/diffutils-2.8.4-sdiff-no-waitpid.patch | 23 | ||||
-rw-r--r-- | sys-apps/diffutils/files/diffutils-2.8.7-headers.patch | 12 |
4 files changed, 0 insertions, 96 deletions
diff --git a/sys-apps/diffutils/Manifest b/sys-apps/diffutils/Manifest deleted file mode 100644 index d4d075d..0000000 --- a/sys-apps/diffutils/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX diffutils-2.8.4-sdiff-no-waitpid.patch 525 RMD160 ea9e3ca6220a5f85f35e39e68b31df6060a3cdf4 SHA1 6cf97589930ce02ea4ae0afee687cbae45714a16 SHA256 826a5b92458b88905c8e12ea9ad45fbc842274720b0800fcbd37b3886c6c4765 -AUX diffutils-2.8.7-headers.patch 179 RMD160 3510d6182eabeecac120ea38e7ae5def5967cbb4 SHA1 893fe2e5e6f7cc8ff27e19038b02751ce4ad3f4a SHA256 99a77be4e24f6f8333b09145568ad09b6a205aa5025bd8bc58179653e1635eed -DIST diffutils-2.8.7-i18n.patch.bz2 4388 RMD160 c1d8640f86e2362551d1e94893f7f0079839fa75 SHA1 3ad149e0ff8725ffb82e8f5613dcfdf58ef606f8 SHA256 a6a8f47d75ea9e61a0b9dba45f4a85bf1d54572c191bb7ad9e0cb7e8edd867c0 -DIST diffutils-2.8.7.tar.gz 1057977 RMD160 389518f9008e56a283884809d7abac4b3cb8edce SHA1 b05cfdd651137d46d97872dd646db0dd92077f0d SHA256 53d9c10830ac322c00dfcccf60d961014e767da86d2c802ccc5cbad7e7aea07c -EBUILD diffutils-2.8.7-r2.ebuild 1639 RMD160 63130e45256ca0ee6b89ec10de291187efef61b9 SHA1 8101e62d87363f16feb92467e48349bc181eb360 SHA256 286ef2eeefb10f9af8a64c7ffc6618227046c116ebaf8cde891102c06a9a4180 diff --git a/sys-apps/diffutils/diffutils-2.8.7-r2.ebuild b/sys-apps/diffutils/diffutils-2.8.7-r2.ebuild deleted file mode 100644 index 9b4236a..0000000 --- a/sys-apps/diffutils/diffutils-2.8.7-r2.ebuild +++ /dev/null @@ -1,56 +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/diffutils/diffutils-2.8.7-r2.ebuild,v 1.4 2008/03/30 23:19:53 ricmm Exp $ - -inherit eutils flag-o-matic - -DESCRIPTION="Tools to make diffs and compare files" -HOMEPAGE="http://www.gnu.org/software/diffutils/diffutils.html" -SRC_URI="ftp://alpha.gnu.org/gnu/diffutils/${P}.tar.gz - mirror://gentoo/${P}-i18n.patch.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 static" - -RDEPEND="" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Removes waitpid() call after pclose() on piped diff stream, closing - # bug #11728, thanks to D Wollmann <converter@dalnet-perl.org> - epatch "${FILESDIR}"/diffutils-2.8.4-sdiff-no-waitpid.patch - - # Fix utf8 support. Patch from MDK. #71689 - epatch "${WORKDIR}"/${P}-i18n.patch - - epatch "${FILESDIR}"/${P}-headers.patch - - # Make sure we don't try generating the manpages ... this requires - # 'help2man' which is a perl app which is not available in a - # stage2 / stage3 ... don't DEPEND on it or we get a DEPEND loop :( - # for more info, see #55479 - touch man/*.1 - - # There's no reason for this crap to use the private version - sed -i 's:__mempcpy:mempcpy:g' lib/*.c - - # Fix userpriv perm problems #76600 - chmod ug+w config/* -} - -src_compile() { - use static && append-ldflags -static - econf $(use_enable nls) || die "econf" - emake || die "make" -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc ChangeLog NEWS README -} diff --git a/sys-apps/diffutils/files/diffutils-2.8.4-sdiff-no-waitpid.patch b/sys-apps/diffutils/files/diffutils-2.8.4-sdiff-no-waitpid.patch deleted file mode 100644 index a41b116..0000000 --- a/sys-apps/diffutils/files/diffutils-2.8.4-sdiff-no-waitpid.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- diffutils-2.8.4/src/sdiff.c.orig 2002-06-17 00:55:42.000000000 -0500 -+++ diffutils-2.8.4/src/sdiff.c 2003-01-08 03:04:02.000000000 -0600 -@@ -692,7 +692,7 @@ - ck_fclose (out); - - { -- int wstatus; -+ int wstatus = 0; - int werrno = 0; - - #if ! (HAVE_WORKING_FORK || HAVE_WORKING_VFORK) -@@ -701,11 +701,6 @@ - werrno = errno; - #else - ck_fclose (diffout); -- while (waitpid (diffpid, &wstatus, 0) < 0) -- if (errno == EINTR) -- checksigs (); -- else -- perror_fatal ("waitpid"); - diffpid = 0; - #endif - diff --git a/sys-apps/diffutils/files/diffutils-2.8.7-headers.patch b/sys-apps/diffutils/files/diffutils-2.8.7-headers.patch deleted file mode 100644 index d3e72d7..0000000 --- a/sys-apps/diffutils/files/diffutils-2.8.7-headers.patch +++ /dev/null @@ -1,12 +0,0 @@ -get prototype for gettimeofday() - ---- src/system.h -+++ src/system.h -@@ -93,6 +93,7 @@ - #endif - - #include <time.h> -+#include <sys/time.h> - - #if HAVE_FCNTL_H - # include <fcntl.h> |