summaryrefslogtreecommitdiff
path: root/net-p2p/transmission-gtk
diff options
context:
space:
mode:
authorBlackNoxis <steven.darklight@gmail.com>2015-06-26 11:03:17 +0300
committerBlackNoxis <steven.darklight@gmail.com>2015-06-26 11:03:17 +0300
commit768497794e0dd1a1d7ae2456e95d6bd744907f61 (patch)
treef8a9b8667e6a792cefdf118b6391c9b2e9e4bf23 /net-p2p/transmission-gtk
parent8f45c5954f01fcc14edc375e1597c9fcdccad0ab (diff)
[net-p2p/*] remanifested ebuilds
Diffstat (limited to 'net-p2p/transmission-gtk')
-rw-r--r--net-p2p/transmission-gtk/Manifest2
-rw-r--r--net-p2p/transmission-gtk/metadata.xml8
-rw-r--r--net-p2p/transmission-gtk/transmission-gtk-2.83.ebuild49
-rw-r--r--net-p2p/transmission-gtk/transmission-gtk-2.84.ebuild49
4 files changed, 108 insertions, 0 deletions
diff --git a/net-p2p/transmission-gtk/Manifest b/net-p2p/transmission-gtk/Manifest
new file mode 100644
index 00000000..507ab281
--- /dev/null
+++ b/net-p2p/transmission-gtk/Manifest
@@ -0,0 +1,2 @@
+DIST transmission-2.83.tar.xz 3136752 SHA256 b0e1b050167e7f71b68e01a8d55b984a828fe880df9abfbc6281cb2a0d7d1433 SHA512 a3f56c434282d70d9d373d99410de738f15a350f394c0984150b7d9ea2eda1c0485bf26ab740f433d0271f882edabe5609266e704e55792a7015225da0186fda WHIRLPOOL 2dfeae51acf6a14dbd6374336cc0d4cc09a7387e72a63683785d1bdba36693f68770af7826af36e2be1e7e8e3d4920d77a5b582b801f4997721557161e31959c
+DIST transmission-2.84.tar.xz 3077836 SHA256 a9fc1936b4ee414acc732ada04e84339d6755cd0d097bcbd11ba2cfc540db9eb SHA512 d6c2b17e7f8180a41ac70f5b503dfdb0353c6419db25df1b393b18c987c56fda9e2fd4c3f4cda7f08c301877bd0b4711842c28121ceaaaae87f5792cc6c29a3d WHIRLPOOL 375f9c981d9d2ac308896e8b7d66d3643796c8e97d64a1e0d6fd2bffaafa55988b90ddb4eb98330edf062e835c0c5ce76749e7e66bf6806333673beb7569f342
diff --git a/net-p2p/transmission-gtk/metadata.xml b/net-p2p/transmission-gtk/metadata.xml
new file mode 100644
index 00000000..d55995ce
--- /dev/null
+++ b/net-p2p/transmission-gtk/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer>
+ <email>slawomir.nizio@sabayon.org</email>
+ <description>maintainer for split Transmission ebuilds based on Gentoo one</description>
+ </maintainer>
+</pkgmetadata>
diff --git a/net-p2p/transmission-gtk/transmission-gtk-2.83.ebuild b/net-p2p/transmission-gtk/transmission-gtk-2.83.ebuild
new file mode 100644
index 00000000..4a6b9615
--- /dev/null
+++ b/net-p2p/transmission-gtk/transmission-gtk-2.83.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+inherit eutils transmission-2.83
+
+DESCRIPTION="A Fast, Easy and Free BitTorrent client - Gtk+ UI"
+KEYWORDS="~amd64 ~x86"
+IUSE="ayatana"
+
+RDEPEND="
+ >=dev-libs/dbus-glib-0.100:=
+ >=dev-libs/glib-2.32:2=
+ >=x11-libs/gtk+-3.4:3=
+ ayatana? ( >=dev-libs/libappindicator-0.4.90:3= )
+ !net-p2p/transmission-gtk+
+"
+
+src_install() {
+ # avoid file conflicts with transmission-base
+ # this way gives the corrent layout of /usr/share/icon/... icon files
+ emake DESTDIR="${T}" install
+
+ cd "${T}"
+ dobin usr/bin/transmission-gtk
+ doman usr/share/man/man1/transmission-gtk.1
+ doicon usr/share/pixmaps/transmission.png
+
+ insinto /usr/share/applications
+ doins usr/share/applications/transmission-gtk.desktop
+
+ local mypath
+ # locale
+ for mypath in usr/share/locale/*/LC_MESSAGES/transmission-gtk.mo; do
+ if [ -f "$mypath" ]; then
+ insinto "${mypath%/*}"
+ doins "$mypath"
+ fi
+ done
+
+ # and finally icons directory
+ for mypath in usr/share/icons/hicolor/*/apps/transmission.{png,svg}; do
+ if [ -f "$mypath" ]; then
+ insinto "${mypath%/*}"
+ doins "$mypath"
+ fi
+ done
+}
diff --git a/net-p2p/transmission-gtk/transmission-gtk-2.84.ebuild b/net-p2p/transmission-gtk/transmission-gtk-2.84.ebuild
new file mode 100644
index 00000000..394b9853
--- /dev/null
+++ b/net-p2p/transmission-gtk/transmission-gtk-2.84.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+inherit eutils transmission-2.84
+
+DESCRIPTION="A Fast, Easy and Free BitTorrent client - Gtk+ UI"
+KEYWORDS="~amd64 ~x86"
+IUSE="ayatana"
+
+RDEPEND="
+ >=dev-libs/dbus-glib-0.100:=
+ >=dev-libs/glib-2.32:2=
+ >=x11-libs/gtk+-3.4:3=
+ ayatana? ( >=dev-libs/libappindicator-0.4.90:3= )
+ !net-p2p/transmission-gtk+
+"
+
+src_install() {
+ # avoid file conflicts with transmission-base
+ # this way gives the corrent layout of /usr/share/icon/... icon files
+ emake DESTDIR="${T}" install
+
+ cd "${T}"
+ dobin usr/bin/transmission-gtk
+ doman usr/share/man/man1/transmission-gtk.1
+ doicon usr/share/pixmaps/transmission.png
+
+ insinto /usr/share/applications
+ doins usr/share/applications/transmission-gtk.desktop
+
+ local mypath
+ # locale
+ for mypath in usr/share/locale/*/LC_MESSAGES/transmission-gtk.mo; do
+ if [ -f "$mypath" ]; then
+ insinto "${mypath%/*}"
+ doins "$mypath"
+ fi
+ done
+
+ # and finally icons directory
+ for mypath in usr/share/icons/hicolor/*/apps/transmission.{png,svg}; do
+ if [ -f "$mypath" ]; then
+ insinto "${mypath%/*}"
+ doins "$mypath"
+ fi
+ done
+}