mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
15945f8122
to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit)
40 lines
854 B
Makefile
40 lines
854 B
Makefile
# Created by: Nicola Vitale <nivit@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mps-youtube
|
|
PORTVERSION= 0.01.46
|
|
#PORTREVISION= 0
|
|
PORTREVISION= 1
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= CHEESESHOP
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= Terminal based YouTube jukebox with playlist management
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pafy>=0.3.41:${PORTSDIR}/www/py-pafy
|
|
|
|
OPTIONS_DEFAULT= MPLAYER
|
|
OPTIONS_RADIO= PLAYER
|
|
OPTIONS_RADIO_PLAYER= MPLAYER MPV
|
|
|
|
MPV_DESC= Mpv media player support
|
|
|
|
# This port installs the following files in shared dirs
|
|
# PLIST_FILES= bin/mpsyt
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
USE_PYDISTUTILS= yes
|
|
USE_PYTHON= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMPLAYER}
|
|
RUN_DEPENDS+= mplayer:${PORTSDIR}/multimedia/mplayer
|
|
.elif ${PORT_OPTIONS:MMPV}
|
|
RUN_DEPENDS+= mpv:${PORTSDIR}/multimedia/mpv
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|