mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
819f25b36d
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)
31 lines
625 B
Makefile
31 lines
625 B
Makefile
# Created by: Ashish SHUKLA <ashish@FreeBSD.org>
|
|
|
|
PORTNAME= libasr
|
|
PORTVERSION= 1.0.4
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://www.opensmtpd.org/archives/
|
|
|
|
MAINTAINER= fluffy@FreeBSD.org
|
|
COMMENT= Asynchronous DNS resolver library
|
|
|
|
LICENSE= ISCL BSD4CLAUSE BSD3CLAUSE BSD2CLAUSE
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE= ${WRKSRC}/LICENCE
|
|
|
|
USES= cpe groff libtool
|
|
|
|
CONFLICTS= libasr-devel
|
|
|
|
CPE_VENDOR= openbsd
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS= --with-mantype="man"
|
|
|
|
post-patch:
|
|
# Obsoleted on RFC 2553bis-02
|
|
${REINPLACE_CMD} 's|EAI_NODATA|EAI_NONAME|g' \
|
|
${WRKSRC}/src/getaddrinfo_async.c
|
|
|
|
.include <bsd.port.mk>
|