From owner-svn-ports-head@FreeBSD.ORG Tue Oct 22 20:22:47 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id 86D76FE7; Tue, 22 Oct 2013 20:22:47 +0000 (UTC) (envelope-from tijl@FreeBSD.org) 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 738DE2586; Tue, 22 Oct 2013 20:22:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9MKMl2L030634; Tue, 22 Oct 2013 20:22:47 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9MKMlMR030633; Tue, 22 Oct 2013 20:22:47 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201310222022.r9MKMlMR030633@svn.freebsd.org> From: Tijl Coosemans Date: Tue, 22 Oct 2013 20:22:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331316 - head/multimedia/dv2sub 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.14 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: Tue, 22 Oct 2013 20:22:47 -0000 Author: tijl Date: Tue Oct 22 20:22:46 2013 New Revision: 331316 URL: http://svnweb.freebsd.org/changeset/ports/331316 Log: Change a configure test such that it no longer defines a nested function. This fixes the build with clang. While here support staging. PR: ports/182893 Modified: head/multimedia/dv2sub/Makefile Modified: head/multimedia/dv2sub/Makefile ============================================================================== --- head/multimedia/dv2sub/Makefile Tue Oct 22 20:17:09 2013 (r331315) +++ head/multimedia/dv2sub/Makefile Tue Oct 22 20:22:46 2013 (r331316) @@ -3,20 +3,21 @@ PORTNAME= dv2sub PORTVERSION= 0.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia MASTER_SITES= SF MAINTAINER= oz@nixil.net COMMENT= Extracts info or subtitles from DV stream -LIB_DEPENDS= dv.4:${PORTSDIR}/multimedia/libdv +LIB_DEPENDS= libdv.so:${PORTSDIR}/multimedia/libdv GNU_CONFIGURE= yes USES= pkgconfig -PLIST_FILES= bin/dv2sub -MAN1= dv2sub.1 +PLIST_FILES= bin/dv2sub man/man1/dv2sub.1.gz + +post-patch: + @${REINPLACE_CMD} -e 's/void foo(void)//' ${WRKSRC}/configure -NO_STAGE= yes .include