summaryrefslogtreecommitdiff
path: root/app-misc/worker
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-03-20 14:27:17 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-03-20 14:27:17 +0000
commit5bb9ff1ee56d2b5e75e01a7f066d8b0cec84ec02 (patch)
tree66e860a5099bcad013f1cf667255dc372a7c11b3 /app-misc/worker
parent7218e1b46bceac05841e90472501742d905fb3fc (diff)
gentoo resync : 20.03.2021
Diffstat (limited to 'app-misc/worker')
-rw-r--r--app-misc/worker/Manifest2
-rw-r--r--app-misc/worker/worker-3.8.3-r100.ebuild59
2 files changed, 0 insertions, 61 deletions
diff --git a/app-misc/worker/Manifest b/app-misc/worker/Manifest
index 85f12d4ede21..125a2357d3a0 100644
--- a/app-misc/worker/Manifest
+++ b/app-misc/worker/Manifest
@@ -1,5 +1,3 @@
-DIST worker-3.8.3.tar.bz2 1519483 BLAKE2B 45573bed62256eda879a776f8a65af63a5c57f8c89784445faf264d2e09403faecdeb225d99ee50498df4c21a9cdf69a131c7d391a24eafe48c2319808b009dd SHA512 fa5d078233a91ec603cd87718542cdd5d99ef89c5d2e72c84fe40c08778c5e9dde8e99a23ccfee5ef61e63535c809a48ccf71fe9a256fd7afa05f848c5045738
DIST worker-4.6.1.tar.bz2 1615384 BLAKE2B a0d665f82d585d4e8a7e515e44b23541da24f6712c86bff422d4612ea67292c31cd204367965f8dd0ed91e69fa11453f7fc5a0228b2508d8397bde39460ff6f1 SHA512 f5977bc2c84c1eebb0058d63c7d10a0b39fa3c3bace09b6adac82f6a17bd9df8b1e2ba8138d764899895b69493493245cb6f7aff15014471a109a023fe203e57
-EBUILD worker-3.8.3-r100.ebuild 1350 BLAKE2B ae916e885f177c37254b0c1fc5239f8f4de0d58c2bdb01cda99fec2ee4ae1e74b51e390bf4faaa0c7361f23853eb3b9f4636f6ae715951e79a98f0c1b8169622 SHA512 9b2d3087f599bb130516cd6b64ee95496eed76c217be928d18d05fb45d9b2ddb373edc2f01477aebc89f4097f4063898ce31ab84150102fc6c237bbb59903a81
EBUILD worker-4.6.1-r100.ebuild 1461 BLAKE2B ce272601e1963df20e1f1951daec4c98faa43081e3e4f262d6f18f174bc2dcb88c9cdfa845bec4f0e21e1ec85fc4f43e599286908b83c26f9a35bae22b86c50a SHA512 3a2d5b007fb7d5e02da607e274c7d3a9658242369f743d0dff4abb4c0ac4a54f14bad26463f0fbcc1b5e9270475bb9e5d45b6a2dd991b7216cfc1c72bc051448
MISC metadata.xml 625 BLAKE2B 663b7236063925cb15a6025b7c48b0cceb01c0af01955215eed227939c1e6f471de78fa16ddaba4eb152b78303d835690a7b18d630f7440bab3934c89b69fc46 SHA512 b8a94fd69a914d144791fca62c5f52085dfc8d9f2d09810860e761683f34bef87623f0e15a33713fac06a1c7529f1967faf155c96b5a8d5bef7a9abb9ff02883
diff --git a/app-misc/worker/worker-3.8.3-r100.ebuild b/app-misc/worker/worker-3.8.3-r100.ebuild
deleted file mode 100644
index f03fb05716e1..000000000000
--- a/app-misc/worker/worker-3.8.3-r100.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2021 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
-}