blob: 5d7d660d0d46a872f306befb9edd19d3bdda4b2c (
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
35
36
37
38
39
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/devtodo-0.1.17.ebuild,v 1.12 2004/06/24 22:07:52 agriffis Exp $
inherit eutils gnuconfig
IUSE=""
DESCRIPTION="A nice command line todo list for developers"
HOMEPAGE="http://devtodo.sourceforge.net/"
SRC_URI="http://devtodo.sourceforge.net/${PV}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha ~hppa ~mips amd64 ~ia64 s390"
DEPEND=">=sys-libs/ncurses-5.2
>=sys-libs/readline-4.1"
src_unpack() {
unpack ${A}
cd ${S}
# Patch to allow compilation with gcc-3.3
epatch ${FILESDIR}/${PN}.patch
}
src_compile() {
gnuconfig_update
econf \
--sysconfdir=/etc/devtodo || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog QuickStart README TODO
dodoc doc/scripts.sh doc/scripts.tcsh doc/todorc.example contrib/tdrec
}
|