View | Details | Raw Unified | Return to bug 273841 | Differences between
and this patch

Collapse All | Expand All

(-)b/UPDATING (+13 lines)
Lines 5-10 they are unavoidable. Link Here
5
You should get into the habit of checking this file for changes each time
5
You should get into the habit of checking this file for changes each time
6
you update your ports collection, before attempting any port upgrades.
6
you update your ports collection, before attempting any port upgrades.
7
7
8
20230919:
9
  AFFECTS: users of net-p2p/transmission
10
  AUTHOR:  mondo.debater_0q@icloud.com
11
12
  The 4.0 port haphazardly consolidated prior slave ports into flavors of a single port.
13
  The flavors have now been revised to better match releases prior to 4.0.
14
  The -full flavor included in the 4.0 port has been replaced with -default, which
15
  restores the compile-time options of prior release's metaport. Other flavors allow 
16
  for more piecemeal installs. The prior -web slave port can be installed through the 
17
  -default flavor or the -daemon flavor.
18
  
19
  See Bug 273841 for more details. 
20
8
20230915:
21
20230915:
9
  AFFECTS: users of print/ghostscript10
22
  AFFECTS: users of print/ghostscript10
10
  AUTHOR: michael.osipov@siemens.com
23
  AUTHOR: michael.osipov@siemens.com
(-)b/net-p2p/transmission/Makefile (-34 / +53 lines)
Lines 1-12 Link Here
1
PORTNAME=	transmission
1
PORTNAME=	transmission
2
DISTVERSION=	4.0.4
2
DISTVERSION=	4.0.4
3
CATEGORIES=	net-p2p
3
CATEGORIES=	net-p2p
4
PORTREVISION=	1
4
5
5
MAINTAINER=	mondo.debater_0q@icloud.com
6
MAINTAINER=	mondo.debater_0q@icloud.com
6
COMMENT=	Transmission BitTorrent client
7
COMMENT=	Transmission BitTorrent client
7
WWW=		https://www.transmissionbt.com
8
WWW=		https://www.transmissionbt.com
8
9
9
LICENSE=	GPLv3+
10
LICENSE=	GPLv3+
11
LICENSE_FILE=	${WRKSRC}/COPYING
10
12
11
LIB_DEPENDS=	libb64.so:converters/libb64 \
13
LIB_DEPENDS=	libb64.so:converters/libb64 \
12
		libcurl.so:ftp/curl \
14
		libcurl.so:ftp/curl \
Lines 19-32 LIB_DEPENDS= libb64.so:converters/libb64 \ Link Here
19
		libpsl.so:dns/libpsl \
21
		libpsl.so:dns/libpsl \
20
		libutp.so:net-p2p/libutp
22
		libutp.so:net-p2p/libutp
21
23
22
FLAVORS=		full cli daemon gtk qt utils
24
FLAVORS=			default cli daemon gtk qt utils
23
FLAVOR?=		${FLAVORS:[1]}
25
FLAVOR?=			${FLAVORS:[1]}
24
.for flavor in ${FLAVORS}
26
.for flavor in ${FLAVORS}
25
${flavor}_PKGNAMESUFFIX=	-${flavor}
27
${flavor}_PKGNAMESUFFIX=	-${flavor}
26
.endfor
28
.endfor
27
full_LIB_DEPENDS=	${gtk_LIB_DEPENDS}
29
28
gtk_LIB_DEPENDS=	libayatana-appindicator3.so:devel/libayatana-appindicator \
30
CONFLICTS_INSTALL=		transmission-default
29
			libharfbuzz.so:print/harfbuzz
31
default_CONFLICTS_INSTALL=     	transmission-*
32
33
gtk_LIB_DEPENDS=		libayatana-appindicator3.so:devel/libayatana-appindicator \
34
				libharfbuzz.so:print/harfbuzz
35
GTK_LIB_DEPENDS=		${gtk_LIB_DEPENDS}
30
36
31
USES=		cmake cpe iconv libtool localbase pkgconfig ssl
37
USES=		cmake cpe iconv libtool localbase pkgconfig ssl
32
38
Lines 39-50 GH_TUPLE= google:googletest:af29db7:googletest/third-party/googletest \ Link Here
39
		transmission:utfcpp:b85efd6:utfcpp/third-party/utfcpp \
45
		transmission:utfcpp:b85efd6:utfcpp/third-party/utfcpp \
40
		transmission:wide-integer:4de0b52:wideinteger/third-party/wide-integer
46
		transmission:wide-integer:4de0b52:wideinteger/third-party/wide-integer
41
47
42
.if ${FLAVOR} == gtk || ${FLAVOR} == full
48
.if ${FLAVOR} == gtk
43
USES+=		desktop-file-utils gettext-runtime gettext-tools gnome
49
USES+=		desktop-file-utils gettext-runtime gettext-tools gnome
44
USE_GNOME=	gdkpixbuf2 glibmm gtkmm30
50
USE_GNOME=	gdkpixbuf2 glibmm gtkmm30
45
.endif
51
.endif
46
52
47
.if ${FLAVOR} == qt || ${FLAVOR} == full
53
.if ${FLAVOR} == qt
48
USES+=		desktop-file-utils qmake:no_env qt:5
54
USES+=		desktop-file-utils qmake:no_env qt:5
49
USE_QT=		core dbus gui network svg widgets buildtools:build \
55
USE_QT=		core dbus gui network svg widgets buildtools:build \
50
		linguisttools:build
56
		linguisttools:build
Lines 67-88 PLIST= ${PKGDIR}/pkg-plist.${FLAVOR} Link Here
67
73
68
.if ${FLAVOR} == cli
74
.if ${FLAVOR} == cli
69
CMAKE_ON+=	ENABLE_CLI
75
CMAKE_ON+=	ENABLE_CLI
70
CMAKE_OFF+=	ENABLE_GTK ENABLE_QT
76
CMAKE_OFF+=	ENABLE_DAEMON ENABLE_GTK ENABLE_QT ENABLE_UTILS INSTALL_WEB
71
.endif
77
.endif
72
78
73
.if ${FLAVOR} == daemon
79
.if ${FLAVOR} == daemon
74
CMAKE_ON+=	ENABLE_DAEMON
80
CMAKE_ON+=	ENABLE_DAEMON
75
CMAKE_OFF+=	ENABLE_GTK ENABLE_QT
81
CMAKE_OFF+=	ENABLE_CLI ENABLE_GTK ENABLE_QT ENABLE_UTILS
76
.endif
82
.endif
77
83
78
.if ${FLAVOR} == gtk || ${FLAVOR} == full
84
.if ${FLAVOR} == gtk
79
CMAKE_ON+=	ENABLE_GTK GTK_IS_REQUIRED
85
CMAKE_ON+=	${GTK_CMAKE_ON}
80
CMAKE_ARGS+=	-DUSE_GTK_VERSION=3
86
CMAKE_ARGS+=	${GTK_CMAKE_ARGS}
87
CMAKE_OFF+=	ENABLE_CLI ENABLE_DAEMON ENABLE_UTILS INSTALL_WEB
81
.endif
88
.endif
82
89
83
.if ${FLAVOR} == qt || ${FLAVOR} == full
90
.if ${FLAVOR} == qt
84
CMAKE_ON+=	ENABLE_QT QT_IS_REQUIRED
91
CMAKE_ON+=	${QT_CMAKE_ON}
85
CMAKE_ARGS+=	-DUSE_QT_VERSION=5
92
CMAKE_ARGS+=	${QT_CMAKE_ARGS}
93
CMAKE_OFF+=	ENABLE_CLI ENABLE_DAEMON ENABLE_UTILS INSTALL_WEB
86
.endif
94
.endif
87
95
88
.if ${FLAVOR} == utils
96
.if ${FLAVOR} == utils
Lines 91-130 CMAKE_OFF+= ENABLE_CLI ENABLE_DAEMON ENABLE_GTK ENABLE_QT ENABLE_TESTS \ Link Here
91
		ENABLE_WERROR INSTALL_WEB
