From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jul 20 21:00:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05D9F1065670 for ; Fri, 20 Jul 2012 21:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2C2198FC17 for ; Fri, 20 Jul 2012 21:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q6KL0NLl001238 for ; Fri, 20 Jul 2012 21:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q6KL0NPb001224; Fri, 20 Jul 2012 21:00:23 GMT (envelope-from gnats) Resent-Date: Fri, 20 Jul 2012 21:00:23 GMT Resent-Message-Id: <201207202100.q6KL0NPb001224@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pawel Pekala Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB3D9106566B for ; Fri, 20 Jul 2012 20:51:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 960D48FC15 for ; Fri, 20 Jul 2012 20:51:45 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q6KKpjkx080630 for ; Fri, 20 Jul 2012 20:51:45 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q6KKpj6n080629; Fri, 20 Jul 2012 20:51:45 GMT (envelope-from nobody) Message-Id: <201207202051.q6KKpj6n080629@red.freebsd.org> Date: Fri, 20 Jul 2012 20:51:45 GMT From: Pawel Pekala To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/170032: Some ports not bumped after libogg update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jul 2012 21:00:30 -0000 >Number: 170032 >Category: ports >Synopsis: Some ports not bumped after libogg update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jul 20 21:00:22 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pawel Pekala >Release: 10.0-CURRENT >Organization: >Environment: FreeBSD blaviken.slowicza.org 10.0-CURRENT FreeBSD 10.0-CURRENT #10: Sat Jul 14 11:00:18 CEST 2012 corn@blaviken.slowicza.org:/usr/obj/usr/src/sys/BLAVIKEN i386 >Description: After portmaster -a today, lib_check shows me some missing deps: http://people.freebsd.org/~pawel/missing-libs.txt My patch adds port bumps and explicit dependency on audio/libogg so these ports want be forgotten on future updates. NOTE: GNOME ports are submitted as separated PR. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/audio/jack/Makefile audio/jack/Makefile --- /usr/ports/audio/jack/Makefile 2012-05-30 13:27:09.000000000 +0200 +++ audio/jack/Makefile 2012-07-20 20:47:16.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= jackit PORTVERSION= 0.121.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://jackaudio.org/downloads/ DISTNAME= jack-audio-connection-kit-${PORTVERSION} @@ -18,7 +18,8 @@ LIB_DEPENDS= portaudio.0:${PORTSDIR}/audio/portaudio \ sndfile.1:${PORTSDIR}/audio/libsndfile \ samplerate.1:${PORTSDIR}/audio/libsamplerate \ - celt0.2:${PORTSDIR}/audio/celt + celt0.2:${PORTSDIR}/audio/celt \ + ogg:${PORTSDIR}/audio/libogg LATEST_LINK= jack LIBS+= ${PTHREAD_LIBS} diff -urN /usr/ports/audio/libsamplerate/Makefile audio/libsamplerate/Makefile --- /usr/ports/audio/libsamplerate/Makefile 2012-05-30 13:33:34.000000000 +0200 +++ audio/libsamplerate/Makefile 2012-07-20 21:56:37.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= libsamplerate PORTVERSION= 0.1.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= http://www.mega-nerd.com/SRC/ @@ -41,7 +41,8 @@ .endif .if ${PORT_OPTIONS:MEXAMPLES} -LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile +LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile \ + ogg:${PORTSDIR}/audio/libogg .elif defined(MAINTAINER_MODE) || defined(PACKAGE_BUILDING) BUILD_DEPENDS += ${LOCALBASE}/lib/libsndfile.so:${PORTSDIR}/audio/libsndfile .else diff -urN /usr/ports/audio/twolame/Makefile audio/twolame/Makefile --- /usr/ports/audio/twolame/Makefile 2011-08-11 21:19:05.000000000 +0200 +++ audio/twolame/Makefile 2012-07-20 22:26:25.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= twolame PORTVERSION= 0.3.13 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= SF \ http://www.ecs.soton.ac.uk/~njh/twolame/ @@ -14,7 +15,8 @@ MAINTAINER= multimedia@FreeBSD.org COMMENT= MPEG Audio Layer 2 encoder -LIB_DEPENDS= sndfile.1:${PORTSDIR}/audio/libsndfile +LIB_DEPENDS= sndfile.1:${PORTSDIR}/audio/libsndfile \ + ogg:${PORTSDIR}/audio/libogg USE_GMAKE= yes USE_GNOME= gnomehack pkgconfig diff -urN /usr/ports/audio/gstreamer-plugins-ogg/Makefile audio/gstreamer-plugins-ogg/Makefile --- /usr/ports/audio/gstreamer-plugins-ogg/Makefile 2010-07-24 18:04:58.000000000 +0200 +++ audio/gstreamer-plugins-ogg/Makefile 2012-07-20 22:31:21.000000000 +0200 @@ -6,11 +6,13 @@ # $MCom: ports/audio/gstreamer-plugins-ogg/Makefile,v 1.6 2008/03/21 04:01:32 ahze Exp $ # -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= audio COMMENT= Gstreamer Ogg bitstream plugin +LIB_DEPENDS+= ogg:${PORTSDIR}/audio/libogg + GST_PLUGIN= ogg MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins >Release-Note: >Audit-Trail: >Unformatted: