mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
app-misc/remind: add 05.00.06
https://dianne.skoll.ca/pipermail/remind-fans/2024/004907.html Signed-off-by: Emanuele Torre <torreemanuele6@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/38657 Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
committed by
Florian Schmaus
parent
c07299ec17
commit
bebf04d3e8
@@ -1,3 +1,4 @@
|
||||
DIST remind-04.00.03.tar.bz2 390884 BLAKE2B 4f619ec902f76c5c4857ffa85428154ef6fe525cc97bbe92272f3abca3e8cdd39dd45d1c45c5f6e87f0d22dde500dd80629882bdbe93a6b97b5da96757b5af9c SHA512 41d61d267d99d787993cd5bf3889f1fe80f76a0cfe5a7e2d360eb7239a1b5a05b50b3b5cde30c50404813e723545eb805148ca2c6e540eb9aacbf5e8ffd64014
|
||||
DIST remind-04.02.02.tar.bz2 413760 BLAKE2B d4e91b531c0e88dc4436a0399103af6c9ae8e642a8df729a49ac6be06e215705c7605424030d92761753637a68a89eea2d935347b40c1b39b626b13e4e7297db SHA512 2d10f8d0066c291d52220fc1c39cfc4948e5f1f94223780b7d4770348b5c9e06e2b8f34e1e193c06f8e74b26d3e4126fcaeea88dbf8900f064610df22e9c8739
|
||||
DIST remind-05.00.05.tar.bz2 468131 BLAKE2B dc02e21fa1da4eca47fe59bda3555f0fb7cee8d0eef5cca27be73f1d1053ad7b7c3a23cb7e2648bb88d9d5fbf8b39fbd7bb3df245b0eaf1f76ec6b124928bc2e SHA512 5e9657b3946d69ff1d615e5dead2013381cd12660dc0cdda39f7465227888aeb2cb2bc9c9dc4ab27474df82062520c44605d95339812325257e363b075c3e829
|
||||
DIST remind-05.00.06.tar.bz2 473106 BLAKE2B 0ae7d45076fe04469151aa780a833c40f259b841b693abc71c2b8e32e13ee1a3a6ddaec3a8bdb74330216b4a0b2c68788c66f6ebb3447a12c84dc3e4273c026a SHA512 a6e3d8a281acb9341f980d173c13a2f5e925581abd57fd47cedfeeaf0c05a51309069ba45dc305759a50ce82470a40568077dc5d3bc7bb9d3a36eb0a79b57006
|
||||
|
||||
49
app-misc/remind/remind-05.00.06.ebuild
Normal file
49
app-misc/remind/remind-05.00.06.ebuild
Normal file
@@ -0,0 +1,49 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="Ridiculously functional reminder program"
|
||||
HOMEPAGE="https://dianne.skoll.ca/projects/remind/"
|
||||
SRC_URI="https://salsa.debian.org/dskoll/remind/-/archive/${PV}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~x86"
|
||||
IUSE="tk"
|
||||
|
||||
RDEPEND="
|
||||
tk? ( >=dev-lang/tk-8.5 dev-tcltk/tcllib )
|
||||
"
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user