Skip to Content.
Sympa Menu

sm-commit - Re: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (70b905316836bb3cca62c1904c63028bdb998f56)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: "Andraž \"ruskie\" Levstik" <ruskie AT mages.ath.cx>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: Re: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (70b905316836bb3cca62c1904c63028bdb998f56)
  • Date: Fri, 18 Aug 2006 22:27:02 +0200

Florian Franzmann wrote :

> GIT changes to master grimoire by Florian Franzmann
> <siflfran AT hawo.stw.uni-erlangen.de>:
>
> chat-irc/irssi/BUILD | 7 +++++++
> chat-irc/irssi/CONFIGURE | 2 ++
> chat-irc/irssi/DEPENDS | 4 ++++
> chat-irc/irssi/HISTORY | 5 +++++
> 4 files changed, 18 insertions(+)
>
> New commits:
> commit 9aa7de0d34e5eeb1ad54648299999da93c116dc5
> Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
> Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
>
> added optional support for SOCKS, irssi-bot, irssi-proxy
>
> diff --git a/chat-irc/irssi/BUILD b/chat-irc/irssi/BUILD
> new file mode 100755
> index 0000000..386d98f
> --- /dev/null
> +++ b/chat-irc/irssi/BUILD
> @@ -0,0 +1,7 @@
> +if [[ $IRSSI_BOT == y ]]; then
> + OPTS="--with-bot $OPTS"
> +fi &&
> +if [[ $IRSSI_PROXY == y ]]; then
> + OPTS="--with-proxy $OPTS"
> +fi &&
> +default_build
> diff --git a/chat-irc/irssi/CONFIGURE b/chat-irc/irssi/CONFIGURE
> new file mode 100755
> index 0000000..160abef
> --- /dev/null
> +++ b/chat-irc/irssi/CONFIGURE
> @@ -0,0 +1,2 @@
> +config_query IRSSI_BOT "build with irssi-bot" n &&
> +config_query IRSSI_PROXY "build with irssi-proxy (to use irssi as a
> bouncer)" n
> diff --git a/chat-irc/irssi/DEPENDS b/chat-irc/irssi/DEPENDS
> index f666033..b672b68 100755
> --- a/chat-irc/irssi/DEPENDS
> +++ b/chat-irc/irssi/DEPENDS
> @@ -10,6 +10,10 @@ optional_depends "perl"
> "--with-perl=module" \
> "--with-perl=no" \
> "for perl support" &&
> +optional_depends "dante" \
> + "--with-socks" \
> + "--without-socks" \
> + "for SOCKS support" &&
>
> if [ "$IRSSI_SVN" = "y" ]; then
> depends subversion
> diff --git a/chat-irc/irssi/HISTORY b/chat-irc/irssi/HISTORY
> index 1c524dd..0a89294 100644
> --- a/chat-irc/irssi/HISTORY
> +++ b/chat-irc/irssi/HISTORY
> @@ -1,3 +1,8 @@
> +2006-08-18 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
> + * DEPENDS: added optional dependency on dante (for SOCKS5 support)
> + * BUILD, CONFIGURE: added to optionally enable irssi-bot and
> + irssi-proxy
> +
> 2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
> * DETAILS: (automated) Add KEYWORDS
>
> _______________________________________________
> SM-Commit mailing list
> SM-Commit AT lists.ibiblio.org
> http://lists.ibiblio.org/mailman/listinfo/sm-commit
>
>

Here's the better(desired) approach:
config_query_option IRSSI_OPTS "build with irssi-bot" n "--with-bot"
"--without-bot" &&
config_query_option IRSSI_OPTS "build with irssi-proxy" n "--with-proxy"
"--without-proxy"

And into build OPTS="$IRSSI_OPTS $OPTS"
--
Andraž "ruskie" Levstik
Source Mage GNU/Linux Games grimoire guru
Geek/Hacker/Tinker

Hacker FAQ: http://www.plethora.net/%7eseebs/faqs/hacker.html
Be sure brain is in gear before engaging mouth.

Key id = A7A9E461
Key fingerprint = 757E C16B F5B7 DC27 B003 CCED CF95 3A77 A7A9 E461





Archive powered by MHonArc 2.6.24.

Top of Page