blob: edcb844e3c66b3c53399e216a2ed6f068e344343 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ed/ed-0.2-r3.ebuild,v 1.28 2004/06/28 16:05:20 vapier Exp $
inherit eutils
DESCRIPTION="Your basic line editor"
HOMEPAGE="http://www.gnu.org/software/ed/"
SRC_URI="ftp://ftp.gnu.org/pub/gnu/ed/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64 s390"
IUSE=""
DEPEND="virtual/libc
sys-apps/texinfo"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PF}-gentoo.diff
}
src_compile() {
./configure --prefix=/ --host=${CHOST} || die
emake || 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
}
|