0b26729590
This package provides the 1.99.x development branch of easytag, an utility to easily and quickly view, edit and write your audio files' tags from a nice GTK+ interface. The major change in this branch is the use of GTK+ 2.x as opposed to 1.x. Based on the easytag-gtk2 package found in pkgsrc-wip. OK'ed by wiz@, who becomes the maintainer of this new package.
28 lines
705 B
Makefile
28 lines
705 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2006/07/03 09:42:30 jmmv Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.easytag-gtk2
|
|
PKG_SUPPORTED_OPTIONS= flac mpeg4ip ogg
|
|
PKG_SUGGESTED_OPTIONS= flac mpeg4ip 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:Mmpeg4ip)
|
|
.include "../../multimedia/mpeg4ip/buildlink3.mk"
|
|
# for mpeg4ip.h
|
|
CPPFLAGS+= -DHAVE_GTK
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mogg)
|
|
. include "../../audio/libvorbis/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-ogg
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ogg
|
|
.endif
|