From 28be9909baa591286396fc6c32c8863c92797537 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ji=C5=99=C3=AD=20Netolick=C3=BD?= Date: Tue, 18 Nov 2025 18:11:01 +0100 Subject: [PATCH] Add forgotten file. --- app-misc/remind/remind-06.02.01.ebuild | 63 ++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 app-misc/remind/remind-06.02.01.ebuild diff --git a/app-misc/remind/remind-06.02.01.ebuild b/app-misc/remind/remind-06.02.01.ebuild new file mode 100644 index 0000000..26f719c --- /dev/null +++ b/app-misc/remind/remind-06.02.01.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit verify-sig + +DESCRIPTION="Ridiculously functional reminder program" +HOMEPAGE="https://dianne.skoll.ca/projects/remind/" +SRC_URI=" + https://dianne.skoll.ca/projects/remind/download/${P}.tar.gz + verify-sig? ( https://dianne.skoll.ca/projects/remind/download/${P}.tar.gz.sig ) +" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc x86" +IUSE="tk" + +RDEPEND=" + tk? ( >=dev-lang/tk-8.5 dev-tcltk/tcllib ) +" + +BDEPEND=" + verify-sig? ( + sec-keys/openpgp-keys-remind + ) +" + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/remind.gpg + +DEPEND="${RDEPEND} + dev-perl/Cairo + dev-perl/JSON-MaybeXS + dev-perl/Pango + virtual/perl-Getopt-Long +" +DOCS="docs/* examples/defs.rem" + +src_test() { + if [[ ${EUID} -eq 0 ]] ; then + ewarn "Testing fails if run as root. Skipping tests" + else + emake test + fi +} + +src_install() { + default + + if ! use tk ; then + rm \ + "${D}"/usr/bin/tkremind \ + "${D}"/usr/share/man/man1/tkremind* \ + || die + fi + + rm "${S}"/contrib/rem2ics-*/{Makefile,rem2ics.spec} || die + insinto /usr/share/${PN} + doins -r contrib/ + insinto /usr/share/vim/vimfiles/syntax + doins examples/remind.vim +} -- 2.52.0