freebsd-ports/security/gss/Makefile
Stefan Eßer 819f25b36d */*: Remove redundant '-[0-9]*' from CONFLICTS
The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").

Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".

Approved by:	portmgr (blanket)
2021-10-29 11:50:18 +02:00

38 lines
772 B
Makefile

# Created by: ijliao
PORTNAME= gss
PORTVERSION= 1.0.3
PORTREVISION= 2
CATEGORIES= security
MASTER_SITES= GNU
MAINTAINER= ports@FreeBSD.org
COMMENT= GNU Generic Security Service Library
LIB_DEPENDS= libshishi.so:security/shishi
CONFLICTS= heimdal
USES= libtool localbase:ldflags 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
post-configure:
@cd ${WRKSRC}/doc && ${TOUCH} Makefile*
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>