mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
179 lines
4.3 KiB
Makefile
179 lines
4.3 KiB
Makefile
# Created by: clement
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= weechat
|
|
PORTVERSION= 0.4.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= irc
|
|
MASTER_SITES= http://weechat.org/files/src/
|
|
|
|
MAINTAINER= jase@FreeBSD.org
|
|
COMMENT= A lightweight and user friendly ncurses based IRC client
|
|
|
|
LICENSE= GPLv3
|
|
|
|
CONFLICTS= weechat-devel-0.*
|
|
|
|
USE_LDCONFIG= yes
|
|
USES= cmake iconv
|
|
CMAKE_ARGS+= -DENABLE_GUILE=no
|
|
CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib
|
|
|
|
LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl \
|
|
gcrypt:${PORTSDIR}/security/libgcrypt
|
|
|
|
OPTIONS_DEFINE= RUBY PYTHON PERL TCL LUA CHARSET BACKTRACE ASPELL \
|
|
GNUTLS NLS DOCUMENTATION COLOR256 ICON
|
|
OPTIONS_DEFAULT=CHARSET
|
|
|
|
BACKTRACE_DESC= Provide crash backtraces
|
|
CHARSET_DESC= Charset conversion support
|
|
DOCUMENTATION_DESC= Build and install documentation
|
|
LUA_DESC= Lua scripting support
|
|
PERL_DESC= Perl scripting support
|
|
PYTHON_DESC= Python scripting support
|
|
RUBY_DESC= Ruby scripting support
|
|
TCL_DESC= Tcl scripting support
|
|
COLOR256_DESC= Use ncurses port for 256 color support
|
|
ICON_DESC= Desktop icon
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MCHARSET}
|
|
PLIST_SUB+= CHARSET=""
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_CHARSET=no
|
|
PLIST_SUB+= CHARSET="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_NLS=no
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MASPELL}
|
|
BUILD_DEPENDS+= aspell:${PORTSDIR}/textproc/aspell
|
|
PLIST_SUB+= ASPELL=""
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_ASPELL=no
|
|
PLIST_SUB+= ASPELL="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPYTHON}
|
|
USE_PYTHON= 2.6-
|
|
CMAKE_ARGS+= -DBSD_PYTHON_CMD=${PYTHON_CMD} \
|
|
-DBSD_PYTHON_VER=${PYTHON_VERSION}
|
|
PLIST_SUB+= PYTHON=""
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_PYTHON=no
|
|
PLIST_SUB+= PYTHON="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MRUBY}
|
|
USE_RUBY= yes
|
|
CMAKE_ARGS+= -DBSD_RUBY_CMD=${RUBY} \
|
|
-DBSD_RUBY_VER=${RUBY_NAME}
|
|
PLIST_SUB+= RUBY=""
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_RUBY=no
|
|
PLIST_SUB+= RUBY="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGNUTLS}
|
|
USES+= pkgconfig
|
|
LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_GNUTLS=no
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPERL}
|
|
USES+= perl5
|
|
PLIST_SUB+= PERL=""
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_PERL=no
|
|
PLIST_SUB+= PERL="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MTCL}
|
|
USE_TCL= 84+
|
|
.include "${PORTSDIR}/Mk/bsd.tcl.mk"
|
|
CMAKE_ARGS+= -DBSD_TCL_VER=${TCL_VER} \
|
|
-DBSD_TCL_LIBDIR=${LOCALBASE}/lib \
|
|
-DBSD_TCL_INCDIR=${TCL_INCLUDEDIR}
|
|
PLIST_SUB+= TCL=""
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_TCL=no
|
|
PLIST_SUB+= TCL="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLUA}
|
|
USE_LUA= 5.1+
|
|
CMAKE_ARGS+= -DBSD_LUA_LIBDIR=${LUA_LIBDIR} \
|
|
-DBSD_LUA_INCDIR=${LUA_INCDIR}
|
|
PLIST_SUB+= LUA=""
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_LUA=no
|
|
PLIST_SUB+= LUA="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDOCUMENTATION}
|
|
BUILD_DEPENDS+= asciidoc:${PORTSDIR}/textproc/asciidoc
|
|
BUILD_DEPENDS+= source-highlight>=3.1.5:${PORTSDIR}/textproc/source-highlight
|
|
PLIST_SUB+= DOCUMENTATION=""
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_DOC=no
|
|
PLIST_SUB+= DOCUMENTATION="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MBACKTRACE}
|
|
LIB_DEPENDS+= execinfo:${PORTSDIR}/devel/libexecinfo
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MCOLOR256}
|
|
USES+= ncurses:port
|
|
CMAKE_ARGS+= -DNCURSES_INCLUDE_PATH=${LOCALBASE}/include/ncurses
|
|
.else
|
|
USES+= ncurses
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MICON}
|
|
PLIST_SUB+= ICON=""
|
|
.else
|
|
PLIST_SUB+= ICON="@comment "
|
|
.endif
|
|
|
|
MAN1= weechat-curses.1
|
|
|
|
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
|
|
.for f in src/CMakeLists.txt src/core/CMakeLists.txt cmake/*.cmake
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/${f}
|
|
.endfor
|
|
.if empty(PORT_OPTIONS:MBACKTRACE)
|
|
@${REINPLACE_CMD} -e '/IF.*FreeBSD/,/ENDIF.*FreeBSD/d' ${WRKSRC}/src/core/CMakeLists.txt
|
|
.endif
|
|
.if empty(PORT_OPTIONS:MICON)
|
|
@${REINPLACE_CMD} -e '/^# icon$$/,/^$$/d' ${WRKSRC}/CMakeLists.txt
|
|
.endif
|
|
|
|
pre-configure:
|
|
.if ${PORT_OPTIONS:MCOLOR256}
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "==> You have selected the ncurses 256 color option. Please ensure that"
|
|
@${ECHO_MSG} "==> the devel/ncurses port is built with the EXTCOLORS option enabled."
|
|
@${ECHO_MSG} "==>"
|
|
@${ECHO_MSG} "==> Press Ctrl-C now if you want to re-configure."
|
|
@${ECHO_MSG} ""
|
|
@sleep 5
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/weechat-curses.1 ${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|