diff options
author | nivit <nivit@FreeBSD.org> | 2008-08-11 20:38:45 +0800 |
---|---|---|
committer | nivit <nivit@FreeBSD.org> | 2008-08-11 20:38:45 +0800 |
commit | 867be6ec8d7f77c6ae62a94ea3e25640ce024b1c (patch) | |
tree | 4d0ee021bdb1ea1bff3d1b53db79601a45b26269 /multimedia/clive/Makefile | |
parent | 0b28a964f0c4e448a7bd61277db98e4f6a0033a1 (diff) | |
download | freebsd-ports-gnome-867be6ec8d7f77c6ae62a94ea3e25640ce024b1c.tar.gz freebsd-ports-gnome-867be6ec8d7f77c6ae62a94ea3e25640ce024b1c.tar.zst freebsd-ports-gnome-867be6ec8d7f77c6ae62a94ea3e25640ce024b1c.zip |
- 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
Diffstat (limited to 'multimedia/clive/Makefile')
-rw-r--r-- | multimedia/clive/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/multimedia/clive/Makefile b/multimedia/clive/Makefile index 2587be26d52c..af9e626de26f 100644 --- a/multimedia/clive/Makefile +++ b/multimedia/clive/Makefile @@ -6,11 +6,11 @@ # PORTNAME= clive -PORTVERSION= 0.4.19 +PORTVERSION= 1.0.0 #PORTREVISION= 0 #PORTEPOCH= 0 CATEGORIES= multimedia -MASTER_SITES= http://download.gna.org/clive/0.4/src/ \ +MASTER_SITES= http://download.gna.org/clive/1.0.x/ \ SF PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DIST_SUBDIR= ${PORTNAME} @@ -18,6 +18,8 @@ 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]* @@ -27,14 +29,15 @@ USE_BZIP2= yes USE_PYTHON= yes .if !defined(NO_INSTALL_MANPAGES) -MAN1= ${PORTNAME}.1 +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 "Use devel/newt instead of bundled module" 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 @@ -51,14 +54,11 @@ RUN_DEPENDS+= mplayer:${PORTSDIR}/multimedia/mplayer .endif .if defined(WITH_NEWT) -PLIST_SUB+= OPTNEWT="@comment " -CONFIGURE_ARGS+= --with-installed-newt=yes -LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang RUN_DEPENDS+= newt${PYTHON_PKGNAMESUFFIX}>=0.51.0_4:${PORTSDIR}/devel/newt -.else -PLIST_SUB+= OPTNEWT="" -LIB_DEPENDS= slang.2:${PORTSDIR}/devel/libslang2 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${PYTHON_INCLUDEDIR} $${CPPFLAGS}" LDFLAGS="-L${LOCALBASE}/lib $${LDFLAGS} -L${PYTHON_LIBDIR}" SLANG_LIBS="-lncurses -lslang" +.endif + +.if defined(WITH_PYCRYPTO) +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.0.1_1:${PORTSDIR}/security/py-pycrypto .endif .if defined(WITH_SQLITE3) |