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)
24 lines
580 B
Makefile
24 lines
580 B
Makefile
# Created by: David Shane Holden <dpejesh@yahoo.com>
|
|
|
|
PORTVERSION= 2.1.1
|
|
PKGNAMESUFFIX= 2
|
|
|
|
.include "${.CURDIR}/../pacemaker1/Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --with-noarch-pkgconfigdir=${PREFIX}/libdata/pkgconfig
|
|
|
|
CONFLICTS+= pacemaker1
|
|
|
|
LIB_DEPENDS+= libffi.so:devel/libffi \
|
|
libgmp.so:math/gmp \
|
|
libhogweed.so:security/nettle \
|
|
libidn2.so:dns/libidn2 \
|
|
libnettle.so:security/nettle \
|
|
libp11-kit.so:security/p11-kit \
|
|
libpcre.so:devel/pcre \
|
|
libtasn1.so:security/libtasn1 \
|
|
libunistring.so:devel/libunistring
|
|
|
|
post-patch: post-patch-common
|
|
|
|
.include <bsd.port.mk>
|