summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2020-11-24 14:03:39 +0100
committerConrad Kostecki <conikost@gentoo.org>2020-11-24 14:03:57 +0100
commit785f3d1401dc44d810fd3c7d4448fe285528622e (patch)
tree42a7002f6360cff2940e7c26b985f958194bf22b /dev-lua/luaexpat
parentdev-lua/luafilesystem: drop old version (diff)
downloadgentoo-785f3d1401dc44d810fd3c7d4448fe285528622e.tar.gz
gentoo-785f3d1401dc44d810fd3c7d4448fe285528622e.tar.bz2
gentoo-785f3d1401dc44d810fd3c7d4448fe285528622e.zip
dev-lua/luaexpat: drop old version
Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua/luaexpat')
-rw-r--r--dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild b/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild
deleted file mode 100644
index 398943aed419..000000000000
--- a/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multilib toolchain-funcs flag-o-matic eutils multilib-minimal
-
-DESCRIPTION="LuaExpat is a SAX XML parser based on the Expat library"
-HOMEPAGE="http://www.keplerproject.org/luaexpat/"
-SRC_URI="http://matthewwild.co.uk/projects/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~mips ppc ppc64 sparc x86"
-IUSE=""
-
-RDEPEND=">=dev-lang/lua-5.1.5-r2:0[deprecated,${MULTILIB_USEDEP}]
- >=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- multilib_copy_sources
-
- append-flags -fPIC
-}
-
-multilib_src_compile() {
- emake \
- CFLAGS="${CFLAGS}" \
- LDFLAGS="${LDFLAGS}" \
- CC="$(tc-getCC)" \
- LD="$(tc-getCC) -shared" \
- LUA_LDIR="$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)" \
- LUA_CDIR="$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua)" \
- LUA_INC="-I$($(tc-getPKG_CONFIG) --variable INSTALL_INC lua)"
-}
-
-multilib_src_install() {
- emake \
- DESTDIR="${D}" \
- LUA_LDIR="$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)" \
- LUA_CDIR="$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua)" \
- LUA_INC="-I$($(tc-getPKG_CONFIG) --variable INSTALL_INC lua)" \
- install
-}
-
-multilib_src_install_all() {
- dodoc README
- dohtml -r doc/*
-}