diff options
author | Dirkjan Ochtman <djc@gentoo.org> | 2012-09-30 12:00:47 +0000 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2012-09-30 12:00:47 +0000 |
commit | 9014e8724c9d44f05f11e85b356623608ce39149 (patch) | |
tree | 40bc6eb3a0b615463ef5c0075e278cb34c811fb3 /dev-lua | |
parent | Stable for amd64, wrt bug #428078 (diff) | |
download | gentoo-2-9014e8724c9d44f05f11e85b356623608ce39149.tar.gz gentoo-2-9014e8724c9d44f05f11e85b356623608ce39149.tar.bz2 gentoo-2-9014e8724c9d44f05f11e85b356623608ce39149.zip |
Remove old version of luaexpat.
(Portage version: 2.1.11.23/cvs/Linux x86_64)
Diffstat (limited to 'dev-lua')
-rw-r--r-- | dev-lua/luaexpat/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lua/luaexpat/luaexpat-1.2.0.ebuild | 46 |
2 files changed, 4 insertions, 47 deletions
diff --git a/dev-lua/luaexpat/ChangeLog b/dev-lua/luaexpat/ChangeLog index cbb967fcfc52..f47a635b9fb2 100644 --- a/dev-lua/luaexpat/ChangeLog +++ b/dev-lua/luaexpat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lua/luaexpat # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v 1.8 2012/09/28 17:33:24 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v 1.9 2012/09/30 12:00:47 djc Exp $ + + 30 Sep 2012; Dirkjan Ochtman <djc@gentoo.org> -luaexpat-1.2.0.ebuild: + Remove old version. 28 Sep 2012; Johannes Huber <johu@gentoo.org> luaexpat-1.2.0-r1.ebuild: Stable for x86, wrt bug #429606 diff --git a/dev-lua/luaexpat/luaexpat-1.2.0.ebuild b/dev-lua/luaexpat/luaexpat-1.2.0.ebuild deleted file mode 100644 index be422b705711..000000000000 --- a/dev-lua/luaexpat/luaexpat-1.2.0.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/luaexpat-1.2.0.ebuild,v 1.2 2012/05/04 04:01:50 jdhore Exp $ - -EAPI=2 - -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 ~x86" -IUSE="" - -RDEPEND=">=dev-lang/lua-5.1[deprecated] - dev-libs/expat" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - sed -i -e "s#^LUA_LIBDIR=.*#LUA_LIBDIR=$(pkg-config --variable INSTALL_CMOD lua)#" "${S}/config" - sed -i -e "s#^LUA_DIR=.*#LUA_DIR=$(pkg-config --variable INSTALL_LMOD lua)#" "${S}/config" - sed -i -e "s#^LUA_INC=.*#LUA_INC=$(pkg-config --variable INSTALL_INC lua)#" "${S}/config" - sed -i -e "s#^EXPAT_INC=.*#EXPAT_INC=/usr/include#" "${S}/config" - sed -i -e "s#^LUA_VERSION_NUM=.*#LUA_VERSION_NUM=501#" "${S}/config" - epatch "${FILESDIR}/${P}-makefile.patch" -} - -src_compile() { - append-flags -fPIC - emake \ - CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - CC="$(tc-getCC)" \ - LD="$(tc-getCC) -shared" \ - || die -} - -src_install() { - make DESTDIR="${D}" install || die "Install failed" - dodoc README || die - dohtml -r doc/* || die -} |