From owner-cvs-ports@FreeBSD.ORG Fri Aug 3 15:30:41 2007 Return-Path: Delivered-To: cvs-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32A5716A41A for ; Fri, 3 Aug 2007 15:30:41 +0000 (UTC) (envelope-from h.skuhra@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.freebsd.org (Postfix) with ESMTP id B5E7413C461 for ; Fri, 3 Aug 2007 15:30:40 +0000 (UTC) (envelope-from h.skuhra@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so233626nfb for ; Fri, 03 Aug 2007 08:30:39 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:date:from:to:cc:subject:message-id:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=N18InQ94FX66qJGBY3koEZrnR/HeNB3Cvh+NucJx4iuxXCDptcu0E0O/Cymq4B9s+4SBwU8ZYAcp71ek3qpBsbxkG52F0T+D5tfgL2XJdafEwmz89rvWfQ0dzhETsuex1KN2aWk/R8WJOUXJu/19lM2P1t5nubpllU+PPJjDEvQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:cc:subject:message-id:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=uKK0138WF5zj9UpXmWjL8pHZYANxf7JVxm3o/TQzFf3mDt8MxY1/2X+zZR9bDg0Q0T5K4o/nRLksD/qgohiiDR1VHjMwgw2D5H4RGdSg08FymEjXVts6EaTUNwE4LZBT52ZbVggsHmUSpp6sWaM/E7zkLSBjdS4Jvs1jl6Grkmg= Received: by 10.86.77.5 with SMTP id z5mr2337603fga.1186153594567; Fri, 03 Aug 2007 08:06:34 -0700 (PDT) Received: from oslo.ath.cx ( [213.47.80.26]) by mx.google.com with ESMTPS id p9sm6483582fkb.2007.08.03.08.06.31 (version=SSLv3 cipher=OTHER); Fri, 03 Aug 2007 08:06:31 -0700 (PDT) Date: Fri, 3 Aug 2007 17:06:32 +0200 From: "Herbert J. Skuhra" To: Roman Bogorodskiy Message-ID: <20070803150632.GA29464@oslo.ath.cx> References: <200708021830.l72IU5Gv045267@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="W/nzBZO5zC0uMSeA" Content-Disposition: inline In-Reply-To: <200708021830.l72IU5Gv045267@repoman.freebsd.org> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: cvs-ports@freebsd.org Subject: Re: cvs commit: ports/audio/easytag-devel Makefile distinfo pkg-plist X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2007 15:30:41 -0000 --W/nzBZO5zC0uMSeA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Roman Bogorodskiy wrote: > novel 2007-08-02 18:30:05 UTC > > FreeBSD ports repository > > Modified files: > audio/easytag-devel Makefile distinfo pkg-plist > Log: > Update to 2.1.2. > > Revision Changes Path > 1.57 +1 -2 ports/audio/easytag-devel/Makefile > 1.36 +3 -3 ports/audio/easytag-devel/distinfo > 1.17 +1 -0 ports/audio/easytag-devel/pkg-plist Hi, % ldd `which easytag` |grep id3 libid3-3.8.so.3 => /usr/local/lib/libid3-3.8.so.3 (0x28a30000) libid3tag.so.0 => /usr/local/lib/libid3tag.so.0 (0x28b6a000) % pkg_info -W /usr/local/lib/libid3tag.so.0 /usr/local/lib/libid3tag.so.0 was installed by package libid3tag-0.15.1b The attached patch adds a) a knob for LIBID3TAG which adds support for id3v2.4 tags and b) and a dependency for audio/libid3tag. - Herbert --W/nzBZO5zC0uMSeA Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="easytag-devel.diff" --- Makefile.bak 2007-08-03 16:56:57.000000000 +0200 +++ Makefile 2007-08-03 16:45:09.000000000 +0200 @@ -31,6 +31,8 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -DHAVE_GTK" \ LDFLAGS="-L${LOCALBASE}/lib" +.include + .if defined(WITH_WAVPACK) LIB_DEPENDS+= wavpack.1:${PORTSDIR}/audio/wavpack CONFIGURE_ARGS+= --enable-wavpack @@ -38,4 +40,8 @@ CONFIGURE_ARGS+= --disable-wavpack .endif -.include +.if exists(${LOCALBASE}/lib/libid3tag.so) || defined(WITH_LIBID3TAG) +LIB_DEPENDS+= id3tag.0:${PORTSDIR}/audio/libid3tag +.endif + +.include --W/nzBZO5zC0uMSeA--