svn commit: r312027 - in head/www: . download-gemist

Martin Wilke miwi at FreeBSD.org
Sun Feb 10 14:28:24 UTC 2013


Author: miwi
Date: Sun Feb 10 14:28:22 2013
New Revision: 312027
URL: http://svnweb.freebsd.org/changeset/ports/312027

Log:
  Download-gemist downloads video's from the Dutch uitzending gemist site.
  
  Included tools:
  
  ### download-gemist
  Can download a single episode from the episode URL.
  
  ### download-gemist-guide
  This fetches information from a program page. You can use it download multiple
  videos.
  
  WWW: http://code.arp242.net/download-gemist
  
  PR:		ports/173567
  Submitted by:	Martin Tournoij <martin at arp242.net>

Added:
  head/www/download-gemist/
  head/www/download-gemist/Makefile   (contents, props changed)
  head/www/download-gemist/distinfo   (contents, props changed)
  head/www/download-gemist/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Feb 10 14:27:26 2013	(r312026)
+++ head/www/Makefile	Sun Feb 10 14:28:22 2013	(r312027)
@@ -137,6 +137,7 @@
     SUBDIR += dokuwiki
     SUBDIR += dotclear
     SUBDIR += dotproject
+    SUBDIR += download-gemist
     SUBDIR += dpsearch
     SUBDIR += drood
     SUBDIR += drraw

Added: head/www/download-gemist/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/download-gemist/Makefile	Sun Feb 10 14:28:22 2013	(r312027)
@@ -0,0 +1,29 @@
+# Created by: Martin Tournoij <martin at arp242.net>
+# $FreeBSD$
+#
+
+PORTNAME=	download-gemist
+PORTVERSION=	1.2
+CATEGORIES=	www python
+MASTER_SITES=	http://code.arp242.net/download-gemist/downloads/
+
+MAINTAINER=	martin at arp242.net
+COMMENT=	Download videos from the Dutch uitzending gemist site
+
+LICENSE=	MIT
+
+USE_PYTHON=	yes
+NO_BUILD=	yes
+FETCH_ARGS=	-Fpr
+
+PLIST_DIRS=	%%DOCSDIR%%
+PLIST_FILES=	bin/download-gemist \
+		bin/download-gemist-guide \
+		%%DOCSDIR%%/README.md
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/download-gemist* ${PREFIX}/bin/
+	${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README.md ${DOCSDIR}/
+
+.include <bsd.port.mk>

Added: head/www/download-gemist/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/download-gemist/distinfo	Sun Feb 10 14:28:22 2013	(r312027)
@@ -0,0 +1,2 @@
+SHA256 (download-gemist-1.2.tar.gz) = f27f72aed38e11e69187cfd30f07a545048f40ce52e439457bfbb28219f1d61d
+SIZE (download-gemist-1.2.tar.gz) = 23052

Added: head/www/download-gemist/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/download-gemist/pkg-descr	Sun Feb 10 14:28:22 2013	(r312027)
@@ -0,0 +1,12 @@
+Download-gemist downloads video's from the Dutch uitzending gemist site.
+
+Included tools:
+
+### download-gemist
+Can download a single episode from the episode URL.
+
+### download-gemist-guide
+This fetches information from a program page. You can use it download multiple
+videos.
+
+WWW: http://code.arp242.net/download-gemist


More information about the svn-ports-head mailing list