blob: 66f009393574d9de7be24d85a7626faeb2c47d78 (
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/hteditor/hteditor-0.7.3.ebuild,v 1.3 2004/03/16 02:35:08 george Exp $
IUSE=""
DESCRIPTION="HT Editor - editor for executable files"
HOMEPAGE="http://hte.sf.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 -alpha"
DEPEND="virtual/glibc"
SRC_URI="mirror://sourceforge/hte/ht-${PV}.tar.bz2"
S="${WORKDIR}/ht-${PV}"
src_compile() {
cd "${S}"
chmod +x configure
local myconf="--prefix=/usr --sysconfdir=/etc"
./configure ${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS KNOWNBUGS TODO COPYING README
dohtml doc/ht.html
doinfo doc/*.info
}
|