diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-09-11 13:24:52 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-09-11 18:19:23 +0200 |
commit | fb1d29b8a6e1840e98aa5412f3a16b2e43f1475e (patch) | |
tree | 504c22a5d551676135b1f9e56f9542a68cc3715b /dev-lua/luasocket | |
parent | dev-libs/xerces-c: Drop old (diff) | |
download | gentoo-fb1d29b8a6e1840e98aa5412f3a16b2e43f1475e.tar.gz gentoo-fb1d29b8a6e1840e98aa5412f3a16b2e43f1475e.tar.bz2 gentoo-fb1d29b8a6e1840e98aa5412f3a16b2e43f1475e.zip |
dev-lua/luasocket: Drop old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-lua/luasocket')
-rw-r--r-- | dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild b/dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild deleted file mode 100644 index b2b42fd1b64b..000000000000 --- a/dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit multilib multilib-minimal flag-o-matic - -DESCRIPTION="Networking support library for the Lua language" -HOMEPAGE="http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/" -SRC_URI="https://github.com/diegonehab/${PN}/archive/v${PV/_/-}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm ~arm64 hppa ~mips ppc ppc64 sparc x86" -IUSE="debug" - -RDEPEND=">=dev-lang/lua-5.1.5-r2[deprecated,${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND} - >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]" - -S=${WORKDIR}/${PN}-${PV/_/-} - -RESTRICT="test" - -src_prepare() { - multilib_copy_sources -} - -multilib_src_compile() { - emake \ - CC="$(tc-getCC) ${CFLAGS}" \ - LD="$(tc-getCC) ${LDFLAGS}"\ - $(usex debug DEBUG="DEBUG" "") -} - -multilib_src_install() { - local luav=$($(tc-getPKG_CONFIG) --variable V lua) - emake \ - DESTDIR="${D}" \ - LUAPREFIX_linux=/usr \ - LUAV=${luav} \ - CDIR_linux=$(get_libdir)/lua/${luav} \ - install-unix -} - -multilib_src_install_all() { - dodoc NEW README - dohtml -r doc/. -} |