2007-12-17 03:48:51 +00:00
|
|
|
# New ports collection makefile for: bip
|
|
|
|
# Date created: 23 October 2007
|
|
|
|
# Whom: Chess Griffin <chess@chessgriffin.com>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= bip
|
2009-09-15 23:55:47 +00:00
|
|
|
PORTVERSION= 0.8.2
|
2007-12-17 03:48:51 +00:00
|
|
|
CATEGORIES= irc
|
2007-12-23 02:56:51 +00:00
|
|
|
MASTER_SITES= http://bip.t1r.net/downloads/ \
|
|
|
|
http://distfiles.gentoo.org/distfiles/ \
|
|
|
|
LOCAL/beech
|
2007-12-17 03:48:51 +00:00
|
|
|
|
2009-11-27 22:52:30 +00:00
|
|
|
MAINTAINER= sylvio@FreeBSD.org
|
2007-12-17 03:48:51 +00:00
|
|
|
COMMENT= A simple IRC proxy with SSL support
|
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_GMAKE= yes
|
|
|
|
INSTALL_TARGET= SUBDIR=src install-exec
|
|
|
|
|
|
|
|
USE_OPENSSL= yes
|
|
|
|
|
|
|
|
PLIST_FILES= bin/bip bin/bipmkpw
|
|
|
|
SUB_FILES= pkg-message
|
2008-02-18 03:30:08 +00:00
|
|
|
MAN1= bip.1 bipmkpw.1
|
|
|
|
MAN5= bip.conf.5
|
|
|
|
|
|
|
|
PORTDOCS= AUTHORS BUGS ChangeLog NEWS README TODO
|
2007-12-17 03:48:51 +00:00
|
|
|
|
|
|
|
PORTEXAMPLES= bip.conf bip.vim
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
post-install:
|
|
|
|
@cd ${WRKSRC} && ${INSTALL_MAN} ${MAN1} ${MANPREFIX}/man/man1
|
2008-02-18 03:30:08 +00:00
|
|
|
@cd ${WRKSRC} && ${INSTALL_MAN} ${MAN5} ${MANPREFIX}/man/man5
|
2007-12-17 03:48:51 +00:00
|
|
|
|
|
|
|
.if !defined(NOPORTDOCS)
|
2009-09-15 23:55:47 +00:00
|
|
|
@${MKDIR} ${DOCSDIR}
|
|
|
|
.for docs in ${PORTDOCS}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
|
|
|
|
.endfor
|
2007-12-17 03:48:51 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(NOPORTEXAMPLES)
|
2009-09-15 23:55:47 +00:00
|
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
|
|
.for examples in ${PORTEXAMPLES}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/samples/${examples} ${EXAMPLESDIR}
|
|
|
|
.endfor
|
2007-12-17 03:48:51 +00:00
|
|
|
.endif
|
|
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|