99
		ENABLE_WERROR INSTALL_WEB
92
.endif
100
.endif
93
101
94
OPTIONS_DEFINE=		CLI DAEMON DOCS NLS TESTS UTILS WEB
102
OPTIONS_DEFINE=		CLI DAEMON DOCS GTK NLS QT TESTS UTILS WEB
95
OPTIONS_DEFAULT=	DOCS NLS
103
OPTIONS_DEFAULT=	CLI DAEMON DOCS GTK NLS QT UTILS WEB
96
104
97
.if ${FLAVOR} == cli
105
DOCS_EXTRA_PATCHES_OFF=	${PATCHDIR}/extra-patch-CMakeLists.txt
98
OPTIONS_DEFINE=		DAEMON DOCS NLS TESTS UTILS WEB
106
.if ${FLAVOR:Ndefault} && ${FLAVOR:Ndaemon}
99
OPTIONS_DEFAULT=	UTILS
107
EXTRA_PATCHES=		${DOCS_EXTRA_PATCHES_OFF}
100
.endif
108
.endif
101
109
102
.if ${FLAVOR} == daemon
110
.if ${FLAVOR:Mdaemon}
103
OPTIONS_DEFINE=		CLI DOCS NLS TESTS UTILS WEB
111
OPTIONS_DEFINE=		DOCS NLS TESTS WEB
104
OPTIONS_DEFAULT=	UTILS WEB
112
OPTIONS_DEFAULT=	DOCS NLS WEB
105
.endif
113
.endif
106
114
107
.if ${FLAVOR} == full
115
.if ${FLAVOR:Ndefault} && ${FLAVOR:Ndaemon}
108
OPTIONS_DEFAULT+=	CLI DAEMON DOCS NLS UTILS WEB
116
OPTIONS_DEFINE=		NLS TESTS
109
.endif
117
OPTIONS_DEFAULT=	NLS
110
111
.if ${FLAVOR} == utils
112
OPTIONS_DEFINE=		DOCS NLS
113
OPTIONS_DEFAULT=	DOCS NLS
114
.endif
118
.endif
115
119
116
OPTIONS_SUB=	yes
120
OPTIONS_SUB=	yes
117
121
118
CLI_DESC=	Build remote & command-line (deprecated) clients
122
CLI_DESC=	Build remote & command-line (deprecated) clients
119
DAEMON_DESC=	Build daemon
123
DAEMON_DESC=	Build daemon
124
GTK_DESC=	Build GTK+ client
125
QT_DESC=	Build QT client
120
TESTS_DESC=	Build & run unit tests
126
TESTS_DESC=	Build & run unit tests
121
UTILS_DESC=	Build utilities (create, edit, show)
127
UTILS_DESC=	Build utilities (create, edit, show)
122
WEB_DESC=	Install web client
128
WEB_DESC=	Install web client (requires daemon to run)
123
129
124
CLI_CMAKE_BOOL=	ENABLE_CLI
130
CLI_CMAKE_BOOL=	ENABLE_CLI
125
131
126
DAEMON_CMAKE_BOOL=	ENABLE_DAEMON
132
DAEMON_CMAKE_BOOL=	ENABLE_DAEMON
127
133
134
GTK_CMAKE_ON=		ENABLE_GTK \
135
			GTK_IS_REQUIRED
136
GTK_CMAKE_ARGS+=	-DUSE_GTK_VERSION=3
137
138
QT_CMAKE_ON=	ENABLE_QT \
139
		QT_IS_REQUIRED
140
QT_CMAKE_ARGS+=	-DUSE_QT_VERSION=5
141
142
GTK_USES=	desktop-file-utils gettext-runtime gettext-tools gnome
143
GTK_USE=	GNOME=gdkpixbuf2,glibmm,gtkmm30
144
145
QT_USES=	desktop-file-utils qmake:no_env qt:5
146
QT_USE=		QT=core,dbus,gui,network,svg,widgets,buildtools:build,linguisttools:build
147
128
NLS_USES=	gettext-runtime:lib
148
NLS_USES=	gettext-runtime:lib
129
NLS_CMAKE_BOOL=	ENABLE_NLS
149
NLS_CMAKE_BOOL=	ENABLE_NLS
130
150
Lines 153-163 post-install: Link Here
153
173
154
.if ${FLAVOR} == daemon
174
.if ${FLAVOR} == daemon
155
post-install:
175
post-install:
156
	${MKDIR} ${STAGEDIR}${ETCDIR}/home
176
	        ${MKDIR} ${STAGEDIR}${ETCDIR}/home
157
.endif
177
.endif
158
178
159
post-install-DAEMON-on:
179
post-install-DAEMON-on:
160
	        ${MKDIR} ${STAGEDIR}${ETCDIR}/home
180
		        ${MKDIR} ${STAGEDIR}${ETCDIR}/home
161
181
162
post-install-TESTS-on:
182
post-install-TESTS-on:
163
	@${ECHO_MSG} "Running tests..."
183
	@${ECHO_MSG} "Running tests..."
Lines 166-171 post-install-TESTS-on: Link Here
166
		--gtest_filter="-DhtTest.usesBootstrapFile" \
186
		--gtest_filter="-DhtTest.usesBootstrapFile" \
167
		#fails in poudriere due to lack of networking, passes otherwise
187
		#fails in poudriere due to lack of networking, passes otherwise
168
		--gtest_brief=1 \
188
		--gtest_brief=1 \
169
		--gtest_output=json:libtransmission-test.json
170
189
171
.include <bsd.port.mk>
190
.include <bsd.port.mk>
(-)b/net-p2p/transmission/files/extra-patch-CMakeLists.txt (+23 lines)
Added Link Here
1
--- CMakeLists.txt.orig	2023-08-23 22:48:58 UTC
2
+++ CMakeLists.txt
3
@@ -796,20 +796,6 @@ if(ENABLE_DAEMON OR ENABLE_GTK OR ENABLE_QT)
4
     tr_install_web(${CMAKE_INSTALL_DATAROOTDIR}/${TR_NAME})
5
 endif()
6
 
