diff options
author | itetcu <itetcu@FreeBSD.org> | 2007-08-20 23:23:34 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2007-08-20 23:23:34 +0800 |
commit | b687aec8ba72328be98f1c0382e81b5803e74b0c (patch) | |
tree | 579ef292c5c637e1e6c23639ef05cd94e0637f31 /multimedia | |
parent | 78e8d615d345687231fa3b696512bbe9d2500607 (diff) | |
download | freebsd-ports-gnome-b687aec8ba72328be98f1c0382e81b5803e74b0c.tar.gz freebsd-ports-gnome-b687aec8ba72328be98f1c0382e81b5803e74b0c.tar.zst freebsd-ports-gnome-b687aec8ba72328be98f1c0382e81b5803e74b0c.zip |
MMS is a program designed to allow you to download streams using
the MMS protocol and save them to your computer, as opposed to
watching them live. Similar functionality is available in full
media player suites such as Xine and MPlayer, but MiMMS is quick
and easy to use, and for the time being, remains a useful program.
WWW: http://savannah.nongnu.org/projects/mimms/
PR: ports/ports/114239
Submitted by: Yinghong.Liu <liu_yinghong at yahoo.com.cn>
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/Makefile | 1 | ||||
-rw-r--r-- | multimedia/mimms/Makefile | 48 | ||||
-rw-r--r-- | multimedia/mimms/distinfo | 3 | ||||
-rw-r--r-- | multimedia/mimms/pkg-descr | 7 |
4 files changed, 59 insertions, 0 deletions
diff --git a/multimedia/Makefile b/multimedia/Makefile index 10939f3d6903..8c5ccfd5c8bb 100644 --- a/multimedia/Makefile +++ b/multimedia/Makefile @@ -128,6 +128,7 @@ SUBDIR += manencode SUBDIR += manslide SUBDIR += mencoder + SUBDIR += mimms SUBDIR += mjpegtools SUBDIR += mjpegtools-yuvfilters SUBDIR += mkvtoolnix diff --git a/multimedia/mimms/Makefile b/multimedia/mimms/Makefile new file mode 100644 index 000000000000..608342d6c47c --- /dev/null +++ b/multimedia/mimms/Makefile @@ -0,0 +1,48 @@ +# New ports collection makefile for: mimms +# Date created: 3 Jul 2007 +# Whom: Yinghong.Liu <liu_yinghong@yahoo.com.cn> +# +# $FreeBSD$ +# + +PORTNAME= mimms +DISTVERSION= 2.0.1 +CATEGORIES= multimedia net +MASTER_SITES= http://download.savannah.gnu.org/releases/mimms/ \ + http://ftp.cc.uoc.gr/mirrors/nongnu.org/mimms/ \ + http://dl.sv.gnu.org/releases/mimms/ + +MAINTAINER= liu_yinghong@yahoo.com.cn +COMMENT= Download streams using the MMS protocol + +LIB_DEPENDS= mms.0:${PORTSDIR}/net/libmms +RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget + +USE_BZIP2= yes +USE_QT_VER= 4 +QT_COMPONENTS= qmake corelib moc uic + +PLIST_FILES= bin/mimms + +MAN1= mimms.1 +PORTDOCS= AUTHORS ChangeLog COPYING README + +post-patch: + @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' \ + ${WRKSRC}/mimms.pro + +do-configure: + @cd ${WRKSRC} \ + && ${SETENV} ${MAKE_ENV} ${QMAKE} -spec ${QMAKESPEC} + +do-install: + @${INSTALL_MAN} ${WRKSRC}/mimms.1 ${PREFIX}/man/man1 + @${INSTALL_PROGRAM} ${WRKSRC}/mimms ${PREFIX}/bin +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for doc in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/multimedia/mimms/distinfo b/multimedia/mimms/distinfo new file mode 100644 index 000000000000..8336264f9abd --- /dev/null +++ b/multimedia/mimms/distinfo @@ -0,0 +1,3 @@ +MD5 (mimms-2.0.1.tar.bz2) = 3e44f5b182892c4adfa8c08ddf8ccc17 +SHA256 (mimms-2.0.1.tar.bz2) = 1ac867bb82f4240e2415b7bc805ab0d034bf4ee2a1b863fcc1c535d5e0814833 +SIZE (mimms-2.0.1.tar.bz2) = 13246 diff --git a/multimedia/mimms/pkg-descr b/multimedia/mimms/pkg-descr new file mode 100644 index 000000000000..61783d3c01cd --- /dev/null +++ b/multimedia/mimms/pkg-descr @@ -0,0 +1,7 @@ +MMS is a program designed to allow you to download streams using +the MMS protocol and save them to your computer, as opposed to +watching them live. Similar functionality is available in full +media player suites such as Xine and MPlayer, but MiMMS is quick +and easy to use, and for the time being, remains a useful program. + +WWW: http://savannah.nongnu.org/projects/mimms/ |