summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai-Chun Ning <kaichun.ning@gmail.com>2023-05-12 19:16:38 +0200
committerJoonas Niilola <juippis@gentoo.org>2023-05-30 09:58:43 +0300
commit6847f1e6315628dee18d01cd0645505e2cd1286e (patch)
tree61325aaa76e79a66d34cb83dd239be6dce91ebeb
parentapp-office/calcurse: add 4.8.1 (diff)
downloadgentoo-6847f1e6315628dee18d01cd0645505e2cd1286e.tar.gz
gentoo-6847f1e6315628dee18d01cd0645505e2cd1286e.tar.bz2
gentoo-6847f1e6315628dee18d01cd0645505e2cd1286e.zip
app-office/calcurse: add missing dep for musl systems for 4.8.0
Signed-off-by: Kai-Chun Ning <kaichun.ning@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/31008 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
-rw-r--r--app-office/calcurse/calcurse-4.8.0-r1.ebuild (renamed from app-office/calcurse/calcurse-4.8.0.ebuild)7
1 files changed, 5 insertions, 2 deletions
diff --git a/app-office/calcurse/calcurse-4.8.0.ebuild b/app-office/calcurse/calcurse-4.8.0-r1.ebuild
index a918b427a68f..eac0ca24f616 100644
--- a/app-office/calcurse/calcurse-4.8.0.ebuild
+++ b/app-office/calcurse/calcurse-4.8.0-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
-inherit python-single-r1
+inherit autotools python-single-r1
DESCRIPTION="A text-based calendar and scheduling application"
HOMEPAGE="https://calcurse.org/"
@@ -19,6 +19,7 @@ IUSE="caldav doc"
RDEPEND="
sys-libs/ncurses:0=
+ sys-libs/timezone-data
${PYTHON_DEPS}
caldav? (
$(python_gen_cond_dep '
@@ -42,7 +43,9 @@ src_configure() {
src_compile() {
default
- python_fix_shebang contrib/caldav/calcurse-caldav
+ if use caldav; then
+ python_fix_shebang contrib/caldav/calcurse-caldav
+ fi
}
src_install() {