1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

This program is to download multimedia streaming files.

Currently it supports following protocols.

* mmst      (Microsoft Media Server over TCP)
* mmsh      (MMS over HTTP)
* http      (Hyper Text Transfer Protocol)
* real-rtsp (Real Time Streaming Protocol / Real/helix)
* wms-rtsp  (Real Time Streaming Protocol / WMServer)
* ftp       (File Transfer Protocol)

WWW:	http://msdl.sourceforge.net/

PR:		132946
Submitted by:	Ashish SHUKLA <wahjava at gmail dot com>
This commit is contained in:
Dmitry Marakasov 2009-03-24 00:50:48 +00:00
parent e7050498e2
commit 01de41410e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=230827
5 changed files with 46 additions and 0 deletions

View File

@ -180,6 +180,7 @@
SUBDIR += mplayer-skins
SUBDIR += mplayerxp
SUBDIR += mplex
SUBDIR += msdl
SUBDIR += mythtv
SUBDIR += mythtv-frontend
SUBDIR += mythtv-themes

20
multimedia/msdl/Makefile Normal file
View File

@ -0,0 +1,20 @@
# New ports collection makefile for: msdl
# Date created: 2009-03-23
# Whom: Ashish Shukla <wahjava@gmail.com>
#
# $FreeBSD$
#
PORTNAME= msdl
PORTVERSION= 1.2.3
CATEGORIES= multimedia
MASTER_SITES= SF
MAINTAINER= wahjava@gmail.com
COMMENT= Streaming multimedia files downloader
GNU_CONFIGURE= yes
PLIST_FILES= bin/msdl
MAN1= msdl.1
.include <bsd.port.mk>

3
multimedia/msdl/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (msdl-1.2.3.tar.gz) = e76cafc8cd5594954faa879b68771438
SHA256 (msdl-1.2.3.tar.gz) = 63f5e252ab2143000f41fd1a973dbab8da78d97ce37ea01ff9ae64934b95ba35
SIZE (msdl-1.2.3.tar.gz) = 195425

View File

@ -0,0 +1,11 @@
--- src/url.h.orig 2008-08-29 15:51:58.000000000 +0400
+++ src/url.h 2009-03-23 03:49:40.000000000 +0300
@@ -60,7 +60,7 @@
struct url_t *new_url_t(const char *url);
void free_url_t(struct url_t *u);
void copy_url_t(struct url_t *url,struct url_t *srcurl);
-inline int is_url_valid_char(int c);
+int is_url_valid_char(int c);
void url_unescape_string(char *dst,char *src);

11
multimedia/msdl/pkg-descr Normal file
View File

@ -0,0 +1,11 @@
This program is to download multimedia streaming files.
Currently it supports following protocols.
* mmst (Microsoft Media Server over TCP)
* mmsh (MMS over HTTP)
* http (Hyper Text Transfer Protocol)
* real-rtsp (Real Time Streaming Protocol / Real/helix)
* wms-rtsp (Real Time Streaming Protocol / WMServer)
* ftp (File Transfer Protocol)
WWW: http://msdl.sourceforge.net/