Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Aug 2007 17:06:32 +0200
From:      "Herbert J. Skuhra" <h.skuhra@gmail.com>
To:        Roman Bogorodskiy <novel@FreeBSD.org>
Cc:        cvs-ports@freebsd.org
Subject:   Re: cvs commit: ports/audio/easytag-devel Makefile distinfo pkg-plist
Message-ID:  <20070803150632.GA29464@oslo.ath.cx>
In-Reply-To: <200708021830.l72IU5Gv045267@repoman.freebsd.org>
References:  <200708021830.l72IU5Gv045267@repoman.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help

--W/nzBZO5zC0uMSeA
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Roman Bogorodskiy <novel@FreeBSD.org> 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 <bsd.port.pre.mk>
+
 .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 <bsd.port.mk>
+.if exists(${LOCALBASE}/lib/libid3tag.so) || defined(WITH_LIBID3TAG)
+LIB_DEPENDS+=		id3tag.0:${PORTSDIR}/audio/libid3tag
+.endif
+
+.include <bsd.port.post.mk>

--W/nzBZO5zC0uMSeA--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20070803150632.GA29464>