diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2019-09-19 08:40:29 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2019-09-19 08:40:29 +0100 |
commit | 167d0cac1641a2946296cff5cca26a5ba7b85448 (patch) | |
tree | 9336b8e4feefb64e0ffb78f79792a70bb762ebea /dev-lua/lgi | |
parent | dev-libs/libffi: backport emutramp fix to 3.2.1, bug #694916 (diff) | |
download | gentoo-167d0cac1641a2946296cff5cca26a5ba7b85448.tar.gz gentoo-167d0cac1641a2946296cff5cca26a5ba7b85448.tar.bz2 gentoo-167d0cac1641a2946296cff5cca26a5ba7b85448.zip |
dev-lua/lgi: add slot operator against libffi, bug #688886
While at it bump up to EAPI=7
Reported-by: Kent Fredric
Closes: https://bugs.gentoo.org/688886
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-lua/lgi')
-rw-r--r-- | dev-lua/lgi/lgi-0.9.0-r1.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/dev-lua/lgi/lgi-0.9.0-r1.ebuild b/dev-lua/lgi/lgi-0.9.0-r1.ebuild new file mode 100644 index 000000000000..e6445f8259a5 --- /dev/null +++ b/dev-lua/lgi/lgi-0.9.0-r1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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/pavouk/lgi/archive/${PV}.tar.gz -> ${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:0=" +DEPEND="${RDEPEND} + virtual/pkgconfig + test? ( + x11-libs/cairo[glib] + x11-libs/gtk+[introspection] + ${VIRTUALX_DEPEND} + )" + +src_prepare() { + default + + 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() { + virtx emake 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 +} |