blob: 2d0df67a9bf4f918d74e78ddb5b66f4557d5e6cd (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/hnb/hnb-1.9.18-r1.ebuild,v 1.3 2010/01/02 11:21:57 fauli Exp $
EAPI="2"
inherit eutils toolchain-funcs
DESCRIPTION="A program to organize many kinds of data in one place."
SRC_URI="http://hnb.sourceforge.net/.files/${P}.tar.gz"
HOMEPAGE="http://hnb.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE=""
DEPEND=""
RDEPEND=""
src_prepare() {
epatch "${FILESDIR}/${P}-flags.patch" "${FILESDIR}/${P}-include.patch"
}
src_compile() {
tc-export CC
default_src_compile
}
src_install() {
dodoc README doc/hnbrc
doman doc/hnb.1
dobin src/hnb
}
|