svn commit: r488369 - head/audio/easytag

Mark Linimon linimon at FreeBSD.org
Wed Dec 26 11:49:06 UTC 2018


Author: linimon
Date: Wed Dec 26 11:49:05 2018
New Revision: 488369
URL: https://svnweb.freebsd.org/changeset/ports/488369

Log:
  This port requires USES=compiler:c++11-lang to build on GCC-based
  architectures because it wants to link to /usr/local/lib/libtag.so,
  which is compiled with ports GCC, which uses new GCC ABI.
  
  While here, add USES=gnome localbase and pet portlint.
  
  PR:		234298
  Submitted by:	Piotr Kubaj
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/audio/easytag/Makefile

Modified: head/audio/easytag/Makefile
==============================================================================
--- head/audio/easytag/Makefile	Wed Dec 26 11:42:38 2018	(r488368)
+++ head/audio/easytag/Makefile	Wed Dec 26 11:49:05 2018	(r488369)
@@ -23,13 +23,13 @@ LIB_DEPENDS=	libid3.so:audio/id3lib \
 		libtag.so:audio/taglib \
 		libogg.so:audio/libogg
 
-USES=		desktop-file-utils gettext-tools gmake pkgconfig tar:xz
+USES=		compiler:c++11-lang desktop-file-utils gettext-tools gmake \
+		gnome localbase pkgconfig tar:xz
 USE_GNOME=	cairo dconf:run gtk30 intlhack libxslt
 GLIB_SCHEMAS=	org.gnome.EasyTAG.gschema.xml org.gnome.EasyTAG.enums.xml
 INSTALLS_ICONS=	yes
 GNU_CONFIGURE=	yes
-CPPFLAGS+=	-I${LOCALBASE}/include -DHAVE_GTK
-LIBS+=		-L${LOCALBASE}/lib
+CPPFLAGS+=	-DHAVE_GTK
 
 CONFIGURE_ARGS=	--disable-appdata-validate \
 	--without-help-dir \
@@ -38,7 +38,7 @@ CONFIGURE_ARGS=	--disable-appdata-validate \
 PORTDOCS=	HACKING THANKS TODO
 
 OPTIONS_DEFINE=	WAVPACK NLS OPUS SPEEX DOCS
-OPTIONS_DEFAULT=	WAVPACK OPUS SPEEX	
+OPTIONS_DEFAULT=	WAVPACK OPUS SPEEX
 OPTIONS_SUB=	yes
 
 WAVPACK_LIB_DEPENDS=	libwavpack.so:audio/wavpack


More information about the svn-ports-all mailing list