blob: f707a9d60277747a5a71feceacd820859dccbf57 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/shed/shed-1.10.ebuild,v 1.2 2004/03/03 10:22:59 hattya Exp $
IUSE=""
DESCRIPTION="Simple Hex EDitor"
HOMEPAGE="http://shed.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
DEPEND=">=sys-libs/ncurses-5.3"
src_compile() {
econf || die "econf failed"
emake AM_CXXFLAGS="${CXXFLAGS}" || die "emake failed"
}
src_install() {
dodir /usr/bin /usr/share/man/man1
make DESTDIR=${D} install || die "install failed"
dodoc [A-Z][A-Z]* ChangeLog
}
|