blob: 4a1e0aa8131523bba0c0ee9d1bdd263fc796111a (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= gss
PORTVERSION= 1.0.3
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= GNU
MAINTAINER= johans@FreeBSD.org
COMMENT= GNU Generic Security Service Library
LIB_DEPENDS= libshishi.so:security/shishi
CONFLICTS= heimdal-[0-9]*
USES= libtool pathfix pkgconfig perl5
USE_PERL5= build
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-kerberos5
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
OPTIONS_DEFINE= DOCS NLS
OPTIONS_SUB= yes
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
INFO= gss
PORTDOCS= gss.html gss.ps gss.pdf
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
post-configure:
@cd ${WRKSRC}/doc && ${TOUCH} Makefile*
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>
|