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 40BA8138359 for ; Tue, 13 Oct 2020 16:55:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E904E08CD; Tue, 13 Oct 2020 16:55:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 26C48E08CD for ; Tue, 13 Oct 2020 16:55:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2FD4333BEB2 for ; Tue, 13 Oct 2020 16:55:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D69C3A5 for ; Tue, 13 Oct 2020 16:55:20 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1602607660.b00346e5fe9f537fca84a9842de04a82ca497ce9.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/worker/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/worker/worker-3.8.3-r100.ebuild X-VCS-Directories: app-misc/worker/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: b00346e5fe9f537fca84a9842de04a82ca497ce9 X-VCS-Branch: master Date: Tue, 13 Oct 2020 16:55:20 +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: e664f314-f679-4250-8c82-c85b80c61fb3 X-Archives-Hash: b2642abd90ef24cf410d0ce829b5a739 commit: b00346e5fe9f537fca84a9842de04a82ca497ce9 Author: Marek Szuba gentoo org> AuthorDate: Tue Oct 13 14:58:25 2020 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue Oct 13 16:47:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b00346e5 app-misc/worker: migrate to lua-single.eclass Signed-off-by: Marek Szuba gentoo.org> app-misc/worker/worker-3.8.3-r100.ebuild | 59 ++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/app-misc/worker/worker-3.8.3-r100.ebuild b/app-misc/worker/worker-3.8.3-r100.ebuild new file mode 100644 index 00000000000..cf6618c8bd7 --- /dev/null +++ b/app-misc/worker/worker-3.8.3-r100.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-{1..2} ) + +inherit lua-single + +DESCRIPTION="Worker Filemanager: Amiga Directory Opus 4 clone" +HOMEPAGE="http://www.boomerangsworld.de/cms/worker/" +SRC_URI="http://www.boomerangsworld.de/cms/worker/downloads/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +IUSE="avfs debug dbus examples libnotify lua +magic xinerama xft" + +REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )" + +RDEPEND="x11-libs/libX11 + avfs? ( >=sys-fs/avfs-0.9.5 ) + dbus? ( dev-libs/dbus-glib ) + lua? ( ${LUA_DEPS} ) + magic? ( sys-apps/file ) + xft? ( x11-libs/libXft ) + xinerama? ( x11-libs/libXinerama )" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog INSTALL NEWS README README_LARGEFILES THANKS ) + +src_configure() { + # there is no ./configure flag to disable libXinerama support + export ac_cv_lib_Xinerama_XineramaQueryScreens=$(usex xinerama) + econf \ + --without-hal \ + --enable-utf8 \ + $(use_with avfs) \ + $(use_with dbus) \ + $(use_enable debug) \ + $(use_enable libnotify inotify) \ + $(use_enable lua) \ + $(use_with magic libmagic) \ + $(use_enable xft) +} + +src_compile() { + emake -j1 +} + +src_install() { + default + + if use examples; then + docinto examples + dodoc examples/config-* + fi +}