forked from Lainports/freebsd-ports
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)
28 lines
529 B
Makefile
28 lines
529 B
Makefile
# Created by: Nikos Ntarmos <ntarmos@ceid.upatras.gr>
|
|
|
|
PORTNAME= libconfig
|
|
PORTVERSION= 1.7.2
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= ntarmos@ceid.upatras.gr
|
|
COMMENT= Simple library for manipulating structured configuration files
|
|
|
|
LICENSE= LGPL21
|
|
|
|
BUILD_DEPENDS= makeinfo:print/texinfo
|
|
|
|
USES= autoreconf libtool pathfix
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
|
|
USE_GITHUB= YES
|
|
GH_ACCOUNT= hyperrealm
|
|
|
|
CONFLICTS= wand-libconfig
|
|
|
|
INFO= libconfig
|
|
|
|
.include <bsd.port.mk>
|