mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
4e2b644c7e
- Removed dead mirror PR: ports/142246 Submitted by: Maarten de Vries <mdv@unsavoury.net> (maintainer)
47 lines
1.0 KiB
Makefile
47 lines
1.0 KiB
Makefile
# New ports collection makefile for: ScrollZ
|
|
# Date created: 10 Aug 1999
|
|
# Whom: Will Andrews <andrews@technologist.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= scrollz
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= irc ipv6
|
|
MASTER_SITES= http://scrollz.lysergide.net/ScrollZ/source/ \
|
|
http://www.xs4all.nl/~netraam/ScrollZ/source/
|
|
DISTNAME= ScrollZ-${PORTVERSION}
|
|
|
|
MAINTAINER= mdv@unsavoury.net
|
|
COMMENT= Enhanced ircII client that supports scripts, colors, and more
|
|
|
|
USE_GMAKE= yes
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-ipv6 --enable-regexp
|
|
|
|
MAKE_ENV+= IRCLIB="${PREFIX}/share/scrollz"
|
|
|
|
PLIST_SUB+= SCROLLZ_VER="${PORTVERSION}"
|
|
|
|
MAN1= scrollz.1
|
|
|
|
.if defined(WITH_SSL)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libgnutls.a:${PORTSDIR}/security/gnutls
|
|
LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls
|
|
CONFIGURE_ARGS+= --with-ssl
|
|
.endif
|
|
|
|
.if defined(WITH_OPENSSL)
|
|
CONFIGURE_ARGS+= --with-openssl
|
|
.endif
|
|
|
|
pre-build:
|
|
.if !defined(BATCH)
|
|
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${CC} ${CFLAGS} -o SZdist SZdist.c)
|
|
@(cd ${WRKSRC}; ./SZdist)
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|