82 lines
1.6 KiB
Makefile
82 lines
1.6 KiB
Makefile
# New ports collection makefile for: weechat
|
|
# Date created: 2003-03-07
|
|
# Whom: clement
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= weechat
|
|
PORTVERSION= 0.1.9
|
|
PORTREVISION= 1
|
|
CATEGORIES= irc
|
|
MASTER_SITES= http://flashcode.free.fr/flashtux/weechat/ \
|
|
http://weechat.flashtux.org/download/
|
|
|
|
MAINTAINER= az@FreeBSD.org
|
|
COMMENT= A lightweight and user friendly ncurse based IRC client
|
|
|
|
USE_BZIP2= yes
|
|
USE_ICONV= yes
|
|
USE_AUTOTOOLS= autoconf:259
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --disable-lua
|
|
|
|
MAN1= weechat-curses.1
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+= --with-debug=2
|
|
.else
|
|
CONFIGURE_ARGS+= --with-debug=0
|
|
.endif
|
|
|
|
.if defined(WITHOUT_NLS)
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.else
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.endif
|
|
|
|
.if defined(WITH_PYTHON)
|
|
CONFIGURE_ARGS+= --enable-python
|
|
USE_PYTHON= yes
|
|
PLIST_SUB+= PYTHON=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-python
|
|
PLIST_SUB+= PYTHON="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_RUBY)
|
|
CONFIGURE_ARGS+= --enable-ruby
|
|
USE_RUBY= yes
|
|
PLIST_SUB+= RUBY=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ruby
|
|
PLIST_SUB+= RUBY="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_GNUTLS)
|
|
CONFIGURE_ARGS+= --enable-gnutls
|
|
LIB_DEPENDS+= gnutls.13:${PORTSDIR}/security/gnutls
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gnu-tls
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_PERL)
|
|
.if ${PERL_LEVEL} < 500600
|
|
IGNORE= this port requires perl 5.6.0 or later, Install lang/perl5 then try again
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-perl
|
|
USE_PERL= yes
|
|
PLIST_SUB+= PERL=""
|
|
.endif
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-perl
|
|
PLIST_SUB+= PERL="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|