From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 19 12:20:01 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8F721065673 for ; Tue, 19 Aug 2008 12:20:01 +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 B91B98FC1C for ; Tue, 19 Aug 2008 12:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m7JCK15Y060801 for ; Tue, 19 Aug 2008 12:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m7JCK1P7060800; Tue, 19 Aug 2008 12:20:01 GMT (envelope-from gnats) Resent-Date: Tue, 19 Aug 2008 12:20:01 GMT Resent-Message-Id: <200808191220.m7JCK1P7060800@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, Emanuel Haupt Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39205106566B for ; Tue, 19 Aug 2008 12:13:26 +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 2BF9F8FC1A for ; Tue, 19 Aug 2008 12:13:26 +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 m7JCDQHp059973 for ; Tue, 19 Aug 2008 12:13:26 GMT (envelope-from ehaupt@freefall.freebsd.org) Received: (from ehaupt@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m7JCDQsq059972; Tue, 19 Aug 2008 14:13:26 +0200 (CEST) (envelope-from ehaupt) Message-Id: <200808191213.m7JCDQsq059972@freefall.freebsd.org> Date: Tue, 19 Aug 2008 14:13:26 +0200 (CEST) From: Emanuel Haupt To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/126656: [update] audio/libgpod - add option to build SysInfo detection utility X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Emanuel Haupt List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Aug 2008 12:20:01 -0000 >Number: 126656 >Category: ports >Synopsis: [update] audio/libgpod - add option to build SysInfo detection utility >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Aug 19 12:20:01 UTC 2008 >Closed-Date: >Last-Modified: >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: Add an option to build and install a SysInfo detection utility (ipod-read-sysinfo-extended). gtkpod requires that information in order to support the iPod classic and nano3g. Reference: http://gtkpod.wikispaces.com/Sysinfo+File >How-To-Repeat: >Fix: --- libgpod.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/audio/libgpod/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- Makefile 6 Jun 2008 13:06:51 -0000 1.18 +++ Makefile 19 Aug 2008 12:06:47 -0000 @@ -25,6 +25,17 @@ # Disable python bindings for now, something does not work there CONFIGURE_ARGS= --without-python +OPTIONS= TOOLS "Build SysInfo detection utility" off + +.include + +.if defined(WITH_TOOLS) +LIB_DEPENDS+= sgutils.1:${PORTSDIR}/sysutils/sg3_utils +PLIST_SUB+= TOOLS="" +.else +PLIST_SUB+= TOOLS="@comment " +.endif + .if !defined(NOPORTDOCS) CONFIGURE_ARGS+= --with-html-dir="${PREFIX}/share/doc" .endif @@ -43,4 +54,4 @@ ${REINPLACE_CMD} -e 's, docs,,' ${WRKSRC}/Makefile.in .endif -.include +.include Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/audio/libgpod/pkg-plist,v retrieving revision 1.7 diff -u -r1.7 pkg-plist --- pkg-plist 6 Jan 2008 22:46:02 -0000 1.7 +++ pkg-plist 19 Aug 2008 12:06:47 -0000 @@ -1,3 +1,4 @@ +%%TOOLS%%bin/ipod-read-sysinfo-extended include/gpod-1.0/gpod/itdb.h @dirrm include/gpod-1.0/gpod @dirrm include/gpod-1.0 --- libgpod.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: