diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2003-12-08 16:28:54 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2003-12-08 16:28:54 +0000 |
commit | e237d381c5414dfbe60c06dbc34ab59a268369cf (patch) | |
tree | 89a79a4b62cb62b9c2a3f0df6754f809d99191d8 /irc/irssi-devel | |
parent | f9e095b86bcda6079476767039ea9dfe3962e524 (diff) | |
download | ports-e237d381c5414dfbe60c06dbc34ab59a268369cf.tar.gz ports-e237d381c5414dfbe60c06dbc34ab59a268369cf.zip |
Notes
Diffstat (limited to 'irc/irssi-devel')
-rw-r--r-- | irc/irssi-devel/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/irc/irssi-devel/Makefile b/irc/irssi-devel/Makefile index 305487fdc34f..e40e91bbaf35 100644 --- a/irc/irssi-devel/Makefile +++ b/irc/irssi-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= irssi PORTVERSION= 0.8.8 +PORTREVISION= 1 CATEGORIES= irc MASTER_SITES= http://irssi.org/files/ @@ -50,13 +51,23 @@ WITH_IPV6= yes WITH_SSL= yes .endif +.if ! defined(WITH_BOEHM_GC) +WITH_BOEHM_GC= no +.endif + +.if ! defined(WITH_BOT) +WITH_BOT= no +.endif + # Process options. .if ${WITH_GLIB} == "2" USE_GNOME= glib20 +.if ${WITH_BOEHM_GC:L} == "yes" LIB_DEPENDS+= gc.1:${PORTSDIR}/devel/boehm-gc CONFIGURE_ENV+= CPPFLAGS=-I${PREFIX}/include CONFIGURE_ARGS+= --with-gc +.endif .elif ${WITH_GLIB} == "1" CONFIGURE_ARGS+= --with-glib1 USE_GNOME= glib12 @@ -99,6 +110,10 @@ USE_OPENSSL= yes CONFIGURE_ARGS+= --disable-ssl .endif +.if ${WITH_BOT:L} == "yes" +CONFIGURE_ARGS+= --with-bot +.endif + pre-extract: @${ECHO} "" @${ECHO} "You may use the following build options:" @@ -109,6 +124,8 @@ pre-extract: @${ECHO} " WITH_SOCKS=yes|no Enable Socks support [no]" @${ECHO} " WITH_IPV6=yes|no Enable IPv6 support [yes]" @${ECHO} " WITH_SSL=yes|no Enable SSL support [yes]" + @${ECHO} " WITH_BOEHM_GC=yes|no Enable GC support [no]" + @${ECHO} " WITH_BOT=yes|no Enable BOT support [no]" @${ECHO} "" pre-configure: |