From owner-svn-ports-head@FreeBSD.ORG Thu Feb 20 08:43:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F16C13B6; Thu, 20 Feb 2014 08:43:55 +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 C491713DF; Thu, 20 Feb 2014 08:43:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1K8htsS050409; Thu, 20 Feb 2014 08:43:55 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1K8htRW050408; Thu, 20 Feb 2014 08:43:55 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201402200843.s1K8htRW050408@svn.freebsd.org> From: Matthias Andree Date: Thu, 20 Feb 2014 08:43:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345191 - head/graphics/swfdec 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.17 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: Thu, 20 Feb 2014 08:43:56 -0000 Author: mandree Date: Thu Feb 20 08:43:55 2014 New Revision: 345191 URL: http://svnweb.freebsd.org/changeset/ports/345191 QAT: https://qat.redports.org/buildarchive/r345191/ Log: Convert to staging. Modernize. Approved by: portmgr (blanket) Modified: head/graphics/swfdec/Makefile Modified: head/graphics/swfdec/Makefile ============================================================================== --- head/graphics/swfdec/Makefile Thu Feb 20 08:41:47 2014 (r345190) +++ head/graphics/swfdec/Makefile Thu Feb 20 08:43:55 2014 (r345191) @@ -11,12 +11,12 @@ MASTER_SITES= http://swfdec.freedesktop. MAINTAINER= kwm@FreeBSD.org COMMENT= Flash Rendering Library -LIB_DEPENDS= oil-0.3.0:${PORTSDIR}/devel/liboil \ - soup-2.4.1:${PORTSDIR}/devel/libsoup +LIB_DEPENDS= liboil-0.3.so:${PORTSDIR}/devel/liboil \ + libsoup-2.4.so:${PORTSDIR}/devel/libsoup -USES= pkgconfig +USES= pkgconfig pathfix USE_LDCONFIG= yes -USE_GNOME= gnomehack gtk20 ltverhack +USE_GNOME= gtk20 ltverhack USE_GSTREAMER= core good mp3 ffmpeg USE_AUTOTOOLS= libtool CPPFLAGS+= -I${LOCALBASE}/include @@ -27,22 +27,25 @@ PLIST_SUB= VERSION=${PORTVERSION:R} OPTIONS_DEFINE= PULSEAUDIO PULSEAUDIO_DESC="Enable the PulseAudio sound module" -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPULSEAUDIO} -LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio +LIB_DEPENDS+= libpulse.so:${PORTSDIR}/audio/pulseaudio CONFIGURE_ARGS+= --with-audio=pulse .else CONFIGURE_ARGS+= --with-audio=oss .endif post-extract: - @${CP} ${FILESDIR}/swfdec_playback_oss.c \ + ${CP} ${FILESDIR}/swfdec_playback_oss.c \ ${WRKSRC}/swfdec-gtk post-patch: - @${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g' \ + ${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g' \ ${WRKSRC}/configure +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libswfdec-${PORTVERSION:R}.so.0 + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libswfdec-gtk-${PORTVERSION:R}.so.0 + .include