blob: c62b5fb6f1b2c5fec369a3d1b02a7dfe03a9ab4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2005 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-r1.ebuild,v 1.9 2005/06/30 03:35:42 kumba 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 ~ppc-macos s390 sh sparc x86"
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
# 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
# Fix userpriv perm problems #76600
chmod ug+w config/*
}
src_compile() {
econf $(use_enable nls) || die "econf"
use static && append-ldflags -static
emake LDFLAGS="${LDFLAGS}" || die "make"
}
src_install() {
make install DESTDIR="${D}" || die
dodoc ChangeLog NEWS README
# use the manpage from 'sys-apps/man-pages'
rm -f "${D}"/usr/share/man/man1/diff.1*
}
|