blob: 9298fed78e33bd1b1350d4895796ccef1bfc368e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/hnb/hnb-1.9.17.ebuild,v 1.5 2004/03/12 08:46:46 mr_bones_ Exp $
DESCRIPTION="hnb is a program to organize many kinds of data in one place, including addresses, TODO lists, ideas, book reviews, brainstorming, speech outlines, etc. It stores data in XML format, and is capable of native export to ASCII and HTML."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://hnb.sourceforge.net/"
SLOT="0"
LICENSE="GPL-1"
KEYWORDS="x86 ~ppc ~sparc"
DEPEND=""
src_compile() {
make || die
}
src_install() {
dodoc README doc/hnbrc
doman doc/hnb.1
dobin src/hnb
}
|