blob: efaba36468dc5cafbfa3e3231b42969a5c981896 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo toolchain-funcs
DESCRIPTION="PDB Record I/O Libraries -- c version"
HOMEPAGE="http://www.cgl.ucsf.edu/Overview/software.html"
SRC_URI="mirror://gentoo/90/${P}.shar"
S=${WORKDIR}
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
BDEPEND="app-arch/sharutils"
PATCHES=( "${FILESDIR}"/${P}-dynlib+flags.patch )
src_unpack() {
edo unshar "${DISTDIR}"/${A}
}
src_prepare() {
default
tc-export CC RANLIB AR
}
src_compile() {
emake ${PN}.so
use static-libs && emake ${PN}.a
}
src_install() {
dolib.so ${PN}.so*
use static-libs && dolib.a ${PN}.a
insinto /usr/include/${PN}
doins *.h
}
|