diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2017-01-22 02:28:34 +0100 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2017-01-22 02:28:34 +0100 |
commit | ff09f78d5df7f15706ec64560df4cf5b697dd644 (patch) | |
tree | 9eab1418b70ba0fd6a63b478f6e303cf91e84176 /dev-lua/luaexpat | |
parent | dev-lua/luasocket: Remove old (diff) | |
download | gentoo-ff09f78d5df7f15706ec64560df4cf5b697dd644.tar.gz gentoo-ff09f78d5df7f15706ec64560df4cf5b697dd644.tar.bz2 gentoo-ff09f78d5df7f15706ec64560df4cf5b697dd644.zip |
dev-lua/luaexpat: Remove old
Package-Manager: portage-2.3.3
Diffstat (limited to 'dev-lua/luaexpat')
-rw-r--r-- | dev-lua/luaexpat/luaexpat-1.3.0.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-lua/luaexpat/luaexpat-1.3.0.ebuild b/dev-lua/luaexpat/luaexpat-1.3.0.ebuild deleted file mode 100644 index 64445c8c358b..000000000000 --- a/dev-lua/luaexpat/luaexpat-1.3.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit multilib toolchain-funcs flag-o-matic eutils - -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 ~hppa ~x86" -IUSE="" - -RDEPEND=">=dev-lang/lua-5.1[deprecated] - dev-libs/expat" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_compile() { - append-flags -fPIC - emake \ - CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - CC="$(tc-getCC)" \ - LD="$(tc-getCC) -shared" \ - LUA_LDIR="$(pkg-config --variable INSTALL_LMOD lua)" \ - LUA_CDIR="$(pkg-config --variable INSTALL_CMOD lua)" \ - LUA_INC="-I$(pkg-config --variable INSTALL_INC lua)" -} - -src_install() { - emake \ - DESTDIR="${D}" \ - LUA_LDIR="$(pkg-config --variable INSTALL_LMOD lua)" \ - LUA_CDIR="$(pkg-config --variable INSTALL_CMOD lua)" \ - LUA_INC="-I$(pkg-config --variable INSTALL_INC lua)" \ - install - dodoc README - dohtml -r doc/* -} |