diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-10-15 07:40:41 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-10-15 07:40:41 +0000 |
commit | 5b7c9ef6c774247660a017d47f532535e2832426 (patch) | |
tree | fe04db3658831488618c784f5184e6aff878fd15 /app-misc/note | |
parent | Quoting... (diff) | |
download | gentoo-2-5b7c9ef6c774247660a017d47f532535e2832426.tar.gz gentoo-2-5b7c9ef6c774247660a017d47f532535e2832426.tar.bz2 gentoo-2-5b7c9ef6c774247660a017d47f532535e2832426.zip |
version bump (bug 190724)
(Portage version: 2.1.3.9)
Diffstat (limited to 'app-misc/note')
-rw-r--r-- | app-misc/note/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/note/files/digest-note-1.3.3 | 3 | ||||
-rw-r--r-- | app-misc/note/note-1.3.3.ebuild | 52 |
3 files changed, 62 insertions, 2 deletions
diff --git a/app-misc/note/ChangeLog b/app-misc/note/ChangeLog index 8cbccf57d166..6703523cc3f6 100644 --- a/app-misc/note/ChangeLog +++ b/app-misc/note/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/note -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v 1.15 2006/11/23 15:43:46 vivo Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/note/ChangeLog,v 1.16 2007/10/15 07:40:41 opfer Exp $ + +*note-1.3.3 (15 Oct 2007) + + 15 Oct 2007; Christian Faulhammer <opfer@gentoo.org> +note-1.3.3.ebuild: + version bump (bug 190724) 23 Nov 2006; Francesco Riosa <vivo@gentoo.org> note-1.2.5.ebuild, note-1.2.5-r1.ebuild, note-1.3.1.ebuild: diff --git a/app-misc/note/files/digest-note-1.3.3 b/app-misc/note/files/digest-note-1.3.3 new file mode 100644 index 000000000000..690e5e5eb744 --- /dev/null +++ b/app-misc/note/files/digest-note-1.3.3 @@ -0,0 +1,3 @@ +MD5 f48e90382100477cc775ff751925224c note-1.3.3.tar.gz 42691 +RMD160 c1af2b1e143e970d7c2f2c1dada411c57b8fa01e note-1.3.3.tar.gz 42691 +SHA256 5287906338554a1ea06105048b5b6c5457076e44475a58e43433be775c108365 note-1.3.3.tar.gz 42691 diff --git a/app-misc/note/note-1.3.3.ebuild b/app-misc/note/note-1.3.3.ebuild new file mode 100644 index 000000000000..4860a05f5f90 --- /dev/null +++ b/app-misc/note/note-1.3.3.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/note/note-1.3.3.ebuild,v 1.1 2007/10/15 07:40:41 opfer Exp $ + +inherit perl-app + +DESCRIPTION="A note taking perl program" +HOMEPAGE="http://www.daemon.de/NOTE" +SRC_URI="http://www.daemon.de/files/mirror/ftp.daemon.de/scip/Apps/note/${P}.tar.gz" + + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="crypt dbm general mysql text" + +# inherit perl-app cause depend on dev-lang/perl +DEPEND="dev-perl/TermReadKey + dev-perl/Term-ReadLine-Perl + virtual/perl-Storable + dev-perl/config-general + crypt? ( dev-perl/crypt-cbc dev-perl/Crypt-Blowfish dev-perl/Crypt-DES ) + mysql? ( virtual/mysql dev-perl/DBD-mysql )" + +src_install() { + perl-module_src_install || die "perl-module_src_install failed" + + # Adding some basic utitily for testing note + dodir /usr/share/${PN} + cp "${S}/bin/stresstest.sh" "${D}/usr/share/${PN}" + + # Adding some help for mysql backend driver + if use mysql; then + dodir /usr/share/${PN}/mysql + cp -r "${S}/mysql" "${D}/usr/share/${PN}" + fi + + # Adding a sample configuration file + dodir /etc + cp "${S}/config/noterc" "${D}/etc" + + # Supressing file not needed + for v in mysql text dbm general; do + if ! use ${v}; then + for u in `find "${D}" -type f -name *${v}.*pm`; do + rm ${u} + done + fi + done + + dodoc README Changelog TODO UPGRADE VERSION +} |