diff options
author | 2021-01-10 18:16:25 +0000 | |
---|---|---|
committer | 2021-01-10 18:29:59 +0000 | |
commit | c2c531a30e96f11a1e50c4c2dd8bec9286a71e72 (patch) | |
tree | 74ba77352c2fecdb1ad7973de9bd2b87ecb5680a /app-misc/worker/worker-4.6.1-r100.ebuild | |
parent | app-misc/worker: add changelog to metadata (diff) | |
download | gentoo-c2c531a30e96f11a1e50c4c2dd8bec9286a71e72.tar.gz gentoo-c2c531a30e96f11a1e50c4c2dd8bec9286a71e72.tar.bz2 gentoo-c2c531a30e96f11a1e50c4c2dd8bec9286a71e72.zip |
app-misc/worker: bump to 4.6.1
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-misc/worker/worker-4.6.1-r100.ebuild')
-rw-r--r-- | app-misc/worker/worker-4.6.1-r100.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/app-misc/worker/worker-4.6.1-r100.ebuild b/app-misc/worker/worker-4.6.1-r100.ebuild new file mode 100644 index 000000000000..1ef96e951ce2 --- /dev/null +++ b/app-misc/worker/worker-4.6.1-r100.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-{1..2} ) + +inherit autotools 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? ( sys-apps/dbus ) + 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_prepare() { + default + + # Don't use /usr/share/appdata + sed -i -e "s:/appdata:/metainfo:" contrib/Makefile.am || die + eautoreconf +} + +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_install() { + default + + if use examples; then + docinto examples + dodoc examples/config-* + fi +} |