21ae1c653d
Oggz comprises liboggz and the tool oggz, which provides commands to inspect, edit and validate Ogg files. The oggz-chop tool can also be used to serve time ranges of Ogg media over HTTP by any web server that supports CGI. liboggz is a C library for reading and writing Ogg files and streams. It offers various improvements over the reference libogg, including support for seeking, validation and timestamp interpretation.
22 lines
552 B
Makefile
22 lines
552 B
Makefile
# $NetBSD: options.mk,v 1.1 2013/05/09 00:40:12 rodent Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.liboggz
|
|
PKG_SUPPORTED_OPTIONS= doc valgrind
|
|
PKG_SUGGESTED_OPTIONS+= # blank
|
|
PLIST_VARS+= doc
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdoc)
|
|
BUILD_DEPENDS+= doxygen-[0-9]*:../../devel/doxygen
|
|
PLIST.doc= yes
|
|
.else
|
|
CONFIGURE_ARGS+= HAVE_DOXYGEN=no
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mvalgrind)
|
|
BUILD_DEPENDS+= valgrind-[0-9]*:../../devel/valgrind
|
|
CONFIGURE_ARGS+= --enable-valgrind-testing
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-valgrind-testing
|
|
.endif
|