Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/worker/
Date: Fri, 15 Feb 2019 19:10:24
Message-Id: 1550257809.b655f50f4a46b362cf2e87a90c07f7b0e86c8af2.zlogene@gentoo
1 commit: b655f50f4a46b362cf2e87a90c07f7b0e86c8af2
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 15 19:10:09 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 15 19:10:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b655f50f
7
8 app-misc/worker: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-misc/worker/Manifest | 1 -
14 app-misc/worker/worker-2.19.6.ebuild | 54 ------------------------------------
15 2 files changed, 55 deletions(-)
16
17 diff --git a/app-misc/worker/Manifest b/app-misc/worker/Manifest
18 index 499c210a268..aabc519b79f 100644
19 --- a/app-misc/worker/Manifest
20 +++ b/app-misc/worker/Manifest
21 @@ -1,2 +1 @@
22 -DIST worker-2.19.6.tar.bz2 1191546 BLAKE2B ab806ef55e39f6e0909a25b01abd9c79afe61681ec8b8437fdedd8e663102de298c62141a39a8f0411e40c3ef92635e1593882fd7b93ec6df133d1bccd358f05 SHA512 401c986ff532c225cbd183afd8424e900ed8ff874368d68cb985136d130b5a4d4746a59e391ba01ae610eacd4fec0d76061ba967112b8262e4a9297599596b60
23 DIST worker-3.8.3.tar.bz2 1519483 BLAKE2B 45573bed62256eda879a776f8a65af63a5c57f8c89784445faf264d2e09403faecdeb225d99ee50498df4c21a9cdf69a131c7d391a24eafe48c2319808b009dd SHA512 fa5d078233a91ec603cd87718542cdd5d99ef89c5d2e72c84fe40c08778c5e9dde8e99a23ccfee5ef61e63535c809a48ccf71fe9a256fd7afa05f848c5045738
24
25 diff --git a/app-misc/worker/worker-2.19.6.ebuild b/app-misc/worker/worker-2.19.6.ebuild
26 deleted file mode 100644
27 index 349dd3d8150..00000000000
28 --- a/app-misc/worker/worker-2.19.6.ebuild
29 +++ /dev/null
30 @@ -1,54 +0,0 @@
31 -# Copyright 1999-2013 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -inherit eutils toolchain-funcs
37 -
38 -DESCRIPTION="Worker Filemanager: Amiga Directory Opus 4 clone"
39 -HOMEPAGE="http://www.boomerangsworld.de/cms/worker/"
40 -SRC_URI="http://www.boomerangsworld.de/cms/worker/downloads/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 x86"
45 -IUSE="avfs debug dbus examples libnotify +magic xinerama xft"
46 -
47 -RDEPEND="x11-libs/libSM
48 - x11-libs/libX11
49 - avfs? ( >=sys-fs/avfs-0.9.5 )
50 - dbus? ( dev-libs/dbus-glib )
51 - magic? ( sys-apps/file )
52 - xft? ( x11-libs/libXft )
53 - xinerama? ( x11-libs/libXinerama )"
54 -DEPEND="${RDEPEND}"
55 -
56 -DOCS=( AUTHORS ChangeLog INSTALL NEWS README README_LARGEFILES THANKS )
57 -
58 -src_prepare() {
59 - # respect AR, bug #466014
60 - sed -i -e "/AR/s/ar/$(tc-getAR)/" src/aguix/Makefile.in || die 'sed on Makefile.in failed'
61 -
62 - epatch_user
63 -}
64 -
65 -src_configure() {
66 - # there is no option for disabling libXinerama support
67 - use xinerama || export ac_cv_lib_Xinerama_XineramaQueryScreens=no
68 - econf \
69 - --without-hal \
70 - $(use_with avfs) \
71 - $(use_with dbus) \
72 - $(use_enable debug) \
73 - $(use_enable libnotify inotify) \
74 - $(use_with magic libmagic) \
75 - $(use_enable xft)
76 -}
77 -
78 -src_install() {
79 - default
80 - if use examples; then
81 - docinto examples
82 - dodoc examples/config-*
83 - fi
84 -}