f2150cc951
While here, drop maintainership per maintainer PR: 234730 Submitted by: Nathan <ndowens@yahoo.com> (maintainer)
66 lines
1.9 KiB
Makefile
66 lines
1.9 KiB
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gtk-youtube-viewer
|
|
PORTVERSION= 3.5.1
|
|
CATEGORIES= multimedia perl5
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GTK Search and play YouTube videos streaming in MPlayer
|
|
|
|
LICENSE= ART10 GPLv3
|
|
LICENSE_COMB= dual
|
|
|
|
# According to Build.PL
|
|
BUILD_DEPENDS= p5-JSON>0:converters/p5-JSON \
|
|
p5-JSON-XS>0:converters/p5-JSON-XS \
|
|
p5-Data-Dump>0:devel/p5-Data-Dump \
|
|
p5-PathTools>0:devel/p5-PathTools \
|
|
p5-Term-ReadLine-Gnu>0:devel/p5-Term-ReadLine-Gnu \
|
|
p5-Text-CharWidth>0:textproc/p5-Text-CharWidth \
|
|
p5-Text-Tabs+Wrap>0:textproc/p5-Text-Tabs+Wrap \
|
|
p5-LWP-Protocol-https>0:www/p5-LWP-Protocol-https \
|
|
p5-Mozilla-CA>0:www/p5-Mozilla-CA \
|
|
p5-libwww>0:www/p5-libwww
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS} \
|
|
p5-common-sense>=2.02:devel/p5-common-sense
|
|
|
|
NO_ARCH= yes
|
|
|
|
USES= perl5 shebangfix
|
|
SHEBANG_FILES= bin/gtk-youtube-viewer bin/youtube-viewer
|
|
USE_PERL5= patch modbuild
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= trizen
|
|
GH_PROJECT= youtube-viewer
|
|
|
|
OPTIONS_DEFINE= GTK2
|
|
OPTIONS_MULTI= PLAYER
|
|
OPTIONS_MULTI_PLAYER= MPLAYER MPV VLC
|
|
OPTIONS_DEFAULT= GTK2 MPLAYER
|
|
OPTIONS_SUB= yes
|
|
|
|
MPLAYER_DESC= Media player
|
|
MPV_DESC= MPV media player support
|
|
VLC_DESC= VLC media player support
|
|
|
|
GTK2_BUILD_DEPENDS= p5-File-ShareDir>0:devel/p5-File-ShareDir \
|
|
p5-Gtk2>0:x11-toolkits/p5-Gtk2
|
|
GTK2_RUN_DEPENDS= p5-File-ShareDir>0:devel/p5-File-ShareDir \
|
|
p5-Gtk2>0:x11-toolkits/p5-Gtk2
|
|
GTK2_CONFIGURE_ON= --gtk-youtube-viewer
|
|
MPLAYER_RUN_DEPENDS= mplayer:multimedia/mplayer
|
|
MPV_RUN_DEPENDS= mpv:multimedia/mpv
|
|
VLC_RUN_DEPENDS= vlc:multimedia/vlc
|
|
|
|
post-install-GTK2-on:
|
|
(cd ${STAGEDIR}${DESKTOPDIR} && ${LN} -sf \
|
|
../../${SITE_PERL_REL}/auto/share/dist/WWW-YoutubeViewer/gtk-youtube-viewer.desktop)
|
|
(cd ${STAGEDIR}${PREFIX}/share/pixmaps && ${LN} -sf \
|
|
../../${SITE_PERL_REL}/auto/share/dist/WWW-YoutubeViewer/icons/gtk-youtube-viewer.png)
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${PERL} ./Build test
|
|
|
|
.include <bsd.port.mk>
|