summaryrefslogtreecommitdiff
blob: 051355eecae412a610d0fe858d637ba4c931ced3 (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="Command line interface to manage hierarchical todos"
HOMEPAGE="http://www.cauterized.net/~meskio/tudu/"
SRC_URI="http://cauterized.net/~meskio/${PN}/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="sys-libs/ncurses"
RDEPEND=${DEPEND}

src_compile() {
	emake DESTDIR="/usr/" ETC_DIR="/etc" || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}/usr/" ETC_DIR="${D}/etc" install || die "install failed"
	dodoc AUTHORS README ChangeLog || die
}