blob: cc8aa0b44b78fc5e077f263212a002322551fe54 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit fortran-2 toolchain-funcs
DESCRIPTION="PMEL fork of XGKS, an X11-based version of the ANSI Graphical Kernel System"
HOMEPAGE="http://www.gentoogeek.org/viewvc/Linux/xgks-pmel/"
SRC_URI="http://www.gentoogeek.org/files/${P}.tar.gz"
LICENSE="UCAR-Unidata"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="doc"
RDEPEND="x11-libs/libX11"
DEPEND="${RDEPEND}"
BDEPEND="
sys-devel/flex
sys-apps/groff"
PATCHES=( "${FILESDIR}"/aclocal.patch )
src_configure() {
sed -i -e "s:lib64:$(get_libdir):g" port/master.mk.in \
fontdb/Makefile.in || die
CFLAGS=${CFLAGS} LD_X11='-L/usr/$(get_libdir) -lX11' \
FC=$(tc-getFC) CC=$(tc-getCC) OS=linux \
./configure --prefix=/usr --exec_prefix=/usr/bin \
|| die
}
src_compile() {
sed -i -e "s:port/all port/install:port/all:g" Makefile \
|| die
# Fails parallel build, bug #295724
emake -j1
emake -C src/fortran -j1
}
src_install() {
pushd progs >/dev/null || die
local tool
for tool in defcolors font mi pline pmark; do
newbin ${tool} xgks-${tool}
done
popd >/dev/null || die
dolib.a src/lib/libxgks.a
dodoc COPYRIGHT HISTORY README
doman doc/{xgks.3,xgks_synop.3}
if use doc; then
newdoc doc/binding/cbinding.me cbinding
newdoc doc/userdoc/userdoc.me userdoc
docinto examples
dodoc progs/{hanoi.c,star.f}
fi
insinto /usr/include/xgks
doins src/lib/gks*.h
doins src/lib/gksm/gksm*.h
doins src/fortran/f*.h
doins src/lib/w*.h
doins src/lib/{input.h,metafile.h,polylines.h,polymarkers.h,text.h}
insinto /usr/include
doins src/lib/xgks.h
doins port/udposix.h
insinto /usr/share/xgksfonts
doins fontdb/{[1-9],*.gksfont}
}
|