diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2018-12-26 19:49:05 +0800 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2018-12-26 19:49:05 +0800 |
commit | 968d71975a8f7ec75b19b06c59e5203ba5ac0443 (patch) | |
tree | 689360625fb1bb3160123f6f91e583c87d2ea350 /audio | |
parent | 2e3d10e18432752350194ecc466589a3f407a99e (diff) | |
download | freebsd-ports-gnome-968d71975a8f7ec75b19b06c59e5203ba5ac0443.tar.gz freebsd-ports-gnome-968d71975a8f7ec75b19b06c59e5203ba5ac0443.tar.zst freebsd-ports-gnome-968d71975a8f7ec75b19b06c59e5203ba5ac0443.zip |
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)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/easytag/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/easytag/Makefile b/audio/easytag/Makefile index 743aed5b0555..178590bdd923 100644 --- a/audio/easytag/Makefile +++ b/audio/easytag/Makefile @@ -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 |