blob: 863fa40092df23458c0611d4bc06c2ddd79452b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= libntlm
PORTVERSION= 1.3
CATEGORIES= security
MASTER_SITES= http://www.nongnu.org/libntlm/releases/
MAINTAINER= jochen@daten-chaos.de
COMMENT= Library that implement Microsoft's NTLM authentication
LICENSE= LGPL21
USES= pathfix pkgconfig
USE_AUTOTOOLS= libtool
USE_LDCONFIG= yes
PORTDOCS= AUTHORS ChangeLog NEWS README THANKS
NO_STAGE= yes
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|