1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-29 10:18:30 +00:00
freebsd-ports/multimedia/clive1/Makefile
Nicola Vitale 607bc6d592 - Update to 1.0.0
- Add www/py-urlgrabber to RUN_DEPENDS
- Add clive-passwd.1 to MAN1
- Add WITH_PYCRYPTO to OPTIONS
- Remove devel/libslang2 from LIB_DEPENDS, and CONFIGURE_ENV
  for the old bundled module newt
2008-08-11 12:38:45 +00:00

77 lines
1.9 KiB
Makefile

# New ports collection makefile for: clive
# Date created: 2007-02-11
# Whom: Nicola Vitale <nivit@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= clive
PORTVERSION= 1.0.0
#PORTREVISION= 0
#PORTEPOCH= 0
CATEGORIES= multimedia
MASTER_SITES= http://download.gna.org/clive/1.0.x/ \
SF
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DIST_SUBDIR= ${PORTNAME}
MAINTAINER= nivit@FreeBSD.org
COMMENT= Video extraction utility for YouTube and Google Video
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}urlgrabber>=3.1.0_1:${PORTSDIR}/www/py-urlgrabber
# deskutils/ljclive (same executable/manpage/distfile name)
CONFLICTS= clive-[0-9]*
GNU_CONFIGURE= yes
USE_BZIP2= yes
USE_PYTHON= yes
.if !defined(NO_INSTALL_MANPAGES)
MAN1= ${PORTNAME}.1 ${PORTNAME}-passwd.1
.else
CONFIGURE_ARGS= --with-doc=no
.endif
OPTIONS= FFMPEG "Install ffmpeg for re-encoding" off \
MPLAYER "Install mplayer as video player" off \
NEWT "Install devel/newt (support for a simple GUI)" off \
PYCRYPTO "Install pycrypto to encrypt login password" off \
SQLITE3 "Install sqlite3 for caching visited URLs" off \
VLC "Install vlc as video player" off \
XCLIP "Install xclip (read URLs from clipboard)" off
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
.include <bsd.port.pre.mk>
.if defined(WITH_FFMPEG)
RUN_DEPENDS+= ffmpeg:${PORTSDIR}/multimedia/ffmpeg
.endif
.if defined(WITH_MPLAYER)
RUN_DEPENDS+= mplayer:${PORTSDIR}/multimedia/mplayer
.endif
.if defined(WITH_NEWT)
RUN_DEPENDS+= newt${PYTHON_PKGNAMESUFFIX}>=0.51.0_4:${PORTSDIR}/devel/newt
.endif
.if defined(WITH_PYCRYPTO)
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.0.1_1:${PORTSDIR}/security/py-pycrypto
.endif
.if defined(WITH_SQLITE3)
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}sqlite3>=2.5.2_1:${PORTSDIR}/databases/py-sqlite3
.endif
.if defined(WITH_VLC)
RUN_DEPENDS+= vlc:${PORTSDIR}/multimedia/vlc
.endif
.if defined(WITH_XCLIP)
RUN_DEPENDS+= xclip:${PORTSDIR}/x11/xclip
.endif
.include <bsd.port.post.mk>