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)
29 lines
581 B
Makefile
29 lines
581 B
Makefile
# Created by: Geoff Garside
|
|
|
|
PORTNAME= rabbitmq-c
|
|
PORTVERSION= 0.10.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= net
|
|
PKGNAMESUFFIX= -devel
|
|
|
|
MAINTAINER= dch@FreeBSD.org
|
|
COMMENT= RabbitMQ C AMQP client library
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE-MIT
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}simplejson>=2.0:devel/py-simplejson@${PY_FLAVOR}
|
|
|
|
CONFLICTS= rabbitmq-c
|
|
|
|
USES= cmake pathfix python ssl
|
|
USE_GITHUB= yes
|
|
USE_LDCONFIG= yes
|
|
GH_ACCOUNT= alanxz
|
|
|
|
OPTIONS_DEFINE= POPT
|
|
OPTIONS_SUB= yes
|
|
POPT_DESC= Popt support in tools
|
|
POPT_LIB_DEPENDS= libpopt.so:devel/popt
|
|
|
|
.include <bsd.port.mk>
|