if it needed it before it still needs it now. This is a c++ client so
xmms2 needs to be built with boost to provide xmms2client++
The direct boost dependency probably also needs a subdependency on
some parts of boost as well. So check what it needs and compare that with
the SUB_DEPENDS file in the boost spell and
depends boost SOME_BOOST_SUB_DEPENDS
> diff --git a/audio-players/nyello/HISTORY b/audio-players/nyello/HISTORY
> index e94e13a..86c85da 100644
> --- a/audio-players/nyello/HISTORY
> +++ b/audio-players/nyello/HISTORY
> @@ -1,3 +1,7 @@
> +2007-05-14 Colin "Phoul" Childs <phoul AT sourcemage.org>
> + * DETAILS, DEPENDS, PRE_BUILD: Spell now supports using the git
> repo to + compile nyello
> +
Try to be a bit more verbose in HISTORY entries. For example:
2007-05-14 Colin "Phoul" Childs <phoul AT sourcemage.org>
* DETAILS: Added support for git options
* DEPENDS: added/removed some depends
.
.
.
and such :)
> 2007-05-10 Colin Childs <phoul AT sourcemage.org>
> * DETAILS, DEPENDS, HISTORY: created spell
> 2007-05-10 Colin Childs <phoul AT sourcemage.org>
> diff --git a/audio-players/nyello/PREPARE b/audio-players/nyello/PREPARE
> new file mode 100755
> index 0000000..e5c7289
> --- /dev/null
> +++ b/audio-players/nyello/PREPARE
> @@ -0,0 +1,9 @@
> +config_query NYELLO_GIT "Use latest git code?" n &&
> +
> +if [[ "$NYELLO_GIT" == "y" ]]; then
> + config_query NYELLO_GIT_AUTOUPDATE \
> + "Update on every system-update?" n
> + else
> + persistent_add NYELLO_GIT_AUTOUPDATE &&
> + NYELLO_GIT_AUTOUPDATE="n"
> +fi
You don't need persistent_add ALL config_* functions have
persistent variables. Also this else is unnecessary. It defaults to
n so it doesn't need any extra funky things.