freebsd-ports/irc/weechat-devel/Makefile
Sylvio Cesar Teixeira d49b5f0dd8 - Update to 20100628
PR:		ports/148342
Submitted by:	Jase Thew <freebsd@beardz.net> (maintainer)
Feature safe:	yes
2010-07-04 20:18:32 +00:00

148 lines
3.3 KiB
Makefile

# New ports collection makefile for: weechat-devel
# Date created: 2010-01-06
# Whom: Jase Thew <freebsd@beardz.net>
#
# $FreeBSD$
#
PORTNAME= weechat
PORTVERSION= 20100628
CATEGORIES= irc
MASTER_SITES= http://perturb.me.uk/distfiles/ \
http://freebsd.unixfreunde.de/sources/
PKGNAMESUFFIX= -devel
DISTNAME= weechat-devel-cb18bdb10b1dfc6b4f53585ea162961e826f0146
MAINTAINER= freebsd@beardz.net
COMMENT= A lightweight and user friendly ncurse based IRC client
CONFLICTS= weechat-0.3*
USE_ICONV= yes
USE_LDCONFIG= yes
USE_CMAKE= yes
CMAKE_USE_PTHREAD= yes
CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib
WANT_PERL= yes
OPTIONS= RUBY "Ruby scripting support." Off \
PYTHON "Python scripting support." Off \
PERL "Perl scripting support." Off \
TCL "TCL scripting support." Off \
LUA "Lua scripting support." Off \
CHARSET "Charset support." On \
BACKTRACE "Backtraces." Off \
DEBUG "Debugging." On \
ASPELL "Spell checking." Off \
GNUTLS "GNU TLS." Off \
NLS "NLS support." On \
DOCUMENTATION "Build documentation." Off
WRKSRC= ${WRKDIR}/${PORTNAME}-cb18bdb
.include <bsd.port.options.mk>
.if defined(WITH_DEBUG)
CMAKE_BUILD_TYPE= Debug
.endif
.if defined(WITHOUT_CHARSET)
CMAKE_ARGS+= -DDISABLE_CHARSET=yes
PLIST_SUB+= CHARSET="@comment "
.else
PLIST_SUB+= CHARSET=""
.endif
.if defined(WITHOUT_NLS)
CMAKE_ARGS+= -DDISABLE_NLS=yes
PLIST_SUB+= NLS="@comment "
.else
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.endif
.if defined(WITH_ASPELL)
BUILD_DEPENDS+= aspell:${PORTSDIR}/textproc/aspell
PLIST_SUB+= ASPELL=""
.else
CMAKE_ARGS+= -DDISABLE_ASPELL=yes
PLIST_SUB+= ASPELL="@comment "
.endif
.if defined(WITH_PYTHON)
USE_PYTHON= yes
PLIST_SUB+= PYTHON=""
.else
CMAKE_ARGS+= -DDISABLE_PYTHON=yes
PLIST_SUB+= PYTHON="@comment "
.endif
.if defined(WITH_RUBY)
.include "${PORTSDIR}/Mk/bsd.ruby.mk"
USE_RUBY= yes
PLIST_SUB+= RUBY=""
.else
CMAKE_ARGS+= -DDISABLE_RUBY=yes
PLIST_SUB+= RUBY="@comment "
.endif
.if defined(WITH_GNUTLS)
LIB_DEPENDS+= gnutls.40:${PORTSDIR}/security/gnutls
.else
CMAKE_ARGS+= -DDISABLE_GNUTLS=yes
.endif
.if defined(WITH_PERL)
USE_PERL5= yes
PLIST_SUB+= PERL=""
.else
CMAKE_ARGS+= -DDISABLE_PERL=yes
PLIST_SUB+= PERL="@comment "
.endif
.if defined(WITH_TCL)
USE_TCL= 83+
.include "${PORTSDIR}/Mk/bsd.tcl.mk"
PLIST_SUB+= TCL=""
.else
CMAKE_ARGS+= -DDISABLE_TCL=yes
PLIST_SUB+= TCL="@comment "
.endif
.if defined(WITH_LUA)
USE_LUA= 5.0+
PLIST_SUB+= LUA=""
.else
CMAKE_ARGS+= -DDISABLE_LUA=yes
PLIST_SUB+= LUA="@comment "
.endif
.if defined(WITH_DOCUMENTATION)
BUILD_DEPENDS+= asciidoc:${PORTSDIR}/textproc/asciidoc
BUILD_DEPENDS+= source-highlight:${PORTSDIR}/textproc/source-highlight
PLIST_SUB+= DOCUMENTATION=""
.else
CMAKE_ARGS+= -DDISABLE_DOC=yes
PLIST_SUB+= DOCUMENTATION="@comment "
.endif
.if defined(WITH_BACKTRACE)
LIB_DEPENDS+= execinfo.1:${PORTSDIR}/devel/libexecinfo
.endif
MAN1= weechat-curses.1
post-extract:
@${CP} ${WRKSRC}/doc/weechat-curses.1 ${WRKSRC}/
post-patch:
@${REINPLACE_CMD} -e 's|$${LIBDIR}/../pkgconfig|$${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|' ${WRKSRC}/CMakeLists.txt
@${REINPLACE_CMD} -e 's|INSTALL|#INSTALL|' ${WRKSRC}/doc/CMakeLists.txt
.if defined(WITHOUT_BACKTRACE)
@${REINPLACE_CMD} -e '/IF.*FreeBSD/,/ENDIF.*FreeBSD/d' ${WRKSRC}/src/core/CMakeLists.txt
.endif
post-install:
${INSTALL_MAN} ${WRKSRC}/doc/weechat-curses.1 ${MANPREFIX}/man/man1
.include <bsd.port.mk>