summaryrefslogtreecommitdiff
path: root/app-misc/remind/remind-03.03.05.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-11-04 21:16:38 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-11-04 21:16:38 +0000
commitf932718a139f93e19a6883c061f81b365a408592 (patch)
tree216b44e4ea101b2d02ea32782355ed127f7b1df4 /app-misc/remind/remind-03.03.05.ebuild
parentf5f1e7d30401ef31b8776c96a80cf5caae0a4e81 (diff)
gentoo auto-resync : 04:11:2022 - 21:16:37
Diffstat (limited to 'app-misc/remind/remind-03.03.05.ebuild')
-rw-r--r--app-misc/remind/remind-03.03.05.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/app-misc/remind/remind-03.03.05.ebuild b/app-misc/remind/remind-03.03.05.ebuild
deleted file mode 100644
index 608ff3826b2e..000000000000
--- a/app-misc/remind/remind-03.03.05.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Ridiculously functional reminder program"
-HOMEPAGE="https://dianne.skoll.ca/projects/remind/"
-SRC_URI="https://dianne.skoll.ca/projects/remind/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="tk"
-
-RDEPEND="
- tk? ( >=dev-lang/tk-8.5 dev-tcltk/tcllib )
-"
-DOCS="docs/WHATSNEW examples/defs.rem www/README.*"
-
-src_prepare() {
- default
- sed -i 's:$(MAKE) install:&-nostripped:' "${S}"/Makefile || die
-}
-
-src_test() {
- if [[ ${EUID} -eq 0 ]] ; then
- ewarn "Testing fails if run as root. Skipping tests"
- else
- emake test
- fi
-}
-
-src_install() {
- default
- dobin www/rem2html
-
- if ! use tk ; then
- rm \
- "${D}"/usr/bin/cm2rem* \
- "${D}"/usr/bin/tkremind \
- "${D}"/usr/share/man/man1/cm2rem* \
- "${D}"/usr/share/man/man1/tkremind* \
- || die
- fi
-
- rm "${S}"/contrib/rem2ics-*/{Makefile,rem2ics.spec} || die
- insinto /usr/share/${PN}
- doins -r contrib/
-}