forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lgi-0.6.2-r1.ebuild
53 lines (43 loc) · 1.26 KB
/
lgi-0.6.2-r1.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
VIRTUALX_REQUIRED="manual"
inherit eutils toolchain-funcs flag-o-matic virtualx
DESCRIPTION="Lua bindings using gobject-introspection"
HOMEPAGE="https://github.com/pavouk/lgi"
SRC_URI="https://github.com/downloads/pavouk/lgi/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE="examples test"
RDEPEND=">=dev-lang/lua-5.1
dev-libs/gobject-introspection
dev-libs/glib
virtual/libffi"
DEPEND="${RDEPEND}
virtual/pkgconfig
test? (
x11-libs/cairo[glib]
x11-libs/gtk+[introspection]
${VIRTUALX_DEPEND}
)"
src_prepare() {
sed -i \
-e "s:^LUA_LIBDIR.*$:LUA_LIBDIR = $($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua):" \
-e "s:^LUA_SHAREDIR.*$:LUA_SHAREDIR = $($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua):" \
"${S}"/lgi/Makefile || die "sed failed"
}
src_compile() {
emake CC="$(tc-getCC)" COPTFLAGS="-Wall -Wextra ${CFLAGS}" LIBFLAG="-shared ${LDFLAGS}"
}
src_test() {
Xemake CC="$(tc-getCC)" COPTFLAGS="-Wall -Wextra ${CFLAGS}" LIBFLAG="-shared ${LDFLAGS}" check
}
src_install() {
emake DESTDIR="${D}" install
dohtml -r docs/*
dodoc README.md
if use examples; then
dodoc -r samples
fi
}