Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xosview/
Date: Sat, 01 Apr 2017 10:24:27
Message-Id: 1491042211.d329e6699923883a56400f0621a25c5db18d82b2.soap@gentoo
1 commit: d329e6699923883a56400f0621a25c5db18d82b2
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 28 18:32:24 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 1 10:23:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d329e669
7
8 x11-misc/xosview: Remove old
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11 Closes: https://github.com/gentoo/gentoo/pull/4319
12
13 x11-misc/xosview/Manifest | 1 -
14 x11-misc/xosview/xosview-1.18.ebuild | 51 ------------------------------------
15 2 files changed, 52 deletions(-)
16
17 diff --git a/x11-misc/xosview/Manifest b/x11-misc/xosview/Manifest
18 index 4e5704d06d1..95b5d28836f 100644
19 --- a/x11-misc/xosview/Manifest
20 +++ b/x11-misc/xosview/Manifest
21 @@ -1,2 +1 @@
22 -DIST xosview-1.18.tar.gz 143565 SHA256 833c8a865b6a21d4edf0ed34c78e8586954615e68dab619b079f8691fadb74fa SHA512 7ce441a24ec301fcfad251c75291a8759f42a0a3c7face4681e2e2f935a827ae3d0ba15f275151846cb4004654895a3571e89911d6846c01d8c0f81159efdab6 WHIRLPOOL ee6f9ccc95d982b64d6d96f8f90ad1596015b3d9d1c7803231cfbdf29da4f29b71137b365a74ffa9431c09c9b805c5a3bd7bb72bcf5d314b01879327741d4972
23 DIST xosview-1.19.tar.gz 143151 SHA256 08b6a9e6c1963c03ba9dcb31981b9e0e93d5d1d9959cadec86be1b09e2b22caf SHA512 57234a232617b14925e21864334f2d06dce442d552763835b1a505863dd80efc27d3d55d50692de4a548e86e25bb5ab3354bd92801b6504c030e1985f19b6a08 WHIRLPOOL 6796305fe1c78beed977758e54a0df17ed5e82f13cd5499a0f7ac8bc8f9ad8da6dc96534f406b919e92a747889a3650e97c559288a2efcd288a81602387d9e15
24
25 diff --git a/x11-misc/xosview/xosview-1.18.ebuild b/x11-misc/xosview/xosview-1.18.ebuild
26 deleted file mode 100644
27 index fa37b4a95fb..00000000000
28 --- a/x11-misc/xosview/xosview-1.18.ebuild
29 +++ /dev/null
30 @@ -1,51 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit eutils toolchain-funcs
37 -
38 -DESCRIPTION="X11 operating system viewer"
39 -HOMEPAGE="http://www.pogo.org.uk/~mark/xosview/"
40 -SRC_URI="http://www.pogo.org.uk/~mark/${PN}/releases/${P}.tar.gz"
41 -
42 -LICENSE="GPL-2 BSD"
43 -SLOT="0"
44 -KEYWORDS="amd64 ppc ppc64 x86"
45 -IUSE="suid"
46 -
47 -COMMON_DEPS="x11-libs/libX11
48 - x11-libs/libXpm
49 - x11-libs/libXt"
50 -RDEPEND="${COMMON_DEPS}
51 - media-fonts/font-misc-misc"
52 -DEPEND="${COMMON_DEPS}
53 - x11-proto/xproto"
54 -
55 -src_prepare() {
56 - default
57 -
58 - sed -i -e 's:lib/X11/app:share/X11/app:g' -i ${PN}.1 || die
59 - sed -i -e "s:Git:${PV}:g" ${PN}.cc || die
60 - tc-export CXX
61 -}
62 -
63 -src_compile() {
64 - emake OPTFLAGS=''
65 -}
66 -
67 -src_install() {
68 - dobin ${PN}
69 - use suid && fperms 4755 /usr/bin/${PN}
70 - insinto /usr/share/X11/app-defaults
71 - newins Xdefaults XOsview
72 - doman *.1
73 - dodoc CHANGES README.linux TODO
74 -}
75 -
76 -pkg_postinst() {
77 - if ! use suid ; then
78 - ewarn "If you want to use serial meters ${PN} needs to be executed as root."
79 - ewarn "Please see ${EPREFIX}/usr/share/doc/${PF}/README.linux for details."
80 - fi
81 -}