summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-11-30 19:48:17 +0000
committerMike Frysinger <vapier@gentoo.org>2002-11-30 19:48:17 +0000
commitd0d59b0825879680191e9dea117a9cabdca0a8c6 (patch)
treeb5163432574cef97d51037bb51614cca7ee9d5c5 /app-misc/devtodo
parentChanged src_install () to src_install() (diff)
downloadgentoo-2-d0d59b0825879680191e9dea117a9cabdca0a8c6.tar.gz
gentoo-2-d0d59b0825879680191e9dea117a9cabdca0a8c6.tar.bz2
gentoo-2-d0d59b0825879680191e9dea117a9cabdca0a8c6.zip
Changed econf||die to econf
Diffstat (limited to 'app-misc/devtodo')
-rw-r--r--app-misc/devtodo/devtodo-0.1.11-r1.ebuild7
-rw-r--r--app-misc/devtodo/devtodo-0.1.14.ebuild6
2 files changed, 5 insertions, 8 deletions
diff --git a/app-misc/devtodo/devtodo-0.1.11-r1.ebuild b/app-misc/devtodo/devtodo-0.1.11-r1.ebuild
index 4566b7da6b28..bb854aa29679 100644
--- a/app-misc/devtodo/devtodo-0.1.11-r1.ebuild
+++ b/app-misc/devtodo/devtodo-0.1.11-r1.ebuild
@@ -1,8 +1,7 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/devtodo-0.1.11-r1.ebuild,v 1.6 2002/10/20 18:40:21 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/devtodo-0.1.11-r1.ebuild,v 1.7 2002/11/30 19:45:23 vapier Exp $
-S=${WORKDIR}/${P}
DESCRIPTION="A nice command line todo list for developers"
SRC_URI="http://activelysecure.net/~alec/development/devtodo/0.1.11/${P}.tar.gz"
HOMEPAGE="http://activelysecure.net/~alec/development/devtodo/"
@@ -21,11 +20,11 @@ src_unpack() {
}
src_compile() {
- econf || die
+ econf
make || die
}
-src_install () {
+src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog QuickStart README TODO
}
diff --git a/app-misc/devtodo/devtodo-0.1.14.ebuild b/app-misc/devtodo/devtodo-0.1.14.ebuild
index b05157e45c98..7ddc0658cc08 100644
--- a/app-misc/devtodo/devtodo-0.1.14.ebuild
+++ b/app-misc/devtodo/devtodo-0.1.14.ebuild
@@ -1,8 +1,7 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/devtodo-0.1.14.ebuild,v 1.7 2002/11/02 22:30:46 cselkirk Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/devtodo-0.1.14.ebuild,v 1.8 2002/11/30 19:46:29 vapier Exp $
-S=${WORKDIR}/${P}
DESCRIPTION="A nice command line todo list for developers"
SRC_URI="http://devtodo.sourceforge.net/${PV}/${P}.tar.gz"
HOMEPAGE="http://devtodo.sourceforge.net/"
@@ -15,13 +14,12 @@ DEPEND=">=sys-libs/ncurses-5.2
>=sys-libs/readline-4.1"
src_compile() {
- econf --sysconfdir=/etc/devtodo || die
+ econf --sysconfdir=/etc/devtodo
make || 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
}