ports/dns/c-ares/Makefile
Stefan Eßer bcaf25a8c8 Fix CONFLICTS entries of multiple ports
There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.

This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.

Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port
cannot conflict with itself (due to logic in bsd.port.mk that
supresses the pattern match result in that case).

A few ports that set the conflicts variables depending on complex
conditions (e.g. port options), have been left unmodified, despite
probably containing outdated package names.

These changes should only affect the installation of locally built
ports, not the package building with poudriere. They should give an
early indication of the install conflict in cases where currently
the pkg command aborts an installation when it detects that an
existing file would be overwritten,

Approved by:	portmgr (implicit)
2022-01-10 16:15:39 +01:00

44 lines
1.1 KiB
Makefile

# Created by: roam@FreeBSD.org
PORTNAME= c-ares
PORTVERSION= 1.17.2
CATEGORIES= dns
MASTER_SITES= https://c-ares.org/download/ \
https://c-ares.haxx.se/download/ \
ZI
MAINTAINER= zi@FreeBSD.org
COMMENT= Asynchronous DNS resolver library
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.md
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-werror
INSTALL_TARGET= install-strip
SSP_UNSAFE= Refuses -l in LDFLAGS
USES= libtool pathfix compiler:c++11-lang gmake
USE_LDCONFIG= yes
PROGRAMS= acountry adig ahost
OPTIONS_DEFINE= CONFIG_INFO DEBUG HIDE_SYMBOLS OPTIMIZED_CFLAGS
OPTIONS_DEFAULT= CONFIG_INFO HIDE_SYMBOLS
CONFIG_INFO_DESC= Add the ares_config_info patch
HIDE_SYMBOLS_DESC= Hide internal library symbols
OPTIMIZED_CFLAGS_DESC= Build with compiler optimizations
CONFLICTS= py*-ripe.atlas.tools
MAKE_JOBS_UNSAFE= yes
CONFIG_INFO_EXTRA_PATCHES= ${FILESDIR}/ares-config-info.patch
DEBUG_CONFIGURE_ENABLE= debug
HIDE_SYMBOLS_CONFIGURE_ENABLE= symbol-hiding
OPTIMIZED_CFLAGS_CONFIGURE_ENABLE= optimize
post-install:
${INSTALL_PROGRAM} ${PROGRAMS:S@^@${WRKSRC}/src/tools/.libs/@} ${STAGEDIR}${PREFIX}/bin/
.include <bsd.port.mk>