Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xosview/
Date: Mon, 29 Aug 2022 19:28:08
Message-Id: 1661800938.65df71f9198eab3790d55741f33fbbdb5ed9916c.asturm@gentoo
1 commit: 65df71f9198eab3790d55741f33fbbdb5ed9916c
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 28 19:11:13 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 19:22:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65df71f9
7
8 x11-misc/xosview: drop 1.22
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 x11-misc/xosview/Manifest | 1 -
13 x11-misc/xosview/xosview-1.22.ebuild | 57 ------------------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/x11-misc/xosview/Manifest b/x11-misc/xosview/Manifest
17 index ba85c1144c6b..5197d620a901 100644
18 --- a/x11-misc/xosview/Manifest
19 +++ b/x11-misc/xosview/Manifest
20 @@ -1,2 +1 @@
21 -DIST xosview-1.22.tar.gz 146459 BLAKE2B 7f4920b5b5a765f574694ab64e1d34ad6dbc33893cb816bb73119b4f72b7d23900528cb0db9302b24d20d7b8ce1738ce2d00be572c9fd4b391724f277afb02d5 SHA512 9bf37f557d9c07a300f6f9c21e197d25d4c5a4bb6e67b40af9c44a3159ea5010d7ba5bf427a9cec9729fa423da132a1364d0ac7027e9bc9bcd33f490d9e8282a
22 DIST xosview-1.23.tar.gz 146299 BLAKE2B ba336ac152ac6c44bd51c84c160d7c1b565fe23c17aa89db36be7325f4f1caa1ab84a1ad386041841a0aacb62208fb5d59f5dd7a9d2bf071c76dff2901eb2c60 SHA512 10a25f644ec3d896071990117c6d80e553a17baf64809f11bc778652dca1498f81c333ac0f21a809ef617d7e6cbe65afaa14d5bc96908958d8f997234e660ba1
23
24 diff --git a/x11-misc/xosview/xosview-1.22.ebuild b/x11-misc/xosview/xosview-1.22.ebuild
25 deleted file mode 100644
26 index e47a5770c69b..000000000000
27 --- a/x11-misc/xosview/xosview-1.22.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit toolchain-funcs xdg-utils
36 -
37 -DESCRIPTION="X11 operating system viewer"
38 -HOMEPAGE="http://www.pogo.org.uk/~mark/xosview/"
39 -SRC_URI="http://www.pogo.org.uk/~mark/${PN}/releases/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2 BSD"
42 -SLOT="0"
43 -KEYWORDS="amd64 ppc ppc64 x86"
44 -IUSE="suid"
45 -
46 -COMMON_DEPS="x11-libs/libX11
47 - x11-libs/libXpm
48 - x11-libs/libXt"
49 -RDEPEND="${COMMON_DEPS}
50 - media-fonts/font-misc-misc"
51 -DEPEND="${COMMON_DEPS}
52 - x11-base/xorg-proto"
53 -
54 -DOCS=( CHANGES README.linux TODO )
55 -
56 -src_prepare() {
57 - default
58 -
59 - sed -i -e 's:lib/X11/app:share/X11/app:g' -i ${PN}.1 || die
60 - sed -i -e "s:Git:${PV}:g" ${PN}.cc || die
61 - tc-export CXX
62 -}
63 -
64 -src_compile() {
65 - emake OPTFLAGS=''
66 -}
67 -
68 -src_install() {
69 - emake PREFIX="${D}/usr" install
70 - use suid && fperms 4755 /usr/bin/${PN}
71 - insinto /usr/share/X11/app-defaults
72 - newins Xdefaults XOsview
73 -}
74 -
75 -pkg_postinst() {
76 - xdg_desktop_database_update
77 -
78 - if ! use suid ; then
79 - ewarn "If you want to use serial meters ${PN} needs to be executed as root."
80 - ewarn "Please see ${EPREFIX}/usr/share/doc/${PF}/README.linux for details."
81 - fi
82 -}
83 -
84 -pkg_postrm() {
85 - xdg_desktop_database_update
86 -}