summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2017-06-18 11:52:18 +0200
committerPacho Ramos <pacho@gentoo.org>2017-06-18 11:52:31 +0200
commit010b23784118bd9295fa930c36c1f42f6e4ed34b (patch)
tree606cdd20bac6f736828d8c2161aaf8229d8de9eb /net-p2p/transmission-remote-gtk
parentnet-p2p/transmission-remote-gtk: Don't build with -Werror (#593926) (diff)
downloadgentoo-010b23784118bd9295fa930c36c1f42f6e4ed34b.tar.gz
gentoo-010b23784118bd9295fa930c36c1f42f6e4ed34b.tar.bz2
gentoo-010b23784118bd9295fa930c36c1f42f6e4ed34b.zip
net-p2p/transmission-remote-gtk: Drop old
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'net-p2p/transmission-remote-gtk')
-rw-r--r--net-p2p/transmission-remote-gtk/Manifest1
-rw-r--r--net-p2p/transmission-remote-gtk/metadata.xml2
-rw-r--r--net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.0.ebuild46
3 files changed, 0 insertions, 49 deletions
diff --git a/net-p2p/transmission-remote-gtk/Manifest b/net-p2p/transmission-remote-gtk/Manifest
index 25e41a8be7ae..cad6f2a159a4 100644
--- a/net-p2p/transmission-remote-gtk/Manifest
+++ b/net-p2p/transmission-remote-gtk/Manifest
@@ -1,3 +1,2 @@
-DIST transmission-remote-gtk-1.0.tar.gz 570279 SHA256 dc171ed67bd7bc2d98b42d04851cefb4174181f779433049a14b107c9a4906ce SHA512 1e2a511126b478352052bc1821feab534f7b9cf5e7e41e73c493bbe8efa8587da6b35ea30cecced0d0f0d1e25ae1a00590611520b2fb570ab61a0badc538a200 WHIRLPOOL f0e3647fca35e40b347beab5b1328ba5cc51e340753a7e3f43f98335470ce5b562922245baba52390ab1b35f9b42bb5c6126d8fe1f37883d865323ee45db0724
DIST transmission-remote-gtk-1.1.1.tar.gz 684718 SHA256 9f5ac2de623d633bcaacb6362bb6d8fb468c6dff278b867f65809c48ea1570c9 SHA512 184601a51d71d7b967d516cee87bea47f190ad080d110b2a73c82adac03cff49169dd2682b82e0f5c017c050bd9fd54fdfba9cd0de7ca7d9fcd2e8f9abfc0c12 WHIRLPOOL f245e497471b7c39eabae73deea10ccf30470938a52523fad05b1c744eab84a2d4c3e91e72d0c481789262ca38279cfca8f15fff1c7080f25107ee4038dd4a7a
DIST transmission-remote-gtk-1.3.1.tar.xz 459260 SHA256 1b29c573b1e205e3e7c2433dc4a48f9574278d97e033845d19bbffa1d7f75345 SHA512 ce723d51f8f769e59fb539241996ff0204a654f52696963044f8535731cc2b8ec69cf454a15253f9ba214e0879498f3c19519b5b1b303273d667592887ee45f5 WHIRLPOOL 7ca78f608809ba74be1040ff73dde5a0bc68cb665fe889ca68e219e04cb17ec40bdd2994999ddc76819e3b5d5f4c9aeb256800268a2d92b56d84d904e8b7bac0
diff --git a/net-p2p/transmission-remote-gtk/metadata.xml b/net-p2p/transmission-remote-gtk/metadata.xml
index 6dc7f34e37c1..8b4c233cb177 100644
--- a/net-p2p/transmission-remote-gtk/metadata.xml
+++ b/net-p2p/transmission-remote-gtk/metadata.xml
@@ -4,8 +4,6 @@
<use>
<flag name="libproxy">Use <pkg>net-libs/libproxy</pkg> for
getting the HTTP/HTTPS/SOCKS proxy configuration.</flag>
- <flag name="unique">Enable single instance support using
- <pkg>dev-libs/libunique</pkg></flag>
</use>
<upstream>
<remote-id type="github">transmission-remote-gtk/transmission-remote-gtk</remote-id>
diff --git a/net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.0.ebuild b/net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.0.ebuild
deleted file mode 100644
index f5f18c044801..000000000000
--- a/net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit gnome2-utils
-
-DESCRIPTION="GTK client for management of the Transmission BitTorrent client, over HTTP RPC"
-HOMEPAGE="https://code.google.com/p/transmission-remote-gtk"
-SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug geoip libproxy unique"
-RESTRICT="test"
-
-RDEPEND=">=dev-libs/glib-2.22:2
- >=dev-libs/json-glib-0.12.2
- unique? ( dev-libs/libunique:1 )
- libproxy? ( net-libs/libproxy )
- net-misc/curl
- >=x11-libs/gtk+-2.16:2
- x11-libs/libnotify
- geoip? ( dev-libs/geoip )"
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig"
-
-DOCS=( AUTHORS README )
-
-src_configure() {
- # disable gtk3 for now because upstream doesn't consider it "ready".
- # Also disable libappindicator till gtk3 is ready since ayatana on
- # gtk2 is deprecated in Gentoo.
- econf \
- $(use_enable debug) \
- $(use_with geoip libgeoip) \
- $(use_with libproxy) \
- $(use_with unique libunique) \
- --without-libappindicator \
- --disable-gtk3
-}
-
-pkg_preinst() { gnome2_icon_savelist; }
-pkg_postinst() { gnome2_icon_cache_update; }
-pkg_postrm() { gnome2_icon_cache_update; }