blob: 653cd4656e525d9d858a7c8182e8e653e25fc849 (
plain) (
blame)
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
|
# Ports collection makefile for: Solid-IRCd
# Date created: 26 May 2005
# Whom: mj <systemoperator@gmail.com>
#
# $FreeBSD$
#
PORTNAME= solid-ircd
PORTVERSION= 3.4.8
CATEGORIES= irc
MASTER_SITES= SF/solidircd/Solid-Stable/solidircd-stable.${PORTVERSION}
DISTNAME= solidircd-stable3.4.8
MAINTAINER= systemoperator@gmail.com
COMMENT= Solid Internet Relay Chat Daemon based on bahamut IRCd
WRKSRC= ${WRKDIR}/solidircd-stable
USE_GMAKE= yes
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --prefix=${PREFIX}/${PORTNAME}
.if defined(WITHOUT_SSL)
CONFIGURE_ARGS+= --disable-openssl
.else
USE_OPENSSL= yes
.endif
.include <bsd.port.mk>
|