blob: b4629f10da7a339d06fd72cd1688cb4e3181deec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
PORTNAME= irssi
PORTVERSION= 1.2.2
PORTREVISION= 2
PORTEPOCH= 2
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
# Until upstream makes a new release disable cpe
USES= autoreconf cpe gettext-runtime gmake gnome libtool localbase \
ncurses pkgconfig tar:xz
USE_GNOME= glib20
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
OPTIONS_DEFINE= BOT CAPSICUM 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
OTR_DESC= OTR (off-the-record) support
OTR_CONFIGURE_ON= --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= True color support
TRUECOLOR_CONFIGURE_ENABLE= true-color
UTF8PROC_DESC= utf8proc support
UTF8PROC_LIB_DEPENDS= libutf8proc.so:textproc/utf8proc
UTF8PROC_CONFIGURE_ENABLE= utf8proc
.if defined(WITHOUT_SSL)
CONFIGURE_ARGS+= --disable-ssl
.else
USES+= ssl
.endif
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>
|