From owner-svn-ports-head@freebsd.org Fri Jan 1 16:14:30 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 73B64A578F1; Fri, 1 Jan 2016 16:14:30 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4DFD21351; Fri, 1 Jan 2016 16:14:30 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u01GETUI096966; Fri, 1 Jan 2016 16:14:29 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u01GES2v096960; Fri, 1 Jan 2016 16:14:28 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201601011614.u01GES2v096960@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Fri, 1 Jan 2016 16:14:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405005 - in head/multimedia: . nordlicht nordlicht/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Jan 2016 16:14:30 -0000 Author: riggs Date: Fri Jan 1 16:14:28 2016 New Revision: 405005 URL: https://svnweb.freebsd.org/changeset/ports/405005 Log: Add multimedia/nordlicht PR: 205734 Submitted by: t@tobik.me (maintainer) Added: head/multimedia/nordlicht/ head/multimedia/nordlicht/Makefile (contents, props changed) head/multimedia/nordlicht/distinfo (contents, props changed) head/multimedia/nordlicht/files/ head/multimedia/nordlicht/files/patch-CMakeLists.txt (contents, props changed) head/multimedia/nordlicht/pkg-descr (contents, props changed) head/multimedia/nordlicht/pkg-plist (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Fri Jan 1 15:54:38 2016 (r405004) +++ head/multimedia/Makefile Fri Jan 1 16:14:28 2016 (r405005) @@ -262,6 +262,7 @@ SUBDIR += mythtv SUBDIR += mythtv-frontend SUBDIR += naludump + SUBDIR += nordlicht SUBDIR += nxtvepg SUBDIR += obs-studio SUBDIR += oggvideotools Added: head/multimedia/nordlicht/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/nordlicht/Makefile Fri Jan 1 16:14:28 2016 (r405005) @@ -0,0 +1,24 @@ +# Created by: Tobias Kortkamp +# $FreeBSD$ + +PORTNAME= nordlicht +PORTVERSION= 0.4.0 +DISTVERSIONPREFIX= v +CATEGORIES= multimedia + +MAINTAINER= t@tobik.me +COMMENT= Create moodbars from video files + +LICENSE= GPLv2 + +BUILD_DEPENDS= help2man:${PORTSDIR}/misc/help2man +LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg \ + libpopt.so:${PORTSDIR}/devel/popt \ + libpng.so:${PORTSDIR}/graphics/png + +USE_GITHUB= yes + +USES= cmake:outsource pkgconfig +USE_LDCONFIG= yes + +.include Added: head/multimedia/nordlicht/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/nordlicht/distinfo Fri Jan 1 16:14:28 2016 (r405005) @@ -0,0 +1,2 @@ +SHA256 (nordlicht-nordlicht-v0.4.0_GH0.tar.gz) = dce586372b66959f158ba86739b66f0c7f6285306c8779b29ddb89eac9c31cdd +SIZE (nordlicht-nordlicht-v0.4.0_GH0.tar.gz) = 37743 Added: head/multimedia/nordlicht/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/nordlicht/files/patch-CMakeLists.txt Fri Jan 1 16:14:28 2016 (r405005) @@ -0,0 +1,13 @@ +--- CMakeLists.txt.orig 2015-12-30 13:35:04 UTC ++++ CMakeLists.txt +@@ -39,8 +39,8 @@ add_custom_command(TARGET nordlicht POST + install(TARGETS libnordlicht DESTINATION ${LIB_INSTALL_DIR}) + install(TARGETS nordlicht DESTINATION bin) + install(FILES nordlicht.h DESTINATION include) +-install(FILES ${CMAKE_BINARY_DIR}/nordlicht.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig) +-install(FILES ${CMAKE_BINARY_DIR}/nordlicht.1 DESTINATION share/man/man1) ++install(FILES ${CMAKE_BINARY_DIR}/nordlicht.pc DESTINATION libdata/pkgconfig) ++install(FILES ${CMAKE_BINARY_DIR}/nordlicht.1 DESTINATION man/man1) + + add_custom_target(check testsuite) + add_custom_target(download_testfile ${CMAKE_COMMAND} -P ${CMAKE_SOURCE_DIR}/cmake/download_testfile.cmake) Added: head/multimedia/nordlicht/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/nordlicht/pkg-descr Fri Jan 1 16:14:28 2016 (r405005) @@ -0,0 +1,6 @@ +nordlicht is a tool that converts video files into colorful barcodes. +nordlicht is free software, supports a large number of styles, and is +optimized for speed. It comes with a software library written in C +that allows for easy integration into other programs. + +WWW: https://nordlicht.github.io/ Added: head/multimedia/nordlicht/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/nordlicht/pkg-plist Fri Jan 1 16:14:28 2016 (r405005) @@ -0,0 +1,6 @@ +bin/nordlicht +include/nordlicht.h +lib/libnordlicht.so +lib/libnordlicht.so.0 +libdata/pkgconfig/nordlicht.pc +man/man1/nordlicht.1.gz