pkgsrc-wip/easytag-gtk2/options.mk
Leonard Schmidt 9a6639f1b3 Update to 1.99.8 and convert to options framework. AAC/MP4 support
cannot be enabled at the moment because of mpeg4ip (which is not in pkgsrc).

1.99.8 - August 31th, 2005 :
============================
    * Fixed hangs in the cddb lookups (thanks to Paul Giordano),
    * Fixed problem when parsing markup in the 'Fill Tag' scanner preview,
    * Added MP4/AAC file and tag support (including pictures in tag) by using
      MPEG4IP (libmp4v2) (thanks to Michael Ihde and Stewart Whitman),
    * "Copyright" replaced by "License" in .spec file to allow to build the RPM
      package with rpm-4.4.0 (thanks to Nathaniel Clark),
    * French translation updated,
    * Italian translation updated (thanks to Kostantino),
    * German translation updated (thanks to Götz Waschk).
2005-09-06 12:56:13 +00:00

22 lines
565 B
Makefile

# $NetBSD: options.mk,v 1.1 2005/09/06 12:56:13 leonardschmidt Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.easytag-gtk2
PKG_SUPPORTED_OPTIONS= flac ogg
PKG_SUGGESTED_OPTIONS= flac ogg
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mflac)
. include "../../audio/flac/buildlink3.mk"
. include "../../audio/libvorbis/buildlink3.mk"
CONFIGURE_ARGS+= --enable-flac
.else
CONFIGURE_ARGS+= --disable-flac
.endif
.if !empty(PKG_OPTIONS:Mogg)
. include "../../audio/libvorbis/buildlink3.mk"
CONFIGURE_ARGS+= --enable-ogg
.else
CONFIGURE_ARGS+= --disable-ogg
.endif