diff options
author | Vadim A. Misbakh-Soloviov <git@mva.name> | 2016-07-26 02:57:46 +0700 |
---|---|---|
committer | Vadim A. Misbakh-Soloviov <git@mva.name> | 2016-07-26 02:57:46 +0700 |
commit | c731b26174f23830ac6be9684b545602cc57b8ea (patch) | |
tree | cced31053d78b2b5c5d429a3ec5d66a45a5bf820 /dev-lua/luasec | |
parent | msgpack: update ebuild (diff) | |
download | lua-c731b26174f23830ac6be9684b545602cc57b8ea.tar.gz lua-c731b26174f23830ac6be9684b545602cc57b8ea.tar.bz2 lua-c731b26174f23830ac6be9684b545602cc57b8ea.zip |
dev-lua/*: move to EAPI=6 + renewed lua.eclass
Diffstat (limited to 'dev-lua/luasec')
-rw-r--r-- | dev-lua/luasec/luasec-9999.ebuild | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/dev-lua/luasec/luasec-9999.ebuild b/dev-lua/luasec/luasec-9999.ebuild index c98f525..d99ce75 100644 --- a/dev-lua/luasec/luasec-9999.ebuild +++ b/dev-lua/luasec/luasec-9999.ebuild @@ -1,23 +1,21 @@ # Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -VCS="git-r3" +VCS="git" +GITHUB_A="brunoos" IS_MULTILIB=true inherit lua DESCRIPTION="Lua binding for OpenSSL library to provide TLS/SSL communication." HOMEPAGE="http://www.inf.puc-rio.br/~brunoos/luasec/" -#EGIT_REPO_URI="https://github.com/msva/luasec" -#EGIT_REPO_URI="https://github.com/mwild1/luasec" -EGIT_REPO_URI="https://github.com/brunoos/luasec" LICENSE="MIT" SLOT="0" KEYWORDS="" -IUSE="+examples" +IUSE="examples" RDEPEND=" dev-lua/luasocket @@ -31,7 +29,7 @@ all_lua_prepare() { sed -i -r \ -e 's#(MAKE\)).*(install)#\1 \2#' \ Makefile -# epatch "${FILESDIR}/fix_removed_destdir_support.patch" || die "Probably, Upstream finally returned DESTDIR instalation back. Please, report that." + epatch "${FILESDIR}/fix_removed_destdir_support.patch" || die "Probably, Upstream finally returned DESTDIR instalation back. Please, report that." cd src lua_default } @@ -41,8 +39,8 @@ each_lua_configure() { myeconfargs=() myeconfargs+=( LD='$(CC)' - LUAPATH="\$(DESTDIR)/$(lua_get_pkgvar INSTALL_LMOD)" - LUACPATH="\$(DESTDIR)/$(lua_get_pkgvar INSTALL_CMOD)" + LUAPATH="$(lua_get_pkgvar INSTALL_LMOD)" + LUACPATH="$(lua_get_pkgvar INSTALL_CMOD)" ) lua_default } |