mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
25 lines
630 B
Makefile
25 lines
630 B
Makefile
# $FreeBSD: head/Mk/Uses/firebird.mk 419511 2016-08-03 12:09:37Z mat $
|
|
#
|
|
# Provide support for Firebird
|
|
# Feature: firebird
|
|
# Usage: USES= firebird[:version]
|
|
# MAINTAINER: ports@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_FIREBIRD_MK)
|
|
_INCLUDE_USES_FIREBIRD_MK= yes
|
|
|
|
.if !empty(firebird_ARGS)
|
|
FIREBIRD_VER= ${firebird_ARGS}
|
|
.endif
|
|
|
|
FIREBIRD_VER?= ${FIREBIRD_DEFAULT:S/.//}
|
|
|
|
# When adding a version, please keep the comment in
|
|
# Mk/bsd.default-versions.mk in sync.
|
|
.if ${FIREBIRD_VER} == 25
|
|
LIB_DEPENDS+= libfbclient.so:databases/firebird25-client
|
|
.else
|
|
IGNORE= cannot install: unknown Firebird version: ${FIREBIRD_VER}
|
|
.endif
|
|
.endif
|