commit: 70beeaaeeaaa0f22f829508526ae282904ad189b Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr> AuthorDate: Wed Feb 17 09:35:54 2021 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Wed Feb 17 09:35:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70beeaae
app-text/bibutils: Bump to 6.10 Closes: https://bugs.gentoo.org/761430 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr> Signed-off-by: David Seifert <soap <AT> gentoo.org> app-text/bibutils/Manifest | 1 + app-text/bibutils/bibutils-6.10.ebuild | 38 ++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/app-text/bibutils/Manifest b/app-text/bibutils/Manifest index ebad9e12db7..d5f41c15c88 100644 --- a/app-text/bibutils/Manifest +++ b/app-text/bibutils/Manifest @@ -1 +1,2 @@ +DIST bibutils_6.10_src.tgz 590002 BLAKE2B 91ea6c961978d381a65c1d5071c541409609dd9fdeb664cd7e66eb4871c2ecd0dfd6b06857294ae6ec049751a5939be23518782a5e1f14fdf848918849269402 SHA512 43cf107ee6d1bf6bf27a6bf46e1f4cbd83a4b78ef355730a9f37282fac399ee21d78538248730be85c0a8f724344782dcc6ab68e50f857d8ac4ea24cc4102911 DIST bibutils_6.7_src.tgz 580792 BLAKE2B 29c5863bc414ef7b2f362d95352c0e042c1bcc3275017df82b0206d96520b3f5c3fe1e12563577b84a8bd94b0677bf1ad04ecbd80dcbcc194a71037bbd6facba SHA512 08db07408eee26bce42dbd00b7e821ef41dc12c7ce847425e81145927bcfc6ea7180ff719056e089917811aa9675a09dd52e1e02b8187b8618f67647efcb1236 diff --git a/app-text/bibutils/bibutils-6.10.ebuild b/app-text/bibutils/bibutils-6.10.ebuild new file mode 100644 index 00000000000..fca15d38d42 --- /dev/null +++ b/app-text/bibutils/bibutils-6.10.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +MY_P="${PN}_${PV}" +DESCRIPTION="Interconverts between various bibliography formats using common XML intermediate" +HOMEPAGE="https://sourceforge.net/p/bibutils/home/Bibutils/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}_src.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +S="${WORKDIR}/${MY_P}" + +src_configure() { + ./configure \ + --dynamic \ + --install-dir "${ED}/usr/bin" \ + --install-lib "${ED}/usr/$(get_libdir)" || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + DISTRO_CFLAGS="${CFLAGS}" \ + LDFLAGSIN="${LDFLAGS}" +} + +src_test() { + emake \ + CC="$(tc-getCC)" \ + DISTRO_CFLAGS="${CFLAGS}" \ + LDFLAGSIN="${LDFLAGS}" test +}
