Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/aterm/
Date: Wed, 27 Apr 2022 14:12:22
Message-Id: 1651068530.2fafc60aa1fb62ff8151a4ace37dfb903b860394.mattst88@gentoo
1 commit: 2fafc60aa1fb62ff8151a4ace37dfb903b860394
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 14:08:50 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 14:08:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fafc60a
7
8 x11-terms/aterm: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-terms/aterm/aterm-1.0.1-r4.ebuild | 88 -----------------------------------
13 1 file changed, 88 deletions(-)
14
15 diff --git a/x11-terms/aterm/aterm-1.0.1-r4.ebuild b/x11-terms/aterm/aterm-1.0.1-r4.ebuild
16 deleted file mode 100644
17 index 8cad83593e22..000000000000
18 --- a/x11-terms/aterm/aterm-1.0.1-r4.ebuild
19 +++ /dev/null
20 @@ -1,88 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit flag-o-matic eutils
27 -
28 -DESCRIPTION="rxvt compatible terminal emulator with transparency support"
29 -HOMEPAGE="http://aterm.sourceforge.net"
30 -SRC_URI="ftp://ftp.afterstep.org/apps/${PN}/${P}.tar.bz2"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="amd64"
35 -IUSE="background cjk xgetdefault"
36 -
37 -RDEPEND="
38 - virtual/jpeg:0
39 - media-libs/libpng:0=
40 - background? ( x11-wm/afterstep )
41 - x11-libs/libX11
42 - x11-libs/libXext
43 - x11-libs/libICE
44 -"
45 -DEPEND="${RDEPEND}
46 - x11-base/xorg-proto
47 - x11-libs/libXt
48 -"
49 -
50 -src_prepare() {
51 - # Security bug #219746
52 - eapply "${FILESDIR}/${P}-display-security-issue.patch"
53 - eapply "${FILESDIR}"/${P}-deadkeys.patch
54 - eapply "${FILESDIR}/${P}-dpy.patch"
55 - eapply "${FILESDIR}/${P}-remove-streams.patch"
56 -
57 - #fix pre-stripped files
58 - sed -i -e "/INSTALL_PROGRAM/ s:-s::" autoconf/Make.common.in || die "sed Makefile failed"
59 -
60 - default
61 -}
62 -
63 -src_configure() {
64 - local myconf
65 -
66 - use cjk && myconf="$myconf
67 - --enable-kanji
68 - --enable-thai
69 - --enable-big5"
70 -
71 - case "${CHOST}" in
72 - *-darwin*) myconf="${myconf} --enable-wtmp" ;;
73 - *-interix*) ;;
74 - *) myconf="${myconf} --enable-utmp --enable-wtmp"
75 - esac
76 -
77 - econf \
78 - $(use_enable xgetdefault) \
79 - $(use_enable background background-image) \
80 - --with-terminfo="${EPREFIX}"/usr/share/terminfo \
81 - --enable-transparency \
82 - --enable-fading \
83 - --enable-background-image \
84 - --enable-menubar \
85 - --enable-graphics \
86 - --with-x \
87 - ${myconf}
88 -}
89 -
90 -src_install() {
91 - make DESTDIR="${D}" install || die "make install failed"
92 -
93 - fowners root:utmp /usr/bin/aterm
94 - fperms g+s /usr/bin/aterm
95 -
96 - doman doc/aterm.1
97 - dodoc ChangeLog doc/FAQ doc/README.*
98 - docinto menu
99 - dodoc doc/menu/*
100 -}
101 -
102 -pkg_postinst() {
103 - echo
104 - elog "The transparent background will only work if you have the 'real'"
105 - elog "root wallpaper set. Some tools that might help include:"
106 - elog "wmsetbg (x11-wm/windowmaker), and/or media-gfx/feh."
107 - echo
108 -}