30 lines
561 B
Makefile
30 lines
561 B
Makefile
|
# $OpenBSD: Makefile,v 1.1.1.1 2012/09/29 12:32:01 fgsch Exp $
|
||
|
|
||
|
COMMENT = lightweight irc server
|
||
|
|
||
|
DISTNAME = ngircd-19.2
|
||
|
|
||
|
CATEGORIES = net
|
||
|
|
||
|
HOMEPAGE = http://ngircd.barton.de/
|
||
|
|
||
|
# GPLv2
|
||
|
PERMIT_PACKAGE_CDROM = Yes
|
||
|
PERMIT_PACKAGE_FTP = Yes
|
||
|
PERMIT_DISTFILES_CDROM = Yes
|
||
|
PERMIT_DISTFILES_FTP = Yes
|
||
|
|
||
|
WANTLIB = c crypto ssl z
|
||
|
|
||
|
MASTER_SITES = ftp://ftp.berlios.de/pub/ngircd/ \
|
||
|
http://ngircd.barton.de/pub/ngircd/
|
||
|
|
||
|
REGRESS_DEPENDS = lang/expect \
|
||
|
${BASE_PKGPATH}
|
||
|
|
||
|
CONFIGURE_STYLE = gnu
|
||
|
CONFIGURE_ARGS += --with-openssl \
|
||
|
--enable-ipv6
|
||
|
|
||
|
.include <bsd.port.mk>
|