From ehaupt@FreeBSD.org  Sat Aug 23 09:01:12 2008
Return-Path: <ehaupt@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 22660106567A
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Aug 2008 09:01:12 +0000 (UTC)
	(envelope-from ehaupt@FreeBSD.org)
Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28])
	by mx1.freebsd.org (Postfix) with ESMTP id 0FBFE8FC14
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Aug 2008 09:01:12 +0000 (UTC)
	(envelope-from ehaupt@FreeBSD.org)
Received: from freefall.freebsd.org (ehaupt@localhost [127.0.0.1])
	by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m7N91BoB084312
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Aug 2008 09:01:11 GMT
	(envelope-from ehaupt@freefall.freebsd.org)
Received: (from ehaupt@localhost)
	by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m7N91B8e084311;
	Sat, 23 Aug 2008 11:01:11 +0200 (CEST)
	(envelope-from ehaupt)
Message-Id: <200808230901.m7N91B8e084311@freefall.freebsd.org>
Date: Sat, 23 Aug 2008 11:01:11 +0200 (CEST)
From: Emanuel Haupt <ehaupt@freebsd.org>
Reply-To: Emanuel Haupt <ehaupt@freebsd.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [update] audio/gtkpod - has additional dependencies
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         126760
>Category:       ports
>Synopsis:       [update] audio/gtkpod - has additional dependencies
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    danfe
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Aug 23 09:10:01 UTC 2008
>Closed-Date:    Mon Aug 24 20:43:09 UTC 2009
>Last-Modified:  Mon Aug 24 20:43:09 UTC 2009
>Originator:     Emanuel Haupt
>Release:        FreeBSD 7.0-STABLE i386
>Organization:
>Environment:
System: FreeBSD freefall.freebsd.org 7.0-STABLE FreeBSD 7.0-STABLE #34: Sat Apr 12 11:52:18 UTC 2008 simon@freefall.freebsd.org:/usr/src/sys/i386/compile/FREEFALL i386


	
>Description:
If audio/gtkpod is built with ogg support oggdec is required by a conversion
script. oggdec is provided by audio/vorbis-tools.

>How-To-Repeat:
- Install audio/gtkpod with ogg support
- Attach an iPod
- Add an ogg file to the playlist
- Synchronize

==> Fail: conversion script won't find oggdec

>Fix:

	

--- gtkpod.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/audio/gtkpod/Makefile,v
retrieving revision 1.42
diff -u -r1.42 Makefile
--- Makefile	6 Jun 2008 13:06:48 -0000	1.42
+++ Makefile	23 Aug 2008 08:55:55 -0000
@@ -7,7 +7,7 @@
 
 PORTNAME=	gtkpod
 PORTVERSION=	0.99.12
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	audio
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	${PORTNAME}
@@ -44,6 +44,10 @@
 LIB_DEPENDS+=	vorbis.4:${PORTSDIR}/audio/libvorbis
 .endif
 
+.if defined(WITH_VORBIS)
+RUN_DEPENDS+=	oggdec:${PORTSDIR}/audio/vorbis-tools
+.endif
+
 .if defined(WITH_FLAC) || exists(${LOCALBASE}/lib/libFLAC.so)
 LIB_DEPENDS+=	FLAC.10:${PORTSDIR}/audio/flac
 .endif
--- gtkpod.patch ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->danfe 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sat Aug 23 09:10:11 UTC 2008 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=126760 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/126760: commit references a PR
Date: Mon, 24 Aug 2009 20:39:51 +0000 (UTC)

 danfe       2009-08-24 20:39:42 UTC
 
   FreeBSD ports repository
 
   Modified files:
     audio/gtkpod         Makefile distinfo pkg-plist 
   Log:
   - Update to version 0.99.14 [1]
   - Drop `libgnomecanvas' dependency: cairo is now used for coverart display
     effects
   - Add missing runtime dependency for Ogg conversion to work [2]
   - Similarly to [2], register dependencies for MPEG-4 audio encoding/decoding
     and MP3 encoding via LAME
   - Flip cURL support knob to "on", since vorbis-tools require it anyways (and
     Ogg support is "on" by default).  This is OK since cURL is likely to be
     installed on a typical desktop system; lots of other software wants it
   - Convert to use PORTDOCS and simplify their installation (get rid of `for'
     loop in Makefile)
   - Augment some OPTIONS text, clean up pkg-plist
   
   PR:             ports/138007 [1], ports/126760 [2]
   Submitted by:   keramida [1], ehaupt [2]
   
   Revision  Changes    Path
   1.48      +18 -15    ports/audio/gtkpod/Makefile
   1.22      +3 -3      ports/audio/gtkpod/distinfo
   1.17      +71 -30    ports/audio/gtkpod/pkg-plist
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: danfe 
State-Changed-When: Mon Aug 24 20:42:31 UTC 2009 
State-Changed-Why:  
Fix (and similar other rdeps) committed, thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=126760 
>Unformatted:
