blob: 87017aca970d9b2d187c184675d42691a1a1d34b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: options.mk,v 1.1.1.1 2005/10/20 19:55:49 xtraeme Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.streamripper
PKG_SUPPORTED_OPTIONS= ogg
PKG_SUGGESTED_OPTIONS= ogg
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mogg)
. include "../../audio/libvorbis/buildlink3.mk"
CONFIGURE_ARGS+= --with-ogg=${BUILDLINK_PREFIX.libvorbis}
.else
CONFIGURE_ARGS+= --disable-ogg
.endif
|