Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/roxterm/
Date: Fri, 16 Feb 2018 14:13:31
Message-Id: 1518790266.d6640b5ee964654299e861e0026af480f18d9f70.pacho@gentoo
1 commit: d6640b5ee964654299e861e0026af480f18d9f70
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 16 14:08:48 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 16 14:11:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6640b5e
7
8 x11-terms/roxterm: Drop old (#622004)
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 x11-terms/roxterm/Manifest | 1 -
13 x11-terms/roxterm/roxterm-2.9.3-r2.ebuild | 64 -------------------------------
14 2 files changed, 65 deletions(-)
15
16 diff --git a/x11-terms/roxterm/Manifest b/x11-terms/roxterm/Manifest
17 index e6d0165f22c..2984ef800a2 100644
18 --- a/x11-terms/roxterm/Manifest
19 +++ b/x11-terms/roxterm/Manifest
20 @@ -1,2 +1 @@
21 -DIST roxterm-2.9.3.tar.bz2 364120 BLAKE2B f304ef08c5c5b9724ab4fb8275d657476ea946dffd7b412aa29cd37c6e9c18335755a3a2e8c1e9157deb89ecb5ca1c3ea426d65afa5b9d74c5f6496f7989cf56 SHA512 3f197ebc532721a6132da96d3b4bf65032def43eba4d7b00ecb2c74223c43c0549a9605753e81992c2c4b4955adbbc041e8a31f22947752dc52a9edd46457d16
22 DIST roxterm-3.1.5.tar.xz 309892 BLAKE2B 11ede6d870a2aa96bfff4974ab33ac4814802f6b08e684f9367e3e268adc113be2b0c92eb337447f8d20a687c7be5f414854cf1f75831ef6c38f4d78d3897317 SHA512 f07989331b1cf915e94582bfceff8cb87f20613eb272ccc502fb49c7508a1330cfa3b137c59f300b8541595aed541867c1b0aad36809e7e9a326f7119fde2acd
23
24 diff --git a/x11-terms/roxterm/roxterm-2.9.3-r2.ebuild b/x11-terms/roxterm/roxterm-2.9.3-r2.ebuild
25 deleted file mode 100644
26 index 4cf99a29d53..00000000000
27 --- a/x11-terms/roxterm/roxterm-2.9.3-r2.ebuild
28 +++ /dev/null
29 @@ -1,64 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python2_7 )
36 -inherit gnome2-utils python-any-r1 toolchain-funcs
37 -
38 -DESCRIPTION="A terminal emulator designed to integrate with the ROX environment"
39 -HOMEPAGE="http://roxterm.sourceforge.net/"
40 -SRC_URI="mirror://sourceforge/roxterm/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-2 LGPL-3"
43 -SLOT="0"
44 -KEYWORDS="amd64 ppc x86"
45 -IUSE="nls"
46 -
47 -RDEPEND=">=dev-libs/dbus-glib-0.100
48 - >=dev-libs/glib-2.28
49 - x11-libs/gtk+:3
50 - x11-libs/libICE
51 - x11-libs/libSM
52 - x11-libs/vte:2.90"
53 -DEPEND="${RDEPEND}
54 - ${PYTHON_DEPS}
55 - dev-libs/libxslt
56 - dev-python/lockfile
57 - virtual/pkgconfig
58 - virtual/imagemagick-tools
59 - nls? ( app-text/po4a sys-devel/gettext )"
60 -
61 -src_configure() {
62 - local myconf=(
63 - CC="$(tc-getCC)"
64 - CFLAGS="${CFLAGS}"
65 - LDFLAGS="${LDFLAGS}"
66 - --prefix=/usr
67 - --docdir="/usr/share/doc/${PF}"
68 - --destdir="${D}"
69 - )
70 -
71 - use nls || myconf+=( --disable-gettext --disable-po4a --disable-translations )
72 - ./mscript.py configure "${myconf[@]}"
73 -}
74 -
75 -src_compile() {
76 - ./mscript.py build
77 -}
78 -
79 -src_install() {
80 - ./mscript.py install
81 -}
82 -
83 -pkg_preinst() {
84 - gnome2_icon_savelist
85 -}
86 -
87 -pkg_postinst() {
88 - gnome2_icon_cache_update
89 -}
90 -
91 -pkg_postrm() {
92 - gnome2_icon_cache_update
93 -}