1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
AC_ARG_WITH(plugins,
AC_HELP_STRING([--with-plugins], [what plugins to build]),
,with_plugins=all)
if test -z $with_plugins ; then
with_plugins=all
fi
PP_DIST_DIRS="album autoprofile autoreply awaynotify bash bit blistops buddytime chronic colorize convbadger dewysiwygification dice difftopic eight_ball enhancedhist findip flip gRIM google groupmsg hideconv highlight ignorance ignore infopane irc-more irchelper irssi lastseen listhandler listlog msglen mystatusbox napster nicksaid nomobility oldlogger plonkers schedule sepandtab showoffline simfix slashexec smartear snpp splitter sslinfo stocker stress switchspell talkfilters timelog xchat-chats xmmsremote xmppprio"
AC_SUBST(PP_DIST_DIRS)
AC_CONFIG_FILES([
album/Makefile
autoprofile/Makefile
autoreply/Makefile
awaynotify/Makefile
bash/Makefile
bit/Makefile
blistops/Makefile
buddytime/Makefile
chronic/Makefile
colorize/Makefile
convbadger/Makefile
dewysiwygification/Makefile
dice/Makefile
difftopic/Makefile
eight_ball/Makefile
enhancedhist/Makefile
findip/Makefile
flip/Makefile
gRIM/Makefile
google/Makefile
groupmsg/Makefile
hideconv/Makefile
highlight/Makefile
ignorance/Makefile
ignore/Makefile
infopane/Makefile
irc-more/Makefile
irchelper/Makefile
irssi/Makefile
lastseen/Makefile
listhandler/Makefile
listlog/Makefile
msglen/Makefile
mystatusbox/Makefile
napster/Makefile
nicksaid/Makefile
nomobility/Makefile
oldlogger/Makefile
plonkers/Makefile
schedule/Makefile
sepandtab/Makefile
showoffline/Makefile
simfix/Makefile
slashexec/Makefile
smartear/Makefile
snpp/Makefile
splitter/Makefile
sslinfo/Makefile
stocker/Makefile
stress/Makefile
switchspell/Makefile
talkfilters/Makefile
timelog/Makefile
xchat-chats/Makefile
xmmsremote/Makefile
xmppprio/Makefile
])
PP_BUILD=`$PYTHON $srcdir/plugin_pack.py build_dirs $DEPENDENCIES $with_plugins`
PP_BUILD_DIRS=`echo $PP_BUILD | sed 's/,/\ /g'`
AC_SUBST(PP_BUILD_DIRS)
PP_PURPLE_BUILD="$PYTHON $srcdir/plugin_pack.py -p show_names $PP_BUILD"
PP_PIDGIN_BUILD="$PYTHON $srcdir/plugin_pack.py -P show_names $PP_BUILD"
PP_FINCH_BUILD="$PYTHON $srcdir/plugin_pack.py -f show_names $PP_BUILD"
|