Marcel Telka
2024-04-02 f1b1912adc00984cd165470b728dda03ac81b2c6
commit | author | age
28e221 1 #
AP 2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL)". You may
4 # only use this file in accordance with the terms of the CDDL.
5 #
6 # A full copy of the text of the CDDL should have accompanied this
7 # source. A copy of the CDDL is also available via the Internet at
8 # http://www.illumos.org/license/CDDL.
9 #
10
11 #
12 # Copyright 2015 Alexander Pyhalov
a0fdf6 13 # Copyright 2018 Michal Nowak
72e9f1 14 # Copyright 2022-2023 Niklas Poslovski
28e221 15 #
72e9f1 16
NP 17 # crypto-test segfaults with OpenSSL 3.1, so let's stay at 1.1 for now.
1909ab 18 USE_OPENSSL11= yes
28e221 19 include ../../../make-rules/shared-macros.mk
AP 20
21 COMPONENT_NAME=        transmission
1909ab 22 COMPONENT_VERSION=    3.0.0
NP 23 HUMAN_VERSION=        3.00
72e9f1 24 COMPONENT_REVISION=    1
a0fdf6 25 COMPONENT_PROJECT_URL=    https://www.transmissionbt.com/
28e221 26 COMPONENT_SUMMARY=    GTK and console BitTorrent client
AP 27 COMPONENT_FMRI=        desktop/torrent/transmission
28 COMPONENT_CLASSIFICATION=    Applications/Internet
1909ab 29 COMPONENT_SRC=        $(COMPONENT_NAME)-$(HUMAN_VERSION)
28e221 30 COMPONENT_ARCHIVE=    $(COMPONENT_SRC).tar.xz
AP 31 COMPONENT_ARCHIVE_HASH=    \
1909ab 32     sha256:9144652fe742f7f7dd6657716e378da60b751aaeda8bef8344b3eefc4db255f2
3dbe5f 33 COMPONENT_ARCHIVE_URL=    https://github.com/transmission/transmission-releases/raw/master/$(COMPONENT_ARCHIVE)
28e221 34 COMPONENT_LICENSE_FILE=    COPYING
AP 35 COMPONENT_LICENSE=    GPLv2,MIT
36
1909ab 37 include $(WS_MAKE_RULES)/common.mk
28e221 38
AP 39 PATH=$(PATH.gnu)
40
41 CONFIGURE_OPTIONS+=    --program-prefix=""
42 CONFIGURE_OPTIONS+=    --with-gtk
43 CONFIGURE_OPTIONS+=    --enable-cli
44 CONFIGURE_OPTIONS+=    --enable-daemon
45 CONFIGURE_OPTIONS+=    --enable-utp
46 CONFIGURE_OPTIONS+=    --with-crypto=openssl
a0fdf6 47 CONFIGURE_OPTIONS+=    --disable-static
MN 48
49 COMPONENT_TEST_TRANSFORMER = $(NAWK)
50 COMPONENT_TEST_TRANSFORMS = "'/TOTAL|PASS|FAIL|XFAIL|SKIP|XPASS|ERROR/'"
28e221 51
1909ab 52 # Auto-generated dependencies
28e221 53 REQUIRED_PACKAGES += library/desktop/gdk-pixbuf
AP 54 REQUIRED_PACKAGES += library/desktop/gtk3
55 REQUIRED_PACKAGES += library/desktop/pango
56 REQUIRED_PACKAGES += library/glib2
57 REQUIRED_PACKAGES += library/libevent2
1909ab 58 REQUIRED_PACKAGES += library/security/openssl-11
28e221 59 REQUIRED_PACKAGES += library/zlib
AP 60 REQUIRED_PACKAGES += system/library
61 REQUIRED_PACKAGES += system/library/math
62 REQUIRED_PACKAGES += web/curl