diff options
author | steve <steve@FreeBSD.org> | 2000-07-07 18:24:43 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-07-07 18:24:43 +0000 |
commit | c27a7efe0bd45c170cfe1e69b76346ef3b876f53 (patch) | |
tree | 8966e27b183af992f1f3f2ee169131bf898671d4 /irc/bitchx | |
parent | 8d39d95b4a0efde52c99c44182a99b8c2b4f525c (diff) | |
download | FreeBSD-ports-c27a7efe0bd45c170cfe1e69b76346ef3b876f53.zip FreeBSD-ports-c27a7efe0bd45c170cfe1e69b76346ef3b876f53.tar.gz |
Make building the plugins optional.
PR: 19708
Submitted by: maintainer
Diffstat (limited to 'irc/bitchx')
-rw-r--r-- | irc/bitchx/Makefile | 32 | ||||
-rw-r--r-- | irc/bitchx/files/patch-aj | 33 | ||||
-rw-r--r-- | irc/bitchx/pkg-plist | 15 |
3 files changed, 59 insertions, 21 deletions
diff --git a/irc/bitchx/Makefile b/irc/bitchx/Makefile index ac80238..b57e1f0 100644 --- a/irc/bitchx/Makefile +++ b/irc/bitchx/Makefile @@ -27,9 +27,14 @@ WRKSRC= ${WRKDIR}/BitchX USE_AUTOCONF= yes USE_GMAKE= yes .if defined(WITH_GNOME) -CONFIGURE_ARGS+= --with-plugins --with-gtk --enable-sound +CONFIGURE_ARGS+= --with-gtk --enable-sound .else -CONFIGURE_ARGS+= --with-plugins --without-gtk +CONFIGURE_ARGS+= --without-gtk +.endif +.if defined(WITH_PLUGINS) +CONFIGURE_ARGS+= --with-plugins +.else +CONFIGURE_ARGS+= --without-plugins .endif CONFIGURE_ARGS+= --exec-prefix="${PREFIX}/share" \ --bindir="${PREFIX}/bin" \ @@ -46,11 +51,9 @@ MAKE_ENV+= INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ .if !defined(WITH_GNOME) pre-extract: @${ECHO} "You can add hooks for GNOME by defining WITH_GNOME" + @${ECHO} "If you want to build the plugins define WITH_PLUGINS" .endif -pre-patch: - @${PERL} -pi -e "s!#undef WANT_CHAN_NICK_SERV!#define WANT_CHAN_NICK_SERV!" ${WRKSRC}/include/config.h - post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/bx/help @@ -62,6 +65,24 @@ post-install: @${ECHO} bin/gtkBitchX >> ${TMPPLIST} @${ECHO} bin/gtkBitchX-1.0c16 >> ${TMPPLIST} @${ECHO} share/bx/plugins/nicklist.so >> ${TMPPLIST} +.if defined(WITH_PLUGINS) + @${ECHO} share/bx/plugins/BitchX.hints >> ${TMPPLIST} + @${ECHO} share/bx/plugins/acro.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/amp.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/autobot.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/blowfish.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/encrypt.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/fserv.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/hint.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/nap.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/pkga.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/possum.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/qmail.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/scan.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/wavplay.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/qbx.so >> ${TMPPLIST} + @${ECHO} share/bx/plugins/plugins >> ${TMPPLIST} +.endif .else @${ECHO} bin/BitchX >> ${TMPPLIST} @${ECHO} bin/BitchX-1.0c16 >> ${TMPPLIST} @@ -69,7 +90,6 @@ post-install: @${ECHO} share/bx/wserv >> ${TMPPLIST} .endif @${ECHO} @dirrm share/bx/help >> ${TMPPLIST} - @${ECHO} @dirrm share/bx/plugins >> ${TMPPLIST} @${ECHO} @dirrm share/bx/script >> ${TMPPLIST} @${ECHO} @dirrm share/bx/translation >> ${TMPPLIST} @${ECHO} @dirrm share/bx >> ${TMPPLIST} diff --git a/irc/bitchx/files/patch-aj b/irc/bitchx/files/patch-aj new file mode 100644 index 0000000..68c201f --- /dev/null +++ b/irc/bitchx/files/patch-aj @@ -0,0 +1,33 @@ +--- include/config.h.orig Tue Jul 4 20:27:01 2000 ++++ include/config.h Tue Jul 4 20:33:03 2000 +@@ -460,7 +460,7 @@ + + #define DEFAULT_HTTP_GRAB OFF + #define DEFAULT_HELP_WINDOW OFF +-#define DEFAULT_NICK_COMPLETION ON ++#define DEFAULT_NICK_COMPLETION OFF + #define DEFAULT_NICK_COMPLETION_LEN 2 + #define DEFAULT_NICK_COMPLETION_TYPE 0 /* 0 1 2 */ + #define DEFAULT_NOTIFY ON +@@ -495,9 +495,9 @@ + #define DEFAULT_AINV 0 + #define DEFAULT_ANNOY_KICK OFF + #define DEFAULT_AOP_VAR OFF +-#define DEFAULT_AUTO_AWAY ON +-#define DEFAULT_KICK_OPS ON +-#define DEFAULT_AUTO_REJOIN ON ++#define DEFAULT_AUTO_AWAY OFF ++#define DEFAULT_KICK_OPS OFF ++#define DEFAULT_AUTO_REJOIN OFF + #define DEFAULT_DEOPFLOOD ON + #define DEFAULT_CTCP_FLOOD_AFTER 3 + #define DEFAULT_CTCP_FLOOD_RATE 10 +@@ -735,7 +735,7 @@ + #endif + + #undef PARANOID /* #define this if your paranoid about dcc hijacking */ +-#undef WANT_CHAN_NICK_SERV /* do we want to include some chan/nick/oper server commands */ ++#define WANT_CHAN_NICK_SERV /* do we want to include some chan/nick/oper server commands */ + + /* new epic stuff */ + #define OLD_STATUS_S_EXPANDO_BEHAVIOR diff --git a/irc/bitchx/pkg-plist b/irc/bitchx/pkg-plist index 623958f..781a528 100644 --- a/irc/bitchx/pkg-plist +++ b/irc/bitchx/pkg-plist @@ -898,21 +898,6 @@ share/bx/help/8_Scripts/webster share/bx/help/8_Scripts/2.8script share/bx/help/8_Scripts/window share/bx/help/README_FIRST -share/bx/plugins/BitchX.hints -share/bx/plugins/acro.so -share/bx/plugins/amp.so -share/bx/plugins/autobot.so -share/bx/plugins/blowfish.so -share/bx/plugins/encrypt.so -share/bx/plugins/fserv.so -share/bx/plugins/hint.so -share/bx/plugins/nap.so -share/bx/plugins/pkga.so -share/bx/plugins/possum.so -share/bx/plugins/qmail.so -share/bx/plugins/scan.so -share/bx/plugins/wavplay.so -share/bx/plugins/qbx.so share/bx/script/actplug.gmz share/bx/script/bxglobal share/bx/script/bxtcl.tcl |