summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2020-09-13 23:47:41 +0000
committerSam James <sam@gentoo.org>2020-09-13 23:47:41 +0000
commit0789cc211e500bb211031d5ea3dac53d531048e5 (patch)
treea2f43cf7a62b4e42128b6a9c3637c1b2d54bcac5 /x11-terms/roxterm
parentx11-terms/roxterm: missing dependencies (diff)
downloadgentoo-0789cc211e500bb211031d5ea3dac53d531048e5.tar.gz
gentoo-0789cc211e500bb211031d5ea3dac53d531048e5.tar.bz2
gentoo-0789cc211e500bb211031d5ea3dac53d531048e5.zip
x11-terms/roxterm: cleanup old
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-terms/roxterm')
-rw-r--r--x11-terms/roxterm/Manifest1
-rw-r--r--x11-terms/roxterm/roxterm-3.1.5-r1.ebuild66
2 files changed, 0 insertions, 67 deletions
diff --git a/x11-terms/roxterm/Manifest b/x11-terms/roxterm/Manifest
index 57f77c177a2e..89a6f81c5550 100644
--- a/x11-terms/roxterm/Manifest
+++ b/x11-terms/roxterm/Manifest
@@ -1,3 +1,2 @@
-DIST roxterm-3.1.5.tar.xz 309892 BLAKE2B 11ede6d870a2aa96bfff4974ab33ac4814802f6b08e684f9367e3e268adc113be2b0c92eb337447f8d20a687c7be5f414854cf1f75831ef6c38f4d78d3897317 SHA512 f07989331b1cf915e94582bfceff8cb87f20613eb272ccc502fb49c7508a1330cfa3b137c59f300b8541595aed541867c1b0aad36809e7e9a326f7119fde2acd
DIST roxterm-3.9.3.tar.gz 527056 BLAKE2B 442b9ee2605dd2b5e817ec792cab718eeed7aeacdd5a34582df780ee7fb970299985a49fda146c56dfa242d3a34098673fdcdbf7af96f1ab9e7c4340f08d78d9 SHA512 d3e29575a9985c8c967d9fa2b73d7dfd45cc13334b29c759219a90a3e0299c4d253a15e969be8c85c9aa12b1fddd390830fdb3ae99fea49d37a849e9881bd087
DIST roxterm-3.9.4.tar.gz 527450 BLAKE2B 0041ce4a026eddd2b78c7e9aed650f21c5ed75903c7903ef79950e95a92045fdc951b23f199173846439b39712be72b0325fba5c2be92f95ee5a121b112977bb SHA512 42f48e56b2f8017fc3ec249ed1e6d42aadc171ab854f948a7b686c36d9b1c5202f7879dab66a04f2a4e0438b09ef0eed69da72eac0cf651c205d9b4724403759
diff --git a/x11-terms/roxterm/roxterm-3.1.5-r1.ebuild b/x11-terms/roxterm/roxterm-3.1.5-r1.ebuild
deleted file mode 100644
index ee27b9972b68..000000000000
--- a/x11-terms/roxterm/roxterm-3.1.5-r1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python3_6 )
-inherit gnome2-utils python-any-r1 toolchain-funcs
-
-DESCRIPTION="A terminal emulator designed to integrate with the ROX environment"
-HOMEPAGE="http://roxterm.sourceforge.net/"
-SRC_URI="mirror://sourceforge/roxterm/${P}.tar.xz"
-
-LICENSE="GPL-2 LGPL-3"
-SLOT="1"
-KEYWORDS="amd64 x86"
-IUSE="nls"
-
-RDEPEND=">=dev-libs/dbus-glib-0.100
- dev-libs/glib:2
- x11-libs/gtk+:3
- x11-libs/libICE
- x11-libs/libSM
- x11-libs/vte:2.91
- !x11-terms/roxterm:0"
-# slotted versions of roxterm need block one another due to file collisions. #565288
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}
- dev-libs/libxslt
- dev-python/lockfile
- virtual/pkgconfig
- virtual/imagemagick-tools
- nls? ( app-text/po4a sys-devel/gettext )"
-
-src_configure() {
- local myconf=(
- CC="$(tc-getCC)"
- CFLAGS="${CFLAGS}"
- LDFLAGS="${LDFLAGS}"
- --prefix=/usr
- --docdir="/usr/share/doc/${PF}"
- --destdir="${D}"
- )
-
- use nls || myconf+=( --disable-gettext --disable-po4a --disable-translations )
- ./mscript.py configure "${myconf[@]}"
-}
-
-src_compile() {
- ./mscript.py build
-}
-
-src_install() {
- ./mscript.py install
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}