blob: f7e4dc595a8b88e82e04fcd6f3f8d4800b2ca0ec (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ed/ed-0.2-r6.ebuild,v 1.5 2007/01/22 17:51:04 vapier Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Your basic line editor"
HOMEPAGE="http://www.gnu.org/software/ed/"
SRC_URI="mirror://gnu/ed/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE=""
DEPEND="sys-apps/texinfo"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PV}-info-dir.patch
epatch "${FILESDIR}"/${PV}-mkstemp.patch
epatch "${FILESDIR}"/${P}-configure-LANG.patch #126041
# This little autoconf line isn't critical.
# It's only needed when you want to cross-compile.
if tc-is-cross-compiler ; then
chmod 755 configure #73575
WANT_AUTOCONF=2.1 autoconf || die "autoconf failed"
fi
}
src_compile() {
tc-export CC RANLIB
# very old configure script ... econf wont work
local myconf="--prefix=/ --host=${CHOST}"
[[ -n ${CBUILD} ]] && myconf="${myconf} --build=${CBUILD}"
[[ -n ${CTARGET} ]] && myconf="${myconf} --target=${CTARGET}"
myconf="${myconf} ${EXTRA_ECONF}"
echo "./configure ${myconf}"
./configure ${myconf} || die
emake AR="$(tc-getAR)" || die
}
src_install() {
chmod 0644 "${S}"/ed.info
make \
prefix="${D}"/ \
mandir="${D}"/usr/share/man/man1 \
infodir="${D}"/usr/share/info \
install || die
dodoc ChangeLog NEWS POSIX README THANKS TODO
}
|