From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 84CFD13835A for ; Fri, 26 Mar 2021 00:39:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9103FE081E; Fri, 26 Mar 2021 00:39:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48A7DE081B for ; Fri, 26 Mar 2021 00:39:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9AEF340D96 for ; Fri, 26 Mar 2021 00:39:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1C324A8 for ; Fri, 26 Mar 2021 00:39:05 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1616719032.a170471d58d1dbd53a4576631775d3dbb09890a1.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/webmcp/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/webmcp/webmcp-1.2.6-r1.ebuild X-VCS-Directories: www-apps/webmcp/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: a170471d58d1dbd53a4576631775d3dbb09890a1 X-VCS-Branch: master Date: Fri, 26 Mar 2021 00:39:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2f22e454-56b1-40c0-8ba5-7e3a6c90427e X-Archives-Hash: 5d54e1eecc731bc2a992ed128c585bb9 commit: a170471d58d1dbd53a4576631775d3dbb09890a1 Author: Conrad Kostecki gentoo org> AuthorDate: Fri Mar 26 00:35:46 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Mar 26 00:37:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a170471d www-apps/webmcp: migrate to slotted lua Closes: https://bugs.gentoo.org/752873 Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> www-apps/webmcp/webmcp-1.2.6-r1.ebuild | 74 ++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) diff --git a/www-apps/webmcp/webmcp-1.2.6-r1.ebuild b/www-apps/webmcp/webmcp-1.2.6-r1.ebuild new file mode 100644 index 00000000000..135b1a65ad3 --- /dev/null +++ b/www-apps/webmcp/webmcp-1.2.6-r1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-{1..4} luajit ) + +inherit lua-single toolchain-funcs + +MY_P=${PN}-v${PV} +DESCRIPTION="Web application framework written in Lua and C" +HOMEPAGE="https://www.public-software-group.org/webmcp" +SRC_URI="https://www.public-software-group.org/pub/projects/${PN}/v${PV}/${MY_P}.tar.gz" + +LICENSE="HPND" +KEYWORDS="~amd64" +SLOT=0 + +RDEPEND=" + ${LUA_DEPS} + dev-db/postgresql:= +" +DEPEND="${RDEPEND}" + +S="${WORKDIR}"/${MY_P} + +PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) + +src_prepare() { + default + + # Use correct LUA version + sed -e "s/-llua/$(lua_get_LIBS)/g" -i libraries/multirand/Makefile -i libraries/mondelefant/Makefile -i libraries/extos/Makefile || die +} + +src_compile() { + emake CC="$(tc-getCC) $(lua_get_CFLAGS)" LD="$(tc-getCC)" MYLDFLAGS="${LDFLAGS}" + # Dereference symlinks + cd framework + mkdir lib.link + mv lib/* lib.link + cp lib.link/* lib +} + +src_install() { + into /usr/lib/${PN} + dolib.so framework/lib/*.so + for subdir in "" ".precompiled"; do + MY_DEST=/usr/lib/${PN}/framework${subdir} + + cd framework${subdir} + exeinto ${MY_DEST}/accelerator + doexe accelerator/webmcp_accelerator.so + insinto ${MY_DEST} + doins -r env js + exeinto ${MY_DEST}/cgi-bin + doexe cgi-bin/webmcp*.lua + into ${MY_DEST} + dobin bin/* + insinto ${MY_DEST}/lib + doins lib/*.lua + cd .. + + for file in extos.so mondelefant_native.so multirand.so; do + dosym ../../$(get_libdir)/$file ${MY_DEST}/lib/$file + done + + insinto /usr/share/${PN} + doins -r demo-app${subdir} + done + dodoc doc/*sample.conf libraries/mondelefant/example.lua + docinto html + dodoc doc/autodoc.html +}