diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2021-03-31 16:02:55 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2021-03-31 16:07:33 +0200 |
commit | 9739194b9f3017af85679495544482e5d95cdf62 (patch) | |
tree | 14385450e103f2b0d7f610267e70231b13049280 /net-misc/htpdate | |
parent | sys-process/procps: ppc64 stable wrt bug #778935 (diff) | |
download | gentoo-9739194b9f3017af85679495544482e5d95cdf62.tar.gz gentoo-9739194b9f3017af85679495544482e5d95cdf62.tar.bz2 gentoo-9739194b9f3017af85679495544482e5d95cdf62.zip |
net-misc/htpdate: Added live ebuild for new upstream
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'net-misc/htpdate')
-rw-r--r-- | net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch | 35 | ||||
-rw-r--r-- | net-misc/htpdate/htpdate-9999.ebuild | 57 |
2 files changed, 92 insertions, 0 deletions
diff --git a/net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch b/net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch new file mode 100644 index 000000000000..fea1d85b10bc --- /dev/null +++ b/net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch @@ -0,0 +1,35 @@ +From ea14fbcd91e5575bf16bc64b7660a6d02a855d7a Mon Sep 17 00:00:00 2001 +From: Lars Wendler <polynomial-c@gentoo.org> +Date: Wed, 31 Mar 2021 15:46:38 +0200 +Subject: [PATCH] Makefile: Libraries belong into LDLIBS variable + +Signed-off-by: Lars Wendler <polynomial-c@gentoo.org> +--- + Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile b/Makefile +index 21668a6..a531f90 100644 +--- a/Makefile ++++ b/Makefile +@@ -8,7 +8,7 @@ PKG_CONFIG ?= pkg-config + + ifdef ENABLE_HTTPS + CFLAGS += -DENABLE_HTTPS +-LDFLAGS += $(shell $(PKG_CONFIG) --libs openssl) ++LDLIBS = $(shell $(PKG_CONFIG) --libs openssl) + endif + + INSTALL = install -c +@@ -16,7 +16,7 @@ INSTALL = install -c + all: htpdate + + htpdate: htpdate.c +- $(CC) $(CFLAGS) $(CPPFLAGS) -o htpdate htpdate.c $(LDFLAGS) ++ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o htpdate htpdate.c $(LDLIBS) + + install: all + mkdir -p $(bindir) +-- +2.31.1 + diff --git a/net-misc/htpdate/htpdate-9999.ebuild b/net-misc/htpdate/htpdate-9999.ebuild new file mode 100644 index 000000000000..033790209271 --- /dev/null +++ b/net-misc/htpdate/htpdate-9999.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic readme.gentoo-r1 toolchain-funcs + +DESCRIPTION="Synchronize local workstation with time offered by remote webservers" +HOMEPAGE="https://github.com/angeloc/htpdate" +if [[ "${PV}" == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/angeloc/htpdate.git" +else + SRC_URI="https://github.com/angeloc/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux" +fi +IUSE="+ssl" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="ssl? ( dev-libs/openssl:0= )" +RDEPEND="${DEPEND}" +BDEPEND="ssl? ( virtual/pkgconfig )" + +DOC_CONTENTS="If you would like to run htpdate as a daemon, set +appropriate http servers in /etc/conf.d/htpdate!" + +PATCHES=( "${FILESDIR}/${PN}-1.2.6-ldlibs.patch" ) + +src_prepare() { + default + + # Use more standard adjtimex() to fix uClibc builds. + sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] || die + # Don't compress man pages by default + sed '/gzip/d' -i Makefile || die +} + +src_compile() { + if use ssl ; then + append-cflags -DENABLE_HTTPS + export PKG_CONFIG="$(tc-getPKG_CONFIG)" + fi + + emake CFLAGS="-Wall ${CFLAGS}" CC="$(tc-getCC)" \ + $(usex ssl 'ENABLE_HTTPS=1' '') +} + +src_install() { + emake DESTDIR="${D}" bindir='$(prefix)/sbin' install + dodoc README.md Changelog + + newconfd "${FILESDIR}"/htpdate.conf htpdate + newinitd "${FILESDIR}"/htpdate.init-r1 htpdate + + readme.gentoo_create_doc +} |