diff options
author | rodent <rodent@pkgsrc.org> | 2013-05-25 01:37:59 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2013-05-25 01:37:59 +0000 |
commit | 70482cd1587e55b37682d6f406bc4eb71b32e721 (patch) | |
tree | 45bae029c379ff4fd484695abfeb13cf3319d982 /audio | |
parent | de404e766fac56e47c91e103e2718c67ae697f1a (diff) | |
download | pkgsrc-70482cd1587e55b37682d6f406bc4eb71b32e721.tar.gz |
Move flac, speex, and vorbis PKG_OPTIONS to PKG_OPTIONS_SET.codec, because
at least one of them is required, configure fails if one isn't set, and we
can help the user not make this mistake.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libfishsound/options.mk | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/audio/libfishsound/options.mk b/audio/libfishsound/options.mk index 6480e638db9..29f7924fd71 100644 --- a/audio/libfishsound/options.mk +++ b/audio/libfishsound/options.mk @@ -1,8 +1,11 @@ -# $NetBSD: options.mk,v 1.1 2013/05/09 00:42:45 rodent Exp $ +# $NetBSD: options.mk,v 1.2 2013/05/25 01:37:59 rodent Exp $ -PKG_OPTIONS_VAR= PKG_OPTIONS.libfish -PKG_SUPPORTED_OPTIONS= doc flac speex valgrind vorbis +PKG_OPTIONS_VAR= PKG_OPTIONS.libfishsound +PKG_SUPPORTED_OPTIONS= doc valgrind PKG_SUGGESTED_OPTIONS+= flac speex vorbis +PKG_OPTIONS_NONEMPTY_SETS+= codec +PKG_OPTIONS_SET.codec= flac speex vorbis + PLIST_VARS+= doc nodoc .include "../../mk/bsd.options.mk" |