From owner-svn-ports-all@FreeBSD.ORG Mon Feb 17 06:44:51 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF1B4CC5; Mon, 17 Feb 2014 06:44:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8021C1B06; Mon, 17 Feb 2014 06:44:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1H6ipjv096323; Mon, 17 Feb 2014 06:44:51 GMT (envelope-from mi@svn.freebsd.org) Received: (from mi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1H6ioPp096316; Mon, 17 Feb 2014 06:44:50 GMT (envelope-from mi@svn.freebsd.org) Message-Id: <201402170644.s1H6ioPp096316@svn.freebsd.org> From: Mikhail Teterin Date: Mon, 17 Feb 2014 06:44:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344662 - in head/www: . npapi-vlc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 06:44:51 -0000 Author: mi Date: Mon Feb 17 06:44:50 2014 New Revision: 344662 URL: http://svnweb.freebsd.org/changeset/ports/344662 QAT: https://qat.redports.org/buildarchive/r344662/ Log: Add port of npapi-vlc -- plugin embedding VideoLan player (vlc) in NPAPI-supporting web-browsers. Added: head/www/npapi-vlc/ head/www/npapi-vlc/Makefile (contents, props changed) head/www/npapi-vlc/distinfo (contents, props changed) head/www/npapi-vlc/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Feb 17 05:47:10 2014 (r344661) +++ head/www/Makefile Mon Feb 17 06:44:50 2014 (r344662) @@ -572,6 +572,7 @@ SUBDIR += node SUBDIR += node-devel SUBDIR += nostromo + SUBDIR += npapi-vlc SUBDIR += npapi-xine SUBDIR += npc SUBDIR += npm Added: head/www/npapi-vlc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/npapi-vlc/Makefile Mon Feb 17 06:44:50 2014 (r344662) @@ -0,0 +1,26 @@ +# Created by: Mikhail Teterin +# $FreeBSD$ + +PORTNAME= npapi-vlc +PORTVERSION= 2.0.6 +CATEGORIES= www multimedia +MASTER_SITES= http://download.videolan.org/pub/videolan/vlc-webplugins/${PORTVERSION}/ + +MAINTAINER= mi@aldan.algber.com +COMMENT= Embeds vlc-player in web-browsers + +LIB_DEPENDS= libvlc.so:${PORTSDIR}/multimedia/vlc + +USES= webplugin:native +USE_XZ= yes +WEBPLUGIN_NAME= # +WEBPLUGIN_FILES=libvlcplugin.so +GNU_CONFIGURE= yes +PLIST_FILES= ${WEBPLUGIN_DIR:S,^${PREFIX}/,,}${WEBPLUGIN_FILES} + +do-install: + ${MKDIR} ${STAGEDIR}${WEBPLUGIN_DIR} + ${INSTALL_LIB} ${WRKSRC}/npapi/.libs/libvlcplugin.so \ + ${STAGEDIR}/${WEBPLUGIN_DIR} + +.include Added: head/www/npapi-vlc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/npapi-vlc/distinfo Mon Feb 17 06:44:50 2014 (r344662) @@ -0,0 +1,2 @@ +SHA256 (npapi-vlc-2.0.6.tar.xz) = 4f03376040491bf5e86af8f7eaf2571b68a8450c51774acb55582e20b2205ae8 +SIZE (npapi-vlc-2.0.6.tar.xz) = 442280 Added: head/www/npapi-vlc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/npapi-vlc/pkg-descr Mon Feb 17 06:44:50 2014 (r344662) @@ -0,0 +1,2 @@ +Plugin from NPAPI-using browsers (such as Firefox) allowing embedding +of VideoLAN (vlc) to play back various multimedia sources.