mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
7074d7f6ae
While here move some manpages to share/man
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
PORTNAME= cntlm
|
|
PORTVERSION= 0.92.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= NTLM / NTLM Session Response / NTLMv2 authenticating HTTP proxy
|
|
WWW= https://cntlm.sourceforge.net/
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_RC_SUBR= cntlm
|
|
USES= gmake
|
|
HAS_CONFIGURE= yes
|
|
ALL_TARGET= cntlm
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|$$(DESTDIR)/etc|$$(PREFIX)/etc| ; \
|
|
s|^CC=|CC?=| ; \
|
|
s| -Wno-unused-but-set-variable | | ; \
|
|
s| -pedantic | | ; \
|
|
s| -O3 | | ; \
|
|
s|@$$(CC)|$$(CC)| ; \
|
|
s|@if|if| ; \
|
|
s|-lpthread|-pthread|' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e \
|
|
's|^CCS=|#CCS=| ; \
|
|
s|mv |: | ; \
|
|
s|ln |: |' ${WRKSRC}/configure
|
|
|
|
post-build:
|
|
@${LN} -sf cntlm.conf ${WRKSRC}/doc/cntlm.conf.sample
|
|
|
|
do-install:
|
|
(cd ${WRKSRC} && ${INSTALL_PROGRAM} cntlm \
|
|
${STAGEDIR}${PREFIX}/bin)
|
|
(cd ${WRKSRC}/doc && ${INSTALL_DATA} cntlm.conf.sample \
|
|
${STAGEDIR}${PREFIX}/etc)
|
|
(cd ${WRKSRC}/doc && ${INSTALL_MAN} cntlm.1 \
|
|
${STAGEDIR}${PREFIX}/share/man/man1)
|
|
|
|
.include <bsd.port.mk>
|