67a36fa558
PR: 240508 Submitted by: David O'Rourke <dor.bsd@xm0.uk> (maintainer)
72 lines
2.1 KiB
Makefile
72 lines
2.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= irssi
|
|
PORTVERSION= 1.2.2
|
|
PORTEPOCH= 1
|
|
CATEGORIES?= irc
|
|
MASTER_SITES= https://github.com/irssi/irssi/releases/download/${PORTVERSION}/
|
|
|
|
MAINTAINER= dor.bsd@xm0.uk
|
|
COMMENT= Modular IRC client with many features
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= autoreconf cpe gettext-runtime gmake gnome libtool ncurses \
|
|
pkgconfig tar:xz
|
|
USE_GNOME= glib20
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_DEFINE= BOT CAPSICUM DEBUG DOCS OTR PERL PROXY SOCKS TRUECOLOR UTF8PROC
|
|
OPTIONS_DEFAULT= BOT CAPSICUM PERL PROXY SOCKS TRUECOLOR
|
|
|
|
OPTIONS_SUB= yes
|
|
BOT_DESC= Bot support
|
|
BOT_CONFIGURE_WITH= bot
|
|
CAPSICUM_DESC= Capsicum support
|
|
CAPSICUM_CONFIGURE_WITH= capsicum
|
|
DEBUG_DESC= Build with debug symbols
|
|
DEBUG_VARS= WITH_DEBUG=yes
|
|
OTR_DESC= OTR (off-the-record) support
|
|
OTR_CONFIGURE_ON= --with-otr \
|
|
--with-libotr-inc-prefix=${PREFIX}/include
|
|
OTR_CONFIGURE_OFF= --with-otr=no
|
|
OTR_CONFIGURE_WITH= otr
|
|
OTR_LIB_DEPENDS= libgcrypt.so:security/libgcrypt \
|
|
libgpg-error.so:security/libgpg-error \
|
|
libotr.so:security/libotr
|
|
PERL_USES= perl5
|
|
PERL_CONFIGURE_ON= --with-perl-lib=site
|
|
PERL_CONFIGURE_OFF= --with-perl=no
|
|
PROXY_CONFIGURE_WITH= proxy
|
|
SOCKS_DESC= Socks proxy support
|
|
SOCKS_CONFIGURE_WITH= socks
|
|
TRUECOLOR_DESC= Truecolor (24bit) support
|
|
TRUECOLOR_CONFIGURE_ENABLE= true-color
|
|
UTF8PROC_DESC= utf8proc support
|
|
UTF8PROC_LIB_DEPENDS= libutf8proc.so:textproc/utf8proc
|
|
|
|
.if defined(WITHOUT_SSL)
|
|
CONFIGURE_ARGS+= --disable-ssl
|
|
.else
|
|
USES+= ssl
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr|${PREFIX}|' -e 's|/etc|${PREFIX}&|' \
|
|
${WRKSRC}/docs/irssi.1
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/irssi/modules
|
|
@${MV} ${STAGEDIR}${PREFIX}/etc/irssi.conf \
|
|
${STAGEDIR}${PREFIX}/etc/irssi.conf.sample
|
|
|
|
post-install-PERL-on:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Irssi/Irssi.so
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Irssi/Irc/Irc.so
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Irssi/TextUI/TextUI.so
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Irssi/UI/UI.so
|
|
|
|
.include <bsd.port.mk>
|