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)
39 lines
840 B
Makefile
39 lines
840 B
Makefile
# Created by: Jim Ohlstein <jim@ohlste.in>
|
|
|
|
PORTNAME= libdrizzle
|
|
PORTVERSION= 5.1.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://launchpadlibrarian.net/138246183/
|
|
PKGNAMESUFFIX= -redux
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
|
EXTRACT_ONLY= libdrizzle-5.1.4.tar.gz
|
|
|
|
MAINTAINER= jim@ohlste.in
|
|
COMMENT= Client and protocol library for the Drizzle database
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake libtool ssl
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFLICTS= libdrizzle
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
MASTER_SITES+= http://launchpadlibrarian.net/138246206/
|
|
DISTFILES+= libdrizzle.pdf
|
|
PLIST_SUB+= PORTDOCS=""
|
|
.endif
|
|
|
|
post-install:
|
|
.if !empty(PORT_OPTIONS:MDOCS)
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${DISTDIR}/libdrizzle.pdf ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|