1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00
freebsd-ports/irc/bip/Makefile
Dmitry Marakasov 6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
2011-09-23 22:26:39 +00:00

55 lines
1.2 KiB
Makefile

# New ports collection makefile for: bip
# Date created: 23 October 2007
# Whom: Chess Griffin <chess@chessgriffin.com>
#
# $FreeBSD$
#
PORTNAME= bip
PORTVERSION= 0.8.8
CATEGORIES= irc
MASTER_SITES= https://projects.duckcorp.org/attachments/download/39/
MAINTAINER= sylvio@FreeBSD.org
COMMENT= A simple IRC proxy with SSL support
LICENSE= GPLv2
GNU_CONFIGURE= yes
LDFLAGS+= -L${LOCALBASE}/lib
USE_GMAKE= yes
INSTALL_TARGET= SUBDIR=src install-exec
USE_OPENSSL= yes
PLIST_FILES= bin/bip bin/bipmkpw
SUB_FILES= pkg-message
MAN1= bip.1 bipmkpw.1
MAN5= bip.conf.5
PORTDOCS= AUTHORS BUGS ChangeLog NEWS README TODO
PORTEXAMPLES= bip.conf bip.vim
.include <bsd.port.pre.mk>
post-install:
@cd ${WRKSRC} && ${INSTALL_MAN} ${MAN1} ${MANPREFIX}/man/man1
@cd ${WRKSRC} && ${INSTALL_MAN} ${MAN5} ${MANPREFIX}/man/man5
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for docs in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
.endfor
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
.for examples in ${PORTEXAMPLES}
${INSTALL_DATA} ${WRKSRC}/samples/${examples} ${EXAMPLESDIR}
.endfor
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>