mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
9250d94365
It brings bison as a build dependency in case it is set the following way: USES= bison or USES= bison:build it brings bison as a run dependency in case it is set the following way: USES= bison:run it brings bison both as a run and build dependency in case it the set the following way: USES= bison:both While here trim some headers Convert some USE_GNOME= gnomehack to USES= pathfix
84 lines
2.6 KiB
Makefile
84 lines
2.6 KiB
Makefile
# Created by: Evgueni V. Gavrilov <aquatique@rusunix.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ircd
|
|
PORTVERSION= 7.2.4
|
|
CATEGORIES= russian irc
|
|
MASTER_SITES= SF/${PORTNAME}-hybrid-ru/${PORTNAME}-hybrid-ru/${PORTNAME}-hybrid-ru-${PORTVERSION} \
|
|
ftp://rusunix.org/pub/FreeBSD/distfiles/
|
|
|
|
PKGNAMESUFFIX= -hybrid
|
|
DISTNAME= ircd-hybrid-ru-${PORTVERSION}
|
|
|
|
MAINTAINER= rodrigo@bebik.net
|
|
COMMENT= Russian version of well known hybrid IRC server
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
CONFLICTS= ircd-[0-9]*
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX}-ru
|
|
USE_OPENSSL= yes
|
|
USES= bison
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/ircd-hybrid-ru
|
|
|
|
USERS= ircdru
|
|
GROUPS= ircdru
|
|
|
|
MAN8= ircd.8
|
|
|
|
.if defined(WITH_SMALL_NET)
|
|
CONFIGURE_ARGS+=-enable-small-net
|
|
.endif
|
|
|
|
.if defined(WITH_SYSLOG)
|
|
CONFIGURE_ARGS+=--enable-syslog=\"kill squit connect users oper\"
|
|
.endif
|
|
|
|
.if defined(NICKLENGTH)
|
|
CONFIGURE_ARGS+=--with-nicklen=${NICKLENGTH}
|
|
.endif
|
|
|
|
.if defined(TOPICLENGTH)
|
|
CONFIGURE_ARGS+=--with-topiclen=${TOPICLENGTH}
|
|
.endif
|
|
|
|
.if defined(MAXCONN)
|
|
CONFIGURE_ARGS+=--with-maxconn=${MAXCONN}
|
|
.endif
|
|
|
|
pre-extract:
|
|
@${ECHO_MSG} "* * * Build options for ircd-hybrid-ru * * *"
|
|
@${ECHO_MSG} "Issue make WITH_SMALL_NET=yes to build server optimized for small network"
|
|
@${ECHO_MSG} "Issue make WITH_SYSLOG=yes to enable logging via syslogd"
|
|
@${ECHO_MSG} "You can define maximum nick length. For example make NICKLENGTH=46 (default is 30)"
|
|
@${ECHO_MSG} "You can define maximum topic length. For example make TOPICLENGTH=254 (default is 120; maximum is 390)"
|
|
@${ECHO_MSG} "You can define maximum number of connections for ircd. For example make MAXCONN=512"
|
|
|
|
post-extract:
|
|
@${CP} ${WRKSRC}/contrib/m_ojoin.c ${WRKSRC}/modules/
|
|
@${CP} ${WRKSRC}/contrib/m_force.c ${WRKSRC}/modules/
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,-g -O2,-O2,' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's,"-g","",' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's,ac_cv_prog_cc_g=yes,ac_cv_prog_cc_g=no,' ${WRKSRC}/configure
|
|
|
|
pre-install:
|
|
@${REINPLACE_CMD} -e 's,ircd/etc/codepage,etc/ircd-hybrid-ru/codepage,' ${WRKSRC}/etc/example.conf
|
|
@${REINPLACE_CMD} -e 's,/ircd/modules,/lib/ircd-hybrid-ru-modules,' ${WRKSRC}/etc/example.conf
|
|
|
|
post-install:
|
|
@${INSTALL_SCRIPT} -m 555 ${FILESDIR}/ircd-hybrid-ru.sh.sample ${PREFIX}/etc/rc.d
|
|
@${CHOWN} -R ${USERS}:${GROUPS} ${PREFIX}/etc/ircd-hybrid-ru
|
|
@${CHOWN} -R ${USERS}:${GROUPS} /var/log/ircd-hybrid-ru
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/RELNOTE* ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/server-version-info ${DOCSDIR}
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|