7
-if(INSTALL_DOC)
8
-    install(
9
-        FILES
10
-            AUTHORS
11
-            COPYING
12
-            README.md
13
-            docs/rpc-spec.md
14
-            extras/send-email-when-torrent-done.sh
15
-        DESTINATION ${CMAKE_INSTALL_DOCDIR})
16
-    install(
17
-        DIRECTORY news
18
-        DESTINATION ${CMAKE_INSTALL_DOCDIR})
19
-endif()
20
-
21
 if(MSVC AND ENABLE_DAEMON AND ENABLE_QT AND ENABLE_UTILS AND WITH_CRYPTO STREQUAL "openssl" AND INSTALL_WEB)
22
     add_subdirectory(dist/msi)
23
 endif()
(-)b/net-p2p/transmission/files/patch-gtk_Application.cc (+11 lines)
Added Link Here
1
--- gtk/Application.cc.orig	2023-09-19 12:12:08 UTC
2
+++ gtk/Application.cc
3
@@ -395,7 +395,7 @@ void register_magnet_link_handler()
4
             _("Couldn't register Transmission as a {content_type} handler: {error} ({error_code})"),
5
             fmt::arg("content_type", content_type),
6
             fmt::arg("error", e.what()),
7
-            fmt::arg("error_code", e.code())));
8
+            fmt::arg("error_code", static_cast<int>(e.code()))));
9
     }
10
 }
11
 
(-)b/net-p2p/transmission/files/patch-libtransmission_file-posix.cc (+11 lines)
Added Link Here
1
--- libtransmission/file-posix.cc.orig	2023-09-19 12:13:51 UTC
2
+++ libtransmission/file-posix.cc
3
@@ -556,7 +556,7 @@ tr_sys_file_t tr_sys_file_get_std(tr_std_sys_file_t st
4
         break;
5
 
6
     default:
7
-        TR_ASSERT_MSG(false, fmt::format(FMT_STRING("unknown standard file {:d}"), std_file));
8
+        TR_ASSERT_MSG(false, fmt::format(FMT_STRING("unknown standard file {:d}"), static_cast<int>(std_file)));
9
         tr_error_set_from_errno(error, EINVAL);
10
     }
11
 
(-)b/net-p2p/transmission/files/patch-libtransmission_variant-json.cc (+11 lines)
Added Link Here
1
--- libtransmission/variant-json.cc.orig	2023-09-19 12:15:17 UTC
2
+++ libtransmission/variant-json.cc
3
@@ -99,7 +99,7 @@ void error_handler(jsonsl_t jsn, jsonsl_error_t error,
4
             fmt::arg("position", jsn->pos),
5
             fmt::arg("text", std::string_view{ buf, std::min(size_t{ 16U }, data->size - jsn->pos) }),
6
             fmt::arg("error", jsonsl_strerror(error)),
7
-            fmt::arg("error_code", error)));
8
+            fmt::arg("error_code", static_cast<int>(error))));
9
 }
10
 
11
 int error_callback(jsonsl_t jsn, jsonsl_error_t error, struct jsonsl_state_st* state, jsonsl_char_t* at)
(-)b/net-p2p/transmission/files/transmission.in (-1 / +11 lines)
Lines 23-29 Link Here
23
# transmission_chown:	     By default, transmission checks and fixes the
23
# transmission_chown:	     By default, transmission checks and fixes the
24
#			     permissions for its home directory.  If this
24
#			     permissions for its home directory.  If this
25
#			     causes problems, set this variable to no.
25
#			     causes problems, set this variable to no.
26
#
26
# transmission_log:	     Use alternate log file for transmission.
27
# 			     If not specified, it sends log to rsyslog.
28
# transmission_log_level:    Set to 'critical', 'error', 'warn', 'info',
29
# 			     'debug' or 'trace' to configure log verbosity.
30
27
31
28
. /etc/rc.subr
32
. /etc/rc.subr
29
33
Lines 48-53 transmission_flags=" \ Link Here
48
	${transmission_watch_dir:+-c ${transmission_watch_dir}} \
52
	${transmission_watch_dir:+-c ${transmission_watch_dir}} \
49
	${transmission_conf_dir:+-g ${transmission_conf_dir}} \
53
	${transmission_conf_dir:+-g ${transmission_conf_dir}} \
50
	${transmission_download_dir:+-w ${transmission_download_dir}} \
54
	${transmission_download_dir:+-w ${transmission_download_dir}} \
55
	${transmission_log:+--logfile ${transmission_log}} \
56
	${transmission_log_level:+--loglevel=${transmission_log_level}} \
51
	${pidfile:+-x $pidfile} \
57
	${pidfile:+-x $pidfile} \
52
	${transmission_flags}"
58
	${transmission_flags}"
53
59
Lines 65-70 transmission_prestart() Link Here
65
		TRANSMISSION_WEB_HOME=$transmission_web_home
71
		TRANSMISSION_WEB_HOME=$transmission_web_home
66
		export TRANSMISSION_WEB_HOME
72
		export TRANSMISSION_WEB_HOME
67
	fi
73
	fi
74
	if [ -n "$transmission_log" ]; then
75
		touch $transmission_log
76
		chown $transmission_user:$transmission_group $transmission_log
77
	fi
