0c92b616ea
Approved by: erwin (mentor, implicit)
109 lines
2.5 KiB
Makefile
109 lines
2.5 KiB
Makefile
# New ports collection makefile for: bitlbee
|
|
# Date created: 10 June 2003
|
|
# Whom: Peter van Dijk <peter@dataloss.nl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bitlbee
|
|
PORTVERSION= 1.2.1
|
|
CATEGORIES= irc
|
|
MASTER_SITES= http://get.bitlbee.org/src/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= brix
|
|
|
|
MAINTAINER= brix@FreeBSD.org
|
|
COMMENT= An IRC to other chat networks gateway
|
|
|
|
SUB_FILES= pkg-message
|
|
MAN5= bitlbee.conf.5
|
|
MAN8= bitlbee.8
|
|
PORTDOCS= AUTHORS CHANGES CREDITS FAQ README
|
|
PORTEXAMPLES= bitlbee.conf motd.txt
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= glib20
|
|
USE_RC_SUBR= bitlbee
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
OPTIONS= MSN "Enable MSN protocol support" On \
|
|
DEBUG "Create debuggable binary" Off \
|
|
OPENSSL "Use openssl rather than gnutls" Off \
|
|
IPV6 "Compile IPV6 support" On
|
|
|
|
CONFIGURE_ARGS= --config=/var/db/bitlbee --strip=0
|
|
|
|
BITLBEEUSER?= bitlbee
|
|
BITLBEEGROUP?= bitlbee
|
|
BITLBEEDIR?= /nonexistent
|
|
|
|
BITLBEEUID= 914
|
|
BITLBEEGID= ${BITLBEEUID}
|
|
|
|
PLIST_SUB= BITLBEEUSER=${BITLBEEUSER} \
|
|
BITLBEEGROUP=${BITLBEEGROUP}
|
|
|
|
SUB_LIST+= BITLBEEUSER=${BITLBEEUSER} \
|
|
BITLBEEGROUP=${BITLBEEGROUP} \
|
|
BITLBEEDIR=${BITLBEEDIR} \
|
|
BITLBEEUID=${BITLBEEUID} \
|
|
BITLBEEGID=${BITLBEEGID}
|
|
|
|
SUB_FILES+= pkg-install pkg-deinstall
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_MSN)
|
|
CONFIGURE_ARGS+=--msn=1
|
|
.else
|
|
CONFIGURE_ARGS+=--msn=0 --ssl=bogus
|
|
.endif
|
|
|
|
.if defined(WITH_OPENSSL)
|
|
CONFIGURE_ARGS+=--ssl=openssl
|
|
.else
|
|
CONFIGURE_ARGS+=--ssl=gnutls
|
|
LIB_DEPENDS+= gnutls.26:${PORTSDIR}/security/gnutls
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+=--debug=1
|
|
.endif
|
|
|
|
.if defined(WITHOUT_IPV6)
|
|
CONFIGURE_ARGS+=--ipv6=0
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} \
|
|
-e "s|^EFLAGS=|EFLAGS=${LDFLAGS}|" \
|
|
${WRKSRC}/configure
|
|
|
|
@${REINPLACE_CMD} \
|
|
-e "s:/etc/bitlbee/motd.txt:${PREFIX}/etc/bitlbee/motd.txt:" \
|
|
-e "s:/var/lib/bitlbee:/var/db/bitlbee:" \
|
|
${WRKSRC}/bitlbee.conf
|
|
@${REINPLACE_CMD} \
|
|
-e "s:/var/lib/bitlbee:/var/db/bitlbee:" \
|
|
${WRKSRC}/doc/bitlbee.8
|
|
|
|
pre-install:
|
|
@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/etc/bitlbee
|
|
${MKDIR} -m 0700 /var/db/bitlbee
|
|
${CHOWN} -R ${BITLBEEUSER}:${BITLBEEGROUP} /var/db/bitlbee
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S@^@${WRKSRC}/doc/@} ${DOCSDIR}
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${PORTEXAMPLES:S@^@${WRKSRC}/@} ${EXAMPLESDIR}
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|