diff --git a/comms/scrcpy/Makefile b/comms/scrcpy/Makefile index ace66f2eee2d..ea43ce405d42 100644 --- a/comms/scrcpy/Makefile +++ b/comms/scrcpy/Makefile @@ -1,45 +1,47 @@ PORTNAME= scrcpy DISTVERSIONPREFIX= v -DISTVERSION= 1.21 -PORTREVISION= 1 +DISTVERSION= 1.24 CATEGORIES= comms net MASTER_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/releases/download/${DISTVERSIONFULL}/:server DISTFILES= ${SERVER_FILE}:server EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= tagattie@FreeBSD.org COMMENT= Display and control your Android device LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg RUN_DEPENDS= adb:devel/android-tools USES= compiler:c++11-lang meson pkgconfig sdl USE_GITHUB= yes GH_ACCOUNT= Genymobile USE_SDL= sdl2 MESON_ARGS= -Dportable=false \ -Dprebuilt_server=${WRKSRC}/${SERVER_FILE} -PLIST_FILES= bin/scrcpy man/man1/scrcpy.1.gz \ +PLIST_FILES= bin/scrcpy \ + etc/bash_completion.d/scrcpy \ + man/man1/scrcpy.1.gz \ share/icons/hicolor/256x256/apps/scrcpy.png \ - ${DATADIR}/scrcpy-server + ${DATADIR}/scrcpy-server \ + share/zsh/site-functions/_scrcpy PORTDOCS= FAQ.md README.md OPTIONS_DEFINE= DOCS SERVER_FILE= ${PORTNAME}-server-${DISTVERSIONFULL} post-extract: ${CP} ${DISTDIR}/${SERVER_FILE} ${WRKSRC} post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include diff --git a/comms/scrcpy/distinfo b/comms/scrcpy/distinfo index 7658613a26cc..198ac7b83914 100644 --- a/comms/scrcpy/distinfo +++ b/comms/scrcpy/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1638420118 -SHA256 (scrcpy-server-v1.21) = dbcccab523ee26796e55ea33652649e4b7af498edae9aa75e4d4d7869c0ab848 -SIZE (scrcpy-server-v1.21) = 40067 -SHA256 (Genymobile-scrcpy-v1.21_GH0.tar.gz) = 76e16a894bdb483b14b7ae7dcc1be8036ec17924dfab070cf0cb3b47653a6822 -SIZE (Genymobile-scrcpy-v1.21_GH0.tar.gz) = 360667 +TIMESTAMP = 1656485534 +SHA256 (scrcpy-server-v1.24) = ae74a81ea79c0dc7250e586627c278c0a9a8c5de46c9fb5c38c167fb1a36f056 +SIZE (scrcpy-server-v1.24) = 41159 +SHA256 (Genymobile-scrcpy-v1.24_GH0.tar.gz) = e3054ad453ac577b941f8df0eabc94e842affc6e1d10ba8d21cededfa2eacc73 +SIZE (Genymobile-scrcpy-v1.24_GH0.tar.gz) = 424970 diff --git a/comms/scrcpy/files/patch-app_meson.build b/comms/scrcpy/files/patch-app_meson.build index 134b89c40ade..2f80b25a7491 100644 --- a/comms/scrcpy/files/patch-app_meson.build +++ b/comms/scrcpy/files/patch-app_meson.build @@ -1,13 +1,22 @@ ---- app/meson.build.orig 2021-12-02 04:47:49 UTC +--- app/meson.build.orig 2022-04-28 18:46:28 UTC +++ app/meson.build -@@ -44,8 +44,8 @@ src = [ +@@ -46,8 +46,8 @@ src = [ conf = configuration_data() -conf.set('_POSIX_C_SOURCE', '200809L') -conf.set('_XOPEN_SOURCE', '700') +# conf.set('_POSIX_C_SOURCE', '200809L') +# conf.set('_XOPEN_SOURCE', '700') conf.set('_GNU_SOURCE', true) if host_machine.system() == 'windows' +@@ -230,7 +230,7 @@ install_data('data/icon.png', + install_data('data/zsh-completion/_scrcpy', + install_dir: 'share/zsh/site-functions') + install_data('data/bash-completion/scrcpy', +- install_dir: 'share/bash-completion/completions') ++ install_dir: 'etc/bash_completion.d') + + + ### TESTS diff --git a/comms/scrcpy/files/patch-app_src_usb_aoa__hid.h b/comms/scrcpy/files/patch-app_src_usb_aoa__hid.h new file mode 100644 index 000000000000..703fb0574852 --- /dev/null +++ b/comms/scrcpy/files/patch-app_src_usb_aoa__hid.h @@ -0,0 +1,11 @@ +--- app/src/usb/aoa_hid.h.orig 2022-06-30 04:28:03 UTC ++++ app/src/usb/aoa_hid.h +@@ -4,7 +4,7 @@ + #include + #include + +-#include ++#include + + #include "usb.h" + #include "util/acksync.h" diff --git a/comms/scrcpy/files/patch-app_src_usb_usb.h b/comms/scrcpy/files/patch-app_src_usb_usb.h new file mode 100644 index 000000000000..0dd4fbf92d98 --- /dev/null +++ b/comms/scrcpy/files/patch-app_src_usb_usb.h @@ -0,0 +1,11 @@ +--- app/src/usb/usb.h.orig 2022-06-30 04:29:07 UTC ++++ app/src/usb/usb.h +@@ -4,7 +4,7 @@ + #include "common.h" + + #include +-#include ++#include + + #include "util/thread.h" + diff --git a/comms/scrcpy/files/patch-app_src_version.c b/comms/scrcpy/files/patch-app_src_version.c new file mode 100644 index 000000000000..e23aa8a6e5a4 --- /dev/null +++ b/comms/scrcpy/files/patch-app_src_version.c @@ -0,0 +1,11 @@ +--- app/src/version.c.orig 2022-06-30 04:29:39 UTC ++++ app/src/version.c +@@ -7,7 +7,7 @@ + # include + #endif + #ifdef HAVE_USB +-# include ++# include + #endif + + void