summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-03-16 18:32:49 +0000
committerSam James <sam@gentoo.org>2021-03-16 19:22:19 +0000
commit19ffcf6510af3fc4d07ccf889a98a818d57c3328 (patch)
tree99473c62d716874c06b36609d57ef2219fe0c231 /app-misc
parentapp-misc/note: drop 1.3.3-r2 (diff)
downloadgentoo-19ffcf6510af3fc4d07ccf889a98a818d57c3328.tar.gz
gentoo-19ffcf6510af3fc4d07ccf889a98a818d57c3328.tar.bz2
gentoo-19ffcf6510af3fc4d07ccf889a98a818d57c3328.zip
app-misc/worker: drop 3.8.3-r100
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/worker/Manifest1
-rw-r--r--app-misc/worker/worker-3.8.3-r100.ebuild59
2 files changed, 0 insertions, 60 deletions
diff --git a/app-misc/worker/Manifest b/app-misc/worker/Manifest
index 09eba53dc893..477abe57da21 100644
--- a/app-misc/worker/Manifest
+++ b/app-misc/worker/Manifest
@@ -1,2 +1 @@
-DIST worker-3.8.3.tar.bz2 1519483 BLAKE2B 45573bed62256eda879a776f8a65af63a5c57f8c89784445faf264d2e09403faecdeb225d99ee50498df4c21a9cdf69a131c7d391a24eafe48c2319808b009dd SHA512 fa5d078233a91ec603cd87718542cdd5d99ef89c5d2e72c84fe40c08778c5e9dde8e99a23ccfee5ef61e63535c809a48ccf71fe9a256fd7afa05f848c5045738
DIST worker-4.6.1.tar.bz2 1615384 BLAKE2B a0d665f82d585d4e8a7e515e44b23541da24f6712c86bff422d4612ea67292c31cd204367965f8dd0ed91e69fa11453f7fc5a0228b2508d8397bde39460ff6f1 SHA512 f5977bc2c84c1eebb0058d63c7d10a0b39fa3c3bace09b6adac82f6a17bd9df8b1e2ba8138d764899895b69493493245cb6f7aff15014471a109a023fe203e57
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
-}