diff options
author | Sam James <sam@gentoo.org> | 2021-01-10 17:59:41 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-10 18:29:59 +0000 |
commit | f26e63017ac79590d66c1989d2ce900454717315 (patch) | |
tree | 60087e3b7eb7da6eab18723f1f063811b3de7856 /app-misc/note/note-1.3.26.ebuild | |
parent | app-misc/note: add changelog metadata (diff) | |
download | gentoo-f26e63017ac79590d66c1989d2ce900454717315.tar.gz gentoo-f26e63017ac79590d66c1989d2ce900454717315.tar.bz2 gentoo-f26e63017ac79590d66c1989d2ce900454717315.zip |
app-misc/note: bump to 1.3.26
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-misc/note/note-1.3.26.ebuild')
-rw-r--r-- | app-misc/note/note-1.3.26.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/app-misc/note/note-1.3.26.ebuild b/app-misc/note/note-1.3.26.ebuild new file mode 100644 index 000000000000..94a63b164318 --- /dev/null +++ b/app-misc/note/note-1.3.26.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit perl-module + +DESCRIPTION="A note taking perl program" +HOMEPAGE="https://www.daemon.de/NOTE" +SRC_URI="https://www.daemon.de/idisk/Apps/note/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="crypt dbm general mysql text" + +DEPEND=" + dev-perl/Config-General + dev-perl/TermReadKey + dev-perl/Term-ReadLine-Perl + dev-perl/YAML + virtual/perl-Storable + crypt? ( + dev-perl/Crypt-CBC + dev-perl/Crypt-Blowfish + dev-perl/Crypt-DES + ) + mysql? ( dev-perl/DBD-mysql ) +" +RDEPEND="${DEPEND}" + +# extraneous README that gets installed into the perl module +PERL_RM_FILES=( NOTEDB/README ) + +src_prepare() { + # Supressing file not needed + local v + for v in mysql text dbm general; do + if ! use ${v}; then + PERL_RM_FILES+=( NOTEDB/${v}.pm ) + fi + done + perl-module_src_prepare +} + +src_install() { + perl-module_src_install + + # Adding some basic utitily for testing note + exeinto /usr/share/${PN} + doexe bin/stresstest.sh + + # Adding some help for mysql backend driver + if use mysql; then + insinto /usr/share/${PN}/mysql + exeinto /usr/share/${PN}/mysql + doins mysql/{README,sql,permissions} + doexe mysql/install.sh + fi + + # Adding a sample configuration file + insinto /etc + doins config/noterc + + dodoc UPGRADE VERSION +} |