blob: ff15d9bad3bbef32438dacf955bc6c3768c5a8c0 (
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
41
42
43
|
# 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"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
src_prepare() {
default
sed -ie 's/REPLACE_INSTALLDIR/${DESTDIR}&/' Makefile_start || die
sed -ie 's/REPLACE_LIBINSTALLDIR/${DESTDIR}&/' Makefile_start || die
}
src_configure() {
./configure \
--install-dir /usr/bin \
--install-lib /usr/$(get_libdir) \
--dynamic || die
}
src_compile() {
emake \
CC="$(tc-getCC)" \
DISTRO_CFLAGS="${CFLAGS}" \
LDFLAGSIN="${LDFLAGS}"
}
src_test() {
emake \
CC="$(tc-getCC)" \
DISTRO_CFLAGS="${CFLAGS}" \
LDFLAGSIN="${LDFLAGS}" test
}
|