You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/bibutils/bibutils-6.10.ebuild

39 lines
787 B

# 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
}