58 lines
1.4 KiB
Makefile
58 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.25 2004/12/16 00:31:22 alek Exp $
|
|
# Original from: Timo Sirainen <tss@iki.fi>
|
|
|
|
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
|
|
|
|
COMMENT= "modular IRC client with many features (ipv6,socks,proxy)"
|
|
|
|
DISTNAME= irssi-0.8.9
|
|
CATEGORIES= net
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/files/ \
|
|
http://nl.irssi.org/files/ \
|
|
http://fi.irssi.org/files/ \
|
|
http://no.irssi.org/files/ \
|
|
http://de.irssi.org/files/ \
|
|
http://uk.irssi.org/files/ \
|
|
http://pl.irssi.org/files/ \
|
|
http://us.irssi.org/files/
|
|
|
|
HOMEPAGE= http://www.irssi.org/
|
|
|
|
MAINTAINER= Reinhard J. Sammer <reinhard@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c crypto m ncurses perl ssl util
|
|
|
|
LIB_DEPENDS+= glib.1.2,gmodule::devel/glib
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
CONFIGURE_ARGS+= --datadir=${PREFIX}/share/doc --enable-ipv6 \
|
|
--with-proxy --enable-perl=yes --with-included-gettext \
|
|
--with-perl-lib=${PREFIX}/libdata/perl5/site_perl --with-glib1
|
|
|
|
FLAVORS= socks
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Msocks}
|
|
CONFIGURE_ARGS+= --with-socks
|
|
BUILD_DEPENDS+= ::security/dante
|
|
.endif
|
|
|
|
SAMPLE= default.theme colorless.theme
|
|
|
|
pre-configure:
|
|
@perl -pi -e 's,doc/irssi,irssi,g' ${WRKSRC}/docs/Makefile.in
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/irssi
|
|
cd ${WRKDIST} && ${INSTALL_DATA} ${SAMPLE} \
|
|
${PREFIX}/share/examples/irssi
|
|
|
|
.include <bsd.port.mk>
|