summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2019-11-12 21:07:16 -0500
committerAaron Bauman <bman@gentoo.org>2019-11-12 21:10:44 -0500
commit243a28f3badcd4606895580a6caa13a367fc3af4 (patch)
treed81f4304bab4cdb864fc3c027234a4bb285997bc /dev-lua/lgi/lgi-0.6.2.ebuild
parentdev-libs/replicant: drop old (diff)
downloadgentoo-243a28f3badcd4606895580a6caa13a367fc3af4.tar.gz
gentoo-243a28f3badcd4606895580a6caa13a367fc3af4.tar.bz2
gentoo-243a28f3badcd4606895580a6caa13a367fc3af4.zip
dev-lua/lgi: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-lua/lgi/lgi-0.6.2.ebuild')
-rw-r--r--dev-lua/lgi/lgi-0.6.2.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-lua/lgi/lgi-0.6.2.ebuild b/dev-lua/lgi/lgi-0.6.2.ebuild
deleted file mode 100644
index d4b92fec99e8..000000000000
--- a/dev-lua/lgi/lgi-0.6.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs flag-o-matic
-
-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"
-IUSE=""
-
-RDEPEND=">=dev-lang/lua-5.1
- x11-libs/gtk+[introspection]"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-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_install() {
- emake DESTDIR="${D}" install
- dohtml -r docs/*
- dodoc README.md
-}