diff options
author | Sascha Schwabbauer <cybersystem@gentoo.org> | 2002-07-24 10:03:58 +0000 |
---|---|---|
committer | Sascha Schwabbauer <cybersystem@gentoo.org> | 2002-07-24 10:03:58 +0000 |
commit | 3b39e56a09e1ce8bfd0b7d4d3bebfe3bdc3a9bed (patch) | |
tree | 8eb6a1681ad5b9f1f61463290113f059ae4b3e4d /app-misc/devtodo | |
parent | updated to the newest version (fceultra) (diff) | |
download | historical-3b39e56a09e1ce8bfd0b7d4d3bebfe3bdc3a9bed.tar.gz historical-3b39e56a09e1ce8bfd0b7d4d3bebfe3bdc3a9bed.tar.bz2 historical-3b39e56a09e1ce8bfd0b7d4d3bebfe3bdc3a9bed.zip |
added newest version (devtodo-0.1.14)
Diffstat (limited to 'app-misc/devtodo')
-rw-r--r-- | app-misc/devtodo/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/devtodo/devtodo-0.1.14.ebuild | 59 | ||||
-rw-r--r-- | app-misc/devtodo/files/digest-devtodo-0.1.14 | 1 |
3 files changed, 67 insertions, 1 deletions
diff --git a/app-misc/devtodo/ChangeLog b/app-misc/devtodo/ChangeLog index 56fc91fbaab1..00f4efabe4ad 100644 --- a/app-misc/devtodo/ChangeLog +++ b/app-misc/devtodo/ChangeLog @@ -1,7 +1,13 @@ # ChangeLog for app-misc/devtodo # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/ChangeLog,v 1.1 2002/02/01 21:53:08 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/ChangeLog,v 1.2 2002/07/24 10:03:58 cybersystem Exp $ +*devtodo-0.1.14 (24 July 2002) + + 24 July 2002; Sascha Schwabbauer <cybersystem@gentoo.org> ChangeLog : + + Updated to the newest version. + *devtodo-0.1.11-r1 (1 Feb 2002) 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : diff --git a/app-misc/devtodo/devtodo-0.1.14.ebuild b/app-misc/devtodo/devtodo-0.1.14.ebuild new file mode 100644 index 000000000000..40c3a7dfef78 --- /dev/null +++ b/app-misc/devtodo/devtodo-0.1.14.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/devtodo-0.1.14.ebuild,v 1.1 2002/07/24 10:03:58 cybersystem Exp $ + +SLOT="0" +KEYWORDS="x86" +LICENSE="GPL-2" + +#Source directory; the dir where the sources can be found (automatically unpacked) +S=${WORKDIR}/${P} + +#Short one-line description +DESCRIPTION="A nice command line todo list for developers" + +#Point to any required sources; these will be automatically downloaded by Portage +SRC_URI="http://devtodo.sourceforge.net/${PV}/${P}.tar.gz" + +#Homepage, not used by Portage directly but handy for developer reference +HOMEPAGE="http://devtodo.sourceforge.net/" + +#build-time dependencies +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.2 + >=sys-libs/readline-4.1 + >=sys-devel/gcc-2.95.3" + +#run-time dependencies, same as DEPEND if RDEPEND isn't defined: +#RDEPEND="" + +src_compile() { + #the "try" command will stop the build process if the specified command fails. Prefix critical + #commands with "try" + try ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --sysconfdir=/etc/devtodo --host=${CHOST} + #Note the use of --infodir and --mandir, above. This is to make this package FHS 2.2-compliant + #(/usr/share is used for info and man now). + + try make + #emake (previously known as pmake) is a script that calls the standard GNU make with parallel + #building options for speedier builds on SMP systems. Use emake first; it might not work. If + #not, then replace the line above with: + + #try make +} + +src_install () { + #you must *personally verify* that this trick doesn't install + #anything outside of DESTDIR; do this by reading and understanding + #the install part of the Makefiles. Also note that this will often + #also work for autoconf stuff (usually much more often than DESTDIR, + #which is actually quite rare. + + # try make prefix=${D}/usr install + + try make DESTDIR=${D} install + #again, verify the Makefiles! We don't want anything falling outside + #of ${D}. + + dodoc AUTHORS COPYING ChangeLog QuickStart README TODO doc/scripts.sh doc/scripts.tcsh doc/todorc.example contrib/tdrec +} diff --git a/app-misc/devtodo/files/digest-devtodo-0.1.14 b/app-misc/devtodo/files/digest-devtodo-0.1.14 new file mode 100644 index 000000000000..0589627594aa --- /dev/null +++ b/app-misc/devtodo/files/digest-devtodo-0.1.14 @@ -0,0 +1 @@ +MD5 e9c3960a67585cc14f00814058bad303 devtodo-0.1.14.tar.gz 277963 |