diff options
author | bjs <bjs@pkgsrc.org> | 2007-11-08 04:08:46 +0000 |
---|---|---|
committer | bjs <bjs@pkgsrc.org> | 2007-11-08 04:08:46 +0000 |
commit | 87bc65a62cb1d3dfd46e25df7dce1af9ed589e61 (patch) | |
tree | 8e73e6404a88e3812c323e7831f0335478d42305 /audio/herrie/options.mk | |
parent | 109d6f065c66c7cbdfb3ce18987ace1089636689 (diff) | |
download | pkgsrc-87bc65a62cb1d3dfd46e25df7dce1af9ed589e61.tar.gz |
Oops, forgot to add libvorbis/libogg support. Also, AudioScrobbler
support only requires www/curl, so enable that too along with curl support.
I'm not bumping the revision since I just committed it.
Diffstat (limited to 'audio/herrie/options.mk')
-rw-r--r-- | audio/herrie/options.mk | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/audio/herrie/options.mk b/audio/herrie/options.mk index 5619c9e3923..990e8c3039f 100644 --- a/audio/herrie/options.mk +++ b/audio/herrie/options.mk @@ -1,9 +1,9 @@ -# $NetBSD: options.mk,v 1.1.1.1 2007/11/08 03:52:30 bjs Exp $ +# $NetBSD: options.mk,v 1.2 2007/11/08 04:08:46 bjs Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.herrie PKG_OPTIONS_GROUP.curses= ncurses ncursesw PKG_OPTIONS_OPTIONAL_GROUPS= curses -PKG_SUPPORTED_OPTIONS= curl libao libmodplug sndfile +PKG_SUPPORTED_OPTIONS= curl libao libmodplug sndfile vorbis PKG_SUGGESTED_OPTIONS= ncurses curl .include "../../mk/oss.buildlink3.mk" @@ -22,6 +22,7 @@ PKG_SUGGESTED_OPTIONS+= libao . include "../../www/curl/buildlink3.mk" .else CONFIGURE_ARGS+= no_http +CONFIGURE_ARGS+= no_scrobbler .endif .if !empty(PKG_OPTIONS:Mncurses) @@ -60,3 +61,9 @@ CONFIGURE_ARGS+= no_sndfile .if !empty(PKG_OPTIONS:Mdebug) CONFIGURE_ARGS+= no_strip strict .endif + +.if !empty(PKG_OPTIONS:Mvorbis) +. include "../../audio/libvorbis/buildlink3.mk" +.else +CONFIGURE_ARGS+= no_vorbis +.endif |