blob: 88466aa59af939ba1080654202fea27d1630c07f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="command line date and time utilities"
HOMEPAGE="https://www.fresse.org/dateutils/ https://github.com/hroptatyr/dateutils"
case "${PV}" in
9999)
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/hroptatyr/dateutils.git"
;;
*)
SRC_URI="https://github.com/hroptatyr/dateutils/releases/download/v${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~x86"
esac
LICENSE="BSD"
SLOT="0"
BDEPEND="app-arch/xz-utils"
DEPEND="sys-libs/timezone-data"
# bug 429810
RDEPEND="${DEPEND}
!sys-fabric/dapl"
PATCHES=(
"${FILESDIR}/${PN}-0.4.6-unportable-sys-sysctl_h.patch"
)
src_prepare() {
default
[[ "${PV}" = 9999 ]] && eautoreconf
}
src_configure() {
econf CFLAGS="${CFLAGS}"
}
|