68
}
78
}
69
79
70
run_rc_command $1
80
run_rc_command $1
(-)b/net-p2p/transmission/pkg-plist.cli (-27 lines)
Lines 1-29 Link Here
1
bin/transmission-cli
1
bin/transmission-cli
2
%%UTILS%%bin/transmission-create
3
%%DAEMON%%bin/transmission-daemon
4
%%UTILS%%bin/transmission-edit
5
%%UTILS%%bin/transmission-remote
6
%%UTILS%%bin/transmission-show
7
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
8
%%PORTDOCS%%%%DOCSDIR%%/COPYING
9
%%PORTDOCS%%%%DOCSDIR%%/README.md
10
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.0.md
11
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.1.md
12
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.2.md
13
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.3.md
14
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.4.md
15
%%PORTDOCS%%%%DOCSDIR%%/rpc-spec.md
16
%%PORTDOCS%%%%DOCSDIR%%/send-email-when-torrent-done.sh
17
%%DAEMON%%@dir %%ETCDIR%%/home
18
man/man1/transmission-cli.1.gz
2
man/man1/transmission-cli.1.gz
19
%%UTILS%%man/man1/transmission-create.1.gz
20
%%DAEMON%%man/man1/transmission-daemon.1.gz
21
%%UTILS%%man/man1/transmission-edit.1.gz
22
%%UTILS%%man/man1/transmission-remote.1.gz
23
%%UTILS%%man/man1/transmission-show.1.gz
24
%%WEB%%%%DATADIR%%/public_html/images/favicon.ico
25
%%WEB%%%%DATADIR%%/public_html/images/favicon.png
26
%%WEB%%%%DATADIR%%/public_html/images/webclip-icon.png
27
%%WEB%%%%DATADIR%%/public_html/index.html
28
%%WEB%%%%DATADIR%%/public_html/transmission-app.js
29
%%WEB%%%%DATADIR%%/public_html/transmission-app.js.LICENSE.txt
(-)b/net-p2p/transmission/pkg-plist.daemon (-11 / +1 lines)
Lines 1-9 Link Here
1
%%CLI%%bin/transmission-cli
2
%%UTILS%%bin/transmission-create
3
bin/transmission-daemon
1
bin/transmission-daemon
4
%%UTILS%%bin/transmission-edit
2
@dir %%ETCDIR%%/home
5
%%UTILS%%bin/transmission-remote
6
%%UTILS%%bin/transmission-show
7
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
3
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
8
%%PORTDOCS%%%%DOCSDIR%%/COPYING
4
%%PORTDOCS%%%%DOCSDIR%%/COPYING
9
%%PORTDOCS%%%%DOCSDIR%%/README.md
5
%%PORTDOCS%%%%DOCSDIR%%/README.md
Lines 14-26 bin/transmission-daemon Link Here
14
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.4.md
10
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.4.md
15
%%PORTDOCS%%%%DOCSDIR%%/rpc-spec.md
11
%%PORTDOCS%%%%DOCSDIR%%/rpc-spec.md
16
%%PORTDOCS%%%%DOCSDIR%%/send-email-when-torrent-done.sh
12
%%PORTDOCS%%%%DOCSDIR%%/send-email-when-torrent-done.sh
17
@dir %%ETCDIR%%/home
18
%%CLI%%man/man1/transmission-cli.1.gz
19
%%UTILS%%man/man1/transmission-create.1.gz
20
man/man1/transmission-daemon.1.gz
13
man/man1/transmission-daemon.1.gz
21
%%UTILS%%man/man1/transmission-edit.1.gz
22
%%UTILS%%man/man1/transmission-remote.1.gz
23
%%UTILS%%man/man1/transmission-show.1.gz
24
%%WEB%%%%DATADIR%%/public_html/images/favicon.ico
14
%%WEB%%%%DATADIR%%/public_html/images/favicon.ico
25
%%WEB%%%%DATADIR%%/public_html/images/favicon.png
15
%%WEB%%%%DATADIR%%/public_html/images/favicon.png
26
%%WEB%%%%DATADIR%%/public_html/images/webclip-icon.png
16
%%WEB%%%%DATADIR%%/public_html/images/webclip-icon.png
(-)b/net-p2p/transmission/pkg-plist.default (+155 lines)
Added Link Here
1
%%QT%%bin/transmission-qt
2
%%CLI%%bin/transmission-cli
3
%%UTILS%%bin/transmission-create
4
%%DAEMON%%bin/transmission-daemon
5
%%UTILS%%bin/transmission-edit
6
%%UTILS%%bin/transmission-remote
7
%%UTILS%%bin/transmission-show
8
%%DAEMON%%@dir %%ETCDIR%%/home
9
%%QT%%man/man1/transmission-qt.1.gz
10
%%CLI%%man/man1/transmission-cli.1.gz
11
%%UTILS%%man/man1/transmission-create.1.gz
12
%%DAEMON%%man/man1/transmission-daemon.1.gz
13
%%UTILS%%man/man1/transmission-edit.1.gz
14
%%UTILS%%man/man1/transmission-remote.1.gz
15
%%UTILS%%man/man1/transmission-show.1.gz
16
%%QT%%share/applications/transmission-qt.desktop
17
%%DOCSDIR%%/AUTHORS
18
%%DOCSDIR%%/COPYING
19
%%DOCSDIR%%/README.md
20
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.0.md
21
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.1.md
22
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.2.md
23
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.3.md
24
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.4.md
25
%%PORTDOCS%%%%DOCSDIR%%/rpc-spec.md
26
%%PORTDOCS%%%%DOCSDIR%%/send-email-when-torrent-done.sh
27
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_af.qm
28
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_ca.qm
29
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_da.qm
30
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_de.qm
31
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_el.qm
32
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_en.qm
33
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_es.qm
34
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_eu.qm
35
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_fi.qm
36
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_fr.qm
37
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_hu.qm
38
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_id.qm
39
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_it_IT.qm
40
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_ja.qm
41
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_ka.qm
42
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_kk.qm
43
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_ko.qm
44
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_lt.qm
45
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_nb.qm
46
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_nl.qm
47
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_pl.qm
48
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_pt.qm
49
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_pt_BR.qm
50
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_pt_PT.qm
51
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_ru.qm
52
%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_sl.qm
53
%%QT%%%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_sv.qm
54
%%QT%%%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_tr.qm
55
%%QT%%%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_uk.qm
56
%%QT%%%%QT%%%%NLS%%%%DATADIR%%/translations/transmission_zh_CN.qm
57
%%WEB%%%%DATADIR%%/public_html/images/favicon.ico
58
%%WEB%%%%DATADIR%%/public_html/images/favicon.png
59
%%WEB%%%%DATADIR%%/public_html/images/webclip-icon.png
60
%%WEB%%%%DATADIR%%/public_html/index.html
61
%%WEB%%%%DATADIR%%/public_html/transmission-app.js
62
%%WEB%%%%DATADIR%%/public_html/transmission-app.js.LICENSE.txt
63
%%GTK%%bin/transmission-gtk
64
%%GTK%%man/man1/transmission-gtk.1.gz
65
%%GTK%%share/applications/transmission-gtk.desktop
66
%%GTK%%share/icons/hicolor/scalable/apps/transmission-devel.svg
67
%%GTK%%share/icons/hicolor/scalable/apps/transmission.svg
68
%%GTK%%share/icons/hicolor/symbolic/apps/transmission-symbolic.svg
69
%%GTK%%%%NLS%%share/locale/an/LC_MESSAGES/transmission-gtk.mo
70
%%GTK%%%%NLS%%share/locale/ar/LC_MESSAGES/transmission-gtk.mo
71
%%GTK%%%%NLS%%share/locale/ast/LC_MESSAGES/transmission-gtk.mo
72
%%GTK%%%%NLS%%share/locale/az/LC_MESSAGES/transmission-gtk.mo
73
%%GTK%%%%NLS%%share/locale/be/LC_MESSAGES/transmission-gtk.mo
74
%%GTK%%%%NLS%%share/locale/bg/LC_MESSAGES/transmission-gtk.mo
75
%%GTK%%%%NLS%%share/locale/bn/LC_MESSAGES/transmission-gtk.mo
76
%%GTK%%%%NLS%%share/locale/br/LC_MESSAGES/transmission-gtk.mo
77
%%GTK%%%%NLS%%share/locale/bs/LC_MESSAGES/transmission-gtk.mo
78
%%GTK%%%%NLS%%share/locale/ca/LC_MESSAGES/transmission-gtk.mo
79
%%GTK%%%%NLS%%share/locale/ca@valencia/LC_MESSAGES/transmission-gtk.mo
80
%%GTK%%%%NLS%%share/locale/ceb/LC_MESSAGES/transmission-gtk.mo
81
%%GTK%%%%NLS%%share/locale/ckb/LC_MESSAGES/transmission-gtk.mo
82
%%GTK%%%%NLS%%share/locale/cs/LC_MESSAGES/transmission-gtk.mo
83
%%GTK%%%%NLS%%share/locale/cy/LC_MESSAGES/transmission-gtk.mo
84
%%GTK%%%%NLS%%share/locale/da/LC_MESSAGES/transmission-gtk.mo
85
%%GTK%%%%NLS%%share/locale/de/LC_MESSAGES/transmission-gtk.mo
86
%%GTK%%%%NLS%%share/locale/el/LC_MESSAGES/transmission-gtk.mo
87
%%GTK%%%%NLS%%share/locale/en_AU/LC_MESSAGES/transmission-gtk.mo
88
%%GTK%%%%NLS%%share/locale/en_CA/LC_MESSAGES/transmission-gtk.mo
89
%%GTK%%%%NLS%%share/locale/en_GB/LC_MESSAGES/transmission-gtk.mo
90
%%GTK%%%%NLS%%share/locale/eo/LC_MESSAGES/transmission-gtk.mo
91
%%GTK%%%%NLS%%share/locale/es/LC_MESSAGES/transmission-gtk.mo
92
%%GTK%%%%NLS%%share/locale/et/LC_MESSAGES/transmission-gtk.mo
93
%%GTK%%%%NLS%%share/locale/eu/LC_MESSAGES/transmission-gtk.mo
94
%%GTK%%%%NLS%%share/locale/fa/LC_MESSAGES/transmission-gtk.mo
95
%%GTK%%%%NLS%%share/locale/fi/LC_MESSAGES/transmission-gtk.mo
96
%%GTK%%%%NLS%%share/locale/fil/LC_MESSAGES/transmission-gtk.mo
97
%%GTK%%%%NLS%%share/locale/fo/LC_MESSAGES/transmission-gtk.mo
98
%%GTK%%%%NLS%%share/locale/fr/LC_MESSAGES/transmission-gtk.mo
99
%%GTK%%%%NLS%%share/locale/fr_CA/LC_MESSAGES/transmission-gtk.mo
100
%%GTK%%%%NLS%%share/locale/ga/LC_MESSAGES/transmission-gtk.mo
101
%%GTK%%%%NLS%%share/locale/gl/LC_MESSAGES/transmission-gtk.mo
102
%%GTK%%%%NLS%%share/locale/gv/LC_MESSAGES/transmission-gtk.mo
103
%%GTK%%%%NLS%%share/locale/he/LC_MESSAGES/transmission-gtk.mo
104
%%GTK%%%%NLS%%share/locale/hi/LC_MESSAGES/transmission-gtk.mo
105
%%GTK%%%%NLS%%share/locale/hr/LC_MESSAGES/transmission-gtk.mo
106
%%GTK%%%%NLS%%share/locale/hu/LC_MESSAGES/transmission-gtk.mo
107
%%GTK%%%%NLS%%share/locale/hy/LC_MESSAGES/transmission-gtk.mo
108
%%GTK%%%%NLS%%share/locale/ia/LC_MESSAGES/transmission-gtk.mo
109
%%GTK%%%%NLS%%share/locale/id/LC_MESSAGES/transmission-gtk.mo
110
%%GTK%%%%NLS%%share/locale/is/LC_MESSAGES/transmission-gtk.mo
111
%%GTK%%%%NLS%%share/locale/it/LC_MESSAGES/transmission-gtk.mo
112
%%GTK%%%%NLS%%share/locale/ja/LC_MESSAGES/transmission-gtk.mo
113
%%GTK%%%%NLS%%share/locale/jbo/LC_MESSAGES/transmission-gtk.mo
114
%%GTK%%%%NLS%%share/locale/ka/LC_MESSAGES/transmission-gtk.mo
115
%%GTK%%%%NLS%%share/locale/kk/LC_MESSAGES/transmission-gtk.mo
116
%%GTK%%%%NLS%%share/locale/ko/LC_MESSAGES/transmission-gtk.mo
117
%%GTK%%%%NLS%%share/locale/ku/LC_MESSAGES/transmission-gtk.mo
118
%%GTK%%%%NLS%%share/locale/ky/LC_MESSAGES/transmission-gtk.mo
119
%%GTK%%%%NLS%%share/locale/li/LC_MESSAGES/transmission-gtk.mo
120
%%GTK%%%%NLS%%share/locale/lt/LC_MESSAGES/transmission-gtk.mo
121
%%GTK%%%%NLS%%share/locale/lv/LC_MESSAGES/transmission-gtk.mo
122
%%GTK%%%%NLS%%share/locale/mk/LC_MESSAGES/transmission-gtk.mo
123
%%GTK%%%%NLS%%share/locale/ml/LC_MESSAGES/transmission-gtk.mo
124
%%GTK%%%%NLS%%share/locale/mr/LC_MESSAGES/transmission-gtk.mo
125
%%GTK%%%%NLS%%share/locale/ms/LC_MESSAGES/transmission-gtk.mo
126
%%GTK%%%%NLS%%share/locale/mt/LC_MESSAGES/transmission-gtk.mo
127
%%GTK%%%%NLS%%share/locale/nb/LC_MESSAGES/transmission-gtk.mo
128
%%GTK%%%%NLS%%share/locale/nl/LC_MESSAGES/transmission-gtk.mo
129
%%GTK%%%%NLS%%share/locale/nn/LC_MESSAGES/transmission-gtk.mo
130
%%GTK%%%%NLS%%share/locale/oc/LC_MESSAGES/transmission-gtk.mo
131
%%GTK%%%%NLS%%share/locale/pl/LC_MESSAGES/transmission-gtk.mo
132
%%GTK%%%%NLS%%share/locale/pt/LC_MESSAGES/transmission-gtk.mo
133
%%GTK%%%%NLS%%share/locale/pt_BR/LC_MESSAGES/transmission-gtk.mo
134
%%GTK%%%%NLS%%share/locale/pt_PT/LC_MESSAGES/transmission-gtk.mo
135
%%GTK%%%%NLS%%share/locale/ro/LC_MESSAGES/transmission-gtk.mo
136
%%GTK%%%%NLS%%share/locale/ru/LC_MESSAGES/transmission-gtk.mo
137
%%GTK%%%%NLS%%share/locale/si/LC_MESSAGES/transmission-gtk.mo
138
%%GTK%%%%NLS%%share/locale/sk/LC_MESSAGES/transmission-gtk.mo
139
%%GTK%%%%NLS%%share/locale/sl/LC_MESSAGES/transmission-gtk.mo
140
%%GTK%%%%NLS%%share/locale/sq/LC_MESSAGES/transmission-gtk.mo
141
%%GTK%%%%NLS%%share/locale/sr/LC_MESSAGES/transmission-gtk.mo
142
%%GTK%%%%NLS%%share/locale/sv/LC_MESSAGES/transmission-gtk.mo
143
%%GTK%%%%NLS%%share/locale/ta/LC_MESSAGES/transmission-gtk.mo
144
%%GTK%%%%NLS%%share/locale/te/LC_MESSAGES/transmission-gtk.mo
145
%%GTK%%%%NLS%%share/locale/th/LC_MESSAGES/transmission-gtk.mo
146
%%GTK%%%%NLS%%share/locale/tr/LC_MESSAGES/transmission-gtk.mo
147
%%GTK%%%%NLS%%share/locale/ug/LC_MESSAGES/transmission-gtk.mo
148
%%GTK%%%%NLS%%share/locale/uk/LC_MESSAGES/transmission-gtk.mo
149
%%GTK%%%%NLS%%share/locale/ur/LC_MESSAGES/transmission-gtk.mo
150
%%GTK%%%%NLS%%share/locale/uz/LC_MESSAGES/transmission-gtk.mo
151
%%GTK%%%%NLS%%share/locale/vi/LC_MESSAGES/transmission-gtk.mo
152
%%GTK%%%%NLS%%share/locale/zh_CN/LC_MESSAGES/transmission-gtk.mo
153
%%GTK%%%%NLS%%share/locale/zh_HK/LC_MESSAGES/transmission-gtk.mo
154
%%GTK%%%%NLS%%share/locale/zh_TW/LC_MESSAGES/transmission-gtk.mo
155
%%GTK%%%%NLS%%share/metainfo/transmission-gtk.metainfo.xml
(-)a/net-p2p/transmission/pkg-plist.full (-155 lines)
Removed Link Here
1
bin/transmission-qt
2
%%CLI%%bin/transmission-cli
3
%%UTILS%%bin/transmission-create
4
%%DAEMON%%bin/transmission-daemon
5
%%UTILS%%bin/transmission-edit
6
%%UTILS%%bin/transmission-remote
7
%%UTILS%%bin/transmission-show
8
%%DAEMON%%@dir %%ETCDIR%%/home
9
man/man1/transmission-qt.1.gz
10
%%CLI%%man/man1/transmission-cli.1.gz
11
%%UTILS%%man/man1/transmission-create.1.gz
12
%%DAEMON%%man/man1/transmission-daemon.1.gz
13
%%UTILS%%man/man1/transmission-edit.1.gz
14
%%UTILS%%man/man1/transmission-remote.1.gz
15
%%UTILS%%man/man1/transmission-show.1.gz
16
share/applications/transmission-qt.desktop
17
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
18
%%PORTDOCS%%%%DOCSDIR%%/COPYING
19
%%PORTDOCS%%%%DOCSDIR%%/README.md
20
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.0.md
21
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.1.md
22
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.2.md
23
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.3.md
24
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.4.md
25
%%PORTDOCS%%%%DOCSDIR%%/rpc-spec.md
26
%%PORTDOCS%%%%DOCSDIR%%/send-email-when-torrent-done.sh
27
%%NLS%%%%DATADIR%%/translations/transmission_af.qm
28
%%NLS%%%%DATADIR%%/translations/transmission_ca.qm
29
%%NLS%%%%DATADIR%%/translations/transmission_da.qm
30
%%NLS%%%%DATADIR%%/translations/transmission_de.qm
31
%%NLS%%%%DATADIR%%/translations/transmission_el.qm
32
%%NLS%%%%DATADIR%%/translations/transmission_en.qm
33
%%NLS%%%%DATADIR%%/translations/transmission_es.qm
34
%%NLS%%%%DATADIR%%/translations/transmission_eu.qm
35
%%NLS%%%%DATADIR%%/translations/transmission_fi.qm
36
%%NLS%%%%DATADIR%%/translations/transmission_fr.qm
37
%%NLS%%%%DATADIR%%/translations/transmission_hu.qm
38
%%NLS%%%%DATADIR%%/translations/transmission_id.qm
39
%%NLS%%%%DATADIR%%/translations/transmission_it_IT.qm
40
%%NLS%%%%DATADIR%%/translations/transmission_ja.qm
41
%%NLS%%%%DATADIR%%/translations/transmission_ka.qm
42
%%NLS%%%%DATADIR%%/translations/transmission_kk.qm
43
%%NLS%%%%DATADIR%%/translations/transmission_ko.qm
44
%%NLS%%%%DATADIR%%/translations/transmission_lt.qm
45
%%NLS%%%%DATADIR%%/translations/transmission_nb.qm
46
%%NLS%%%%DATADIR%%/translations/transmission_nl.qm
47
%%NLS%%%%DATADIR%%/translations/transmission_pl.qm
48
%%NLS%%%%DATADIR%%/translations/transmission_pt.qm
49
%%NLS%%%%DATADIR%%/translations/transmission_pt_BR.qm
50
%%NLS%%%%DATADIR%%/translations/transmission_pt_PT.qm
51
%%NLS%%%%DATADIR%%/translations/transmission_ru.qm
52
%%NLS%%%%DATADIR%%/translations/transmission_sl.qm
53
%%NLS%%%%DATADIR%%/translations/transmission_sv.qm
54
%%NLS%%%%DATADIR%%/translations/transmission_tr.qm
55
%%NLS%%%%DATADIR%%/translations/transmission_uk.qm
56
%%NLS%%%%DATADIR%%/translations/transmission_zh_CN.qm
57
%%WEB%%%%DATADIR%%/public_html/images/favicon.ico
58
%%WEB%%%%DATADIR%%/public_html/images/favicon.png
59
%%WEB%%%%DATADIR%%/public_html/images/webclip-icon.png
60
%%WEB%%%%DATADIR%%/public_html/index.html
61
%%WEB%%%%DATADIR%%/public_html/transmission-app.js
62
%%WEB%%%%DATADIR%%/public_html/transmission-app.js.LICENSE.txt
63
bin/transmission-gtk
64
man/man1/transmission-gtk.1.gz
65
share/applications/transmission-gtk.desktop
66
share/icons/hicolor/scalable/apps/transmission-devel.svg
67
share/icons/hicolor/scalable/apps/transmission.svg
68
share/icons/hicolor/symbolic/apps/transmission-symbolic.svg
69
%%NLS%%share/locale/an/LC_MESSAGES/transmission-gtk.mo
70
%%NLS%%share/locale/ar/LC_MESSAGES/transmission-gtk.mo
71
%%NLS%%share/locale/ast/LC_MESSAGES/transmission-gtk.mo
72
%%NLS%%share/locale/az/LC_MESSAGES/transmission-gtk.mo
73
%%NLS%%share/locale/be/LC_MESSAGES/transmission-gtk.mo
74
%%NLS%%share/locale/bg/LC_MESSAGES/transmission-gtk.mo
75
%%NLS%%share/locale/bn/LC_MESSAGES/transmission-gtk.mo
76
%%NLS%%share/locale/br/LC_MESSAGES/transmission-gtk.mo
77
%%NLS%%share/locale/bs/LC_MESSAGES/transmission-gtk.mo
78
%%NLS%%share/locale/ca/LC_MESSAGES/transmission-gtk.mo
79
%%NLS%%share/locale/ca@valencia/LC_MESSAGES/transmission-gtk.mo
80
%%NLS%%share/locale/ceb/LC_MESSAGES/transmission-gtk.mo
81
%%NLS%%share/locale/ckb/LC_MESSAGES/transmission-gtk.mo
82
%%NLS%%share/locale/cs/LC_MESSAGES/transmission-gtk.mo
83
%%NLS%%share/locale/cy/LC_MESSAGES/transmission-gtk.mo
84
%%NLS%%share/locale/da/LC_MESSAGES/transmission-gtk.mo
85
%%NLS%%share/locale/de/LC_MESSAGES/transmission-gtk.mo
86
%%NLS%%share/locale/el/LC_MESSAGES/transmission-gtk.mo
87
%%NLS%%share/locale/en_AU/LC_MESSAGES/transmission-gtk.mo
88
%%NLS%%share/locale/en_CA/LC_MESSAGES/transmission-gtk.mo
89
%%NLS%%share/locale/en_GB/LC_MESSAGES/transmission-gtk.mo
90
%%NLS%%share/locale/eo/LC_MESSAGES/transmission-gtk.mo
91
%%NLS%%share/locale/es/LC_MESSAGES/transmission-gtk.mo
92
%%NLS%%share/locale/et/LC_MESSAGES/transmission-gtk.mo
93
%%NLS%%share/locale/eu/LC_MESSAGES/transmission-gtk.mo
94
%%NLS%%share/locale/fa/LC_MESSAGES/transmission-gtk.mo
95
%%NLS%%share/locale/fi/LC_MESSAGES/transmission-gtk.mo
96
%%NLS%%share/locale/fil/LC_MESSAGES/transmission-gtk.mo
97
%%NLS%%share/locale/fo/LC_MESSAGES/transmission-gtk.mo
98
%%NLS%%share/locale/fr/LC_MESSAGES/transmission-gtk.mo
99
%%NLS%%share/locale/fr_CA/LC_MESSAGES/transmission-gtk.mo
100
%%NLS%%share/locale/ga/LC_MESSAGES/transmission-gtk.mo
101
%%NLS%%share/locale/gl/LC_MESSAGES/transmission-gtk.mo
102
%%NLS%%share/locale/gv/LC_MESSAGES/transmission-gtk.mo
103
%%NLS%%share/locale/he/LC_MESSAGES/transmission-gtk.mo
104
%%NLS%%share/locale/hi/LC_MESSAGES/transmission-gtk.mo
105
%%NLS%%share/locale/hr/LC_MESSAGES/transmission-gtk.mo
106
%%NLS%%share/locale/hu/LC_MESSAGES/transmission-gtk.mo
107
%%NLS%%share/locale/hy/LC_MESSAGES/transmission-gtk.mo
108
%%NLS%%share/locale/ia/LC_MESSAGES/transmission-gtk.mo
109
%%NLS%%share/locale/id/LC_MESSAGES/transmission-gtk.mo
110
%%NLS%%share/locale/is/LC_MESSAGES/transmission-gtk.mo
111
%%NLS%%share/locale/it/LC_MESSAGES/transmission-gtk.mo
112
%%NLS%%share/locale/ja/LC_MESSAGES/transmission-gtk.mo
113
%%NLS%%share/locale/jbo/LC_MESSAGES/transmission-gtk.mo
114
%%NLS%%share/locale/ka/LC_MESSAGES/transmission-gtk.mo
115
%%NLS%%share/locale/kk/LC_MESSAGES/transmission-gtk.mo
116
%%NLS%%share/locale/ko/LC_MESSAGES/transmission-gtk.mo
117
%%NLS%%share/locale/ku/LC_MESSAGES/transmission-gtk.mo
118
%%NLS%%share/locale/ky/LC_MESSAGES/transmission-gtk.mo
119
%%NLS%%share/locale/li/LC_MESSAGES/transmission-gtk.mo
120
%%NLS%%share/locale/lt/LC_MESSAGES/transmission-gtk.mo
121
%%NLS%%share/locale/lv/LC_MESSAGES/transmission-gtk.mo
122
%%NLS%%share/locale/mk/LC_MESSAGES/transmission-gtk.mo
123
%%NLS%%share/locale/ml/LC_MESSAGES/transmission-gtk.mo
124
%%NLS%%share/locale/mr/LC_MESSAGES/transmission-gtk.mo
125
%%NLS%%share/locale/ms/LC_MESSAGES/transmission-gtk.mo
126
%%NLS%%share/locale/mt/LC_MESSAGES/transmission-gtk.mo
127
%%NLS%%share/locale/nb/LC_MESSAGES/transmission-gtk.mo
128
%%NLS%%share/locale/nl/LC_MESSAGES/transmission-gtk.mo
129
%%NLS%%share/locale/nn/LC_MESSAGES/transmission-gtk.mo
130
%%NLS%%share/locale/oc/LC_MESSAGES/transmission-gtk.mo
131
%%NLS%%share/locale/pl/LC_MESSAGES/transmission-gtk.mo
132
%%NLS%%share/locale/pt/LC_MESSAGES/transmission-gtk.mo
133
%%NLS%%share/locale/pt_BR/LC_MESSAGES/transmission-gtk.mo
134
%%NLS%%share/locale/pt_PT/LC_MESSAGES/transmission-gtk.mo
135
%%NLS%%share/locale/ro/LC_MESSAGES/transmission-gtk.mo
136
%%NLS%%share/locale/ru/LC_MESSAGES/transmission-gtk.mo
137
%%NLS%%share/locale/si/LC_MESSAGES/transmission-gtk.mo
138
%%NLS%%share/locale/sk/LC_MESSAGES/transmission-gtk.mo
139
%%NLS%%share/locale/sl/LC_MESSAGES/transmission-gtk.mo
140
%%NLS%%share/locale/sq/LC_MESSAGES/transmission-gtk.mo
141
%%NLS%%share/locale/sr/LC_MESSAGES/transmission-gtk.mo
142
%%NLS%%share/locale/sv/LC_MESSAGES/transmission-gtk.mo
143
%%NLS%%share/locale/ta/LC_MESSAGES/transmission-gtk.mo
144
%%NLS%%share/locale/te/LC_MESSAGES/transmission-gtk.mo
145
%%NLS%%share/locale/th/LC_MESSAGES/transmission-gtk.mo
146
%%NLS%%share/locale/tr/LC_MESSAGES/transmission-gtk.mo
147
%%NLS%%share/locale/ug/LC_MESSAGES/transmission-gtk.mo
148
%%NLS%%share/locale/uk/LC_MESSAGES/transmission-gtk.mo
149
%%NLS%%share/locale/ur/LC_MESSAGES/transmission-gtk.mo
150
%%NLS%%share/locale/uz/LC_MESSAGES/transmission-gtk.mo
151
%%NLS%%share/locale/vi/LC_MESSAGES/transmission-gtk.mo
152
%%NLS%%share/locale/zh_CN/LC_MESSAGES/transmission-gtk.mo
153
%%NLS%%share/locale/zh_HK/LC_MESSAGES/transmission-gtk.mo
154
%%NLS%%share/locale/zh_TW/LC_MESSAGES/transmission-gtk.mo
155
share/metainfo/transmission-gtk.metainfo.xml
(-)b/net-p2p/transmission/pkg-plist.gtk (-29 / +1 lines)
Lines 1-28 Link Here
1
%%CLI%%bin/transmission-cli
2
%%UTILS%%bin/transmission-create
3
%%DAEMON%%bin/transmission-daemon
4
%%UTILS%%bin/transmission-edit
5
bin/transmission-gtk
1
bin/transmission-gtk
6
%%UTILS%%bin/transmission-remote
7
%%UTILS%%bin/transmission-show
8
%%CLI%%man/man1/transmission-cli.1.gz
9
%%UTILS%%man/man1/transmission-create.1.gz
10
%%DAEMON%%man/man1/transmission-daemon.1.gz
11
%%UTILS%%man/man1/transmission-edit.1.gz
12
%%UTILS%%man/man1/transmission-remote.1.gz
13
%%UTILS%%man/man1/transmission-show.1.gz
14
man/man1/transmission-gtk.1.gz
2
man/man1/transmission-gtk.1.gz
15
share/applications/transmission-gtk.desktop
3
share/applications/transmission-gtk.desktop
16
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
17
%%PORTDOCS%%%%DOCSDIR%%/COPYING
18
%%PORTDOCS%%%%DOCSDIR%%/README.md
19
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.0.md
20
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.1.md
21
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.2.md
22
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.3.md
23
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.4.md
24
%%PORTDOCS%%%%DOCSDIR%%/rpc-spec.md
25
%%PORTDOCS%%%%DOCSDIR%%/send-email-when-torrent-done.sh
26
share/icons/hicolor/scalable/apps/transmission-devel.svg
4
share/icons/hicolor/scalable/apps/transmission-devel.svg
27
share/icons/hicolor/scalable/apps/transmission.svg
5
share/icons/hicolor/scalable/apps/transmission.svg
28
share/icons/hicolor/symbolic/apps/transmission-symbolic.svg
6
share/icons/hicolor/symbolic/apps/transmission-symbolic.svg
Lines 112-121 share/icons/hicolor/symbolic/apps/transmission-symbolic.svg Link Here
112
%%NLS%%share/locale/zh_CN/LC_MESSAGES/transmission-gtk.mo
90
%%NLS%%share/locale/zh_CN/LC_MESSAGES/transmission-gtk.mo
113
%%NLS%%share/locale/zh_HK/LC_MESSAGES/transmission-gtk.mo
91
%%NLS%%share/locale/zh_HK/LC_MESSAGES/transmission-gtk.mo
114
%%NLS%%share/locale/zh_TW/LC_MESSAGES/transmission-gtk.mo
92
%%NLS%%share/locale/zh_TW/LC_MESSAGES/transmission-gtk.mo
115
share/metainfo/transmission-gtk.metainfo.xml
93
%%NLS%%share/metainfo/transmission-gtk.metainfo.xml
116
%%CLI%%man/man1/transmission-cli.1.gz
117
%%UTILS%%man/man1/transmission-create.1.gz
118
%%DAEMON%%man/man1/transmission-daemon.1.gz
119
%%UTILS%%man/man1/transmission-edit.1.gz
120
%%UTILS%%man/man1/transmission-remote.1.gz
121
%%UTILS%%man/man1/transmission-show.1.gz
(-)b/net-p2p/transmission/pkg-plist.qt (-27 lines)
Lines 1-29 Link Here
1
bin/transmission-qt
1
bin/transmission-qt
2
%%CLI%%bin/transmission-cli
3
%%UTILS%%bin/transmission-create
4
%%DAEMON%%bin/transmission-daemon
5
%%UTILS%%bin/transmission-edit
6
%%UTILS%%bin/transmission-remote
7
%%UTILS%%bin/transmission-show
8
man/man1/transmission-qt.1.gz
2
man/man1/transmission-qt.1.gz
9
%%CLI%%man/man1/transmission-cli.1.gz
10
%%UTILS%%man/man1/transmission-create.1.gz
11
%%DAEMON%%man/man1/transmission-daemon.1.gz
12
%%UTILS%%man/man1/transmission-edit.1.gz
13
%%UTILS%%man/man1/transmission-remote.1.gz
14
%%UTILS%%man/man1/transmission-show.1.gz
15
share/applications/transmission-qt.desktop
3
share/applications/transmission-qt.desktop
16
share/icons/hicolor/scalable/apps/transmission.svg
4
share/icons/hicolor/scalable/apps/transmission.svg
17
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
18
%%PORTDOCS%%%%DOCSDIR%%/COPYING
19
%%PORTDOCS%%%%DOCSDIR%%/README.md
20
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.0.md
21
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.1.md
22
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.2.md
23
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.3.md
24
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.4.md
25
%%PORTDOCS%%%%DOCSDIR%%/rpc-spec.md
26
%%PORTDOCS%%%%DOCSDIR%%/send-email-when-torrent-done.sh
27
%%NLS%%%%DATADIR%%/translations/transmission_af.qm
5
%%NLS%%%%DATADIR%%/translations/transmission_af.qm
28
%%NLS%%%%DATADIR%%/translations/transmission_ca.qm
6
%%NLS%%%%DATADIR%%/translations/transmission_ca.qm
29
%%NLS%%%%DATADIR%%/translations/transmission_da.qm
7
%%NLS%%%%DATADIR%%/translations/transmission_da.qm
Lines 54-61 share/icons/hicolor/scalable/apps/transmission.svg Link Here
54
%%NLS%%%%DATADIR%%/translations/transmission_tr.qm
32
%%NLS%%%%DATADIR%%/translations/transmission_tr.qm
55
%%NLS%%%%DATADIR%%/translations/transmission_uk.qm
33
%%NLS%%%%DATADIR%%/translations/transmission_uk.qm
56
%%NLS%%%%DATADIR%%/translations/transmission_zh_CN.qm
34
%%NLS%%%%DATADIR%%/translations/transmission_zh_CN.qm
57
%%WEB%%%%DATADIR%%/public_html/images/favicon.ico
58
%%WEB%%%%DATADIR%%/public_html/images/favicon.png
59
%%WEB%%%%DATADIR%%/public_html/images/webclip-icon.png
60
%%WEB%%%%DATADIR%%/public_html/index.html
61
%%WEB%%%%DATADIR%%/public_html/transmission-app.js
(-)b/net-p2p/transmission/pkg-plist.utils (-11 lines)
Lines 2-17 bin/transmission-create Link Here
2
bin/transmission-edit
2
bin/transmission-edit
3
bin/transmission-remote
3
bin/transmission-remote
4
bin/transmission-show
4
bin/transmission-show
5
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
6
%%PORTDOCS%%%%DOCSDIR%%/COPYING
7
%%PORTDOCS%%%%DOCSDIR%%/README.md
8
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.0.md
9
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.1.md
10
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.2.md
11
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.3.md
12
%%PORTDOCS%%%%DOCSDIR%%/news/news-4.0.4.md
13
%%PORTDOCS%%%%DOCSDIR%%/rpc-spec.md
14
%%PORTDOCS%%%%DOCSDIR%%/send-email-when-torrent-done.sh
15
man/man1/transmission-create.1.gz
5
man/man1/transmission-create.1.gz
16
man/man1/transmission-edit.1.gz
6
man/man1/transmission-edit.1.gz
17
man/man1/transmission-remote.1.gz
7
man/man1/transmission-remote.1.gz
18
- 

Return to bug 273841