fa3a17c064
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories P-S. CR: D422 Approved by: portmgr (bapt)
33 lines
1 KiB
Makefile
33 lines
1 KiB
Makefile
# Created by: Dale Woolridge <dale.woolridge@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ucspi-proxy
|
|
PORTVERSION= 0.98
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://untroubled.org/ucspi-proxy/
|
|
|
|
MAINTAINER= dale.woolridge@gmail.com
|
|
COMMENT= Proxy program for UCSPI servers and clients
|
|
|
|
LIB_DEPENDS= libbg.so:${PORTSDIR}/devel/bglibs
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
BGLIBS_LIB= ${LOCALBASE}/lib/bglibs
|
|
BGLIBS_INCLUDE= ${LOCALBASE}/include/bglibs
|
|
|
|
PLIST_FILES= bin/ucspi-proxy bin/ucspi-proxy-log bin/ucspi-proxy-pop3 \
|
|
bin/ucspi-proxy-imap bin/ucspi-proxy-http-xlate \
|
|
man/man1/ucspi-proxy-http-xlate.1.gz \
|
|
man/man1/ucspi-proxy.1.gz
|
|
|
|
do-configure:
|
|
${ECHO_CMD} "${STAGEDIR}${PREFIX}/bin" > ${WRKSRC}/conf-bin
|
|
${ECHO_CMD} "${STAGEDIR}${MANPREFIX}/man" > ${WRKSRC}/conf-man
|
|
${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc
|
|
${ECHO_CMD} "${CC} ${STRIP} ${LDFLAGS}" > ${WRKSRC}/conf-ld
|
|
${ECHO_CMD} "${BGLIBS_INCLUDE}" > ${WRKSRC}/conf-bgincs
|
|
${ECHO_CMD} "${BGLIBS_LIB}" > ${WRKSRC}/conf-bglibs
|
|
|
|
.include <bsd.port.mk>
|