diff options
author | kevlo <kevlo@FreeBSD.org> | 2000-09-09 13:14:50 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2000-09-09 13:14:50 +0000 |
commit | 3287a0669e080398767a459bdd749bd5c485d790 (patch) | |
tree | 271d2ef8e97549582df46230d42f47399a1c137e /irc | |
parent | a4142bafdbe5fe3223c0d62366942c47d2c63b6b (diff) | |
download | FreeBSD-ports-3287a0669e080398767a459bdd749bd5c485d790.zip FreeBSD-ports-3287a0669e080398767a459bdd749bd5c485d790.tar.gz |
- Fix Makefile.
- Add MESSAGE
PR: 20978
Submitted by: MAINTAINER
Diffstat (limited to 'irc')
-rw-r--r-- | irc/bitchx/Makefile | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/irc/bitchx/Makefile b/irc/bitchx/Makefile index 101f912..f5ffb5e 100644 --- a/irc/bitchx/Makefile +++ b/irc/bitchx/Makefile @@ -23,12 +23,12 @@ WRKSRC= ${WRKDIR}/BitchX USE_AUTOCONF= yes USE_GMAKE= yes .if defined(WITH_GNOME) -CONFIGURE_ARGS+= --with-gtk --enable-sound +CONFIGURE_ARGS+= --with-gtk .else CONFIGURE_ARGS+= --without-gtk .endif .if defined(WITH_ESD) -CONFIGURE_ARGS+= --with-gtk --enable-sound +CONFIGURE_ARGS+= --enable-sound .endif .if defined(WITH_PLUGINS) CONFIGURE_ARGS+= --with-plugins=pkga,possum,encrypt,hint,abot,acro,amp,blowfish,scan,wavplay,qmail,fserv,nap,qbx @@ -47,19 +47,9 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAKE_ENV+= INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ INSTALL_DATA="${INSTALL_DATA}" -.if !defined(WITH_GNOME) pre-extract: - @${ECHO} "Define WITH_GNOME if you want to build GTK BitchX" -.endif -.if !defined(WITH_ESD) - @${ECHO} "Define WITH_ESD for ESD sound support in GTK BitchX" -.endif -.if !defined(WITH_PLUGINS) - @${ECHO} "Define WITH_PLUGINS if you wish to build the plugins" -.endif -.if !defined(WITH_LATIN) - @${ECHO} "Define WITH_LATIN if you are using an ISO-8859-1 screenfont" -.endif + @${CAT} ${PKGDIR}/MESSAGE + .if defined(WITH_LATIN) pre-patch: @${PERL} -pi -e "s!#undef LATIN1!#define LATIN1!" ${WRKSRC}/include/config.h |