diff options
author | rodent <rodent> | 2013-05-25 01:37:59 +0000 |
---|---|---|
committer | rodent <rodent> | 2013-05-25 01:37:59 +0000 |
commit | 9b56d308e80457ebbbc5a2dbad54dbfe5b0dc560 (patch) | |
tree | 45bae029c379ff4fd484695abfeb13cf3319d982 | |
parent | 4a221f9042166ff8caf33d2d7689094ec7eb7a66 (diff) | |
download | pkgsrc-9b56d308e80457ebbbc5a2dbad54dbfe5b0dc560.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.
-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" |