mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-30 21:49:25 +00:00
f7017a32c2
PR: 23133 Submitted by: Ports Fury
33 lines
719 B
Makefile
33 lines
719 B
Makefile
# New ports collection makefile for: unixODBC
|
|
# Date created: May 11, 2000
|
|
# Whom: Nick Sayer <nsayer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= unixODBC
|
|
PORTVERSION= 1.8.13
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.unixodbc.org/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
USE_LIBTOOL= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.if defined(WITH_GUI)
|
|
USE_QT2= yes
|
|
CONFIGURE_ENV= MOC="${X11BASE}/bin/moc2"
|
|
CONFIGURE_ARGS= --enable-gui \
|
|
--with-qt-includes=${X11BASE}/include/qt2 \
|
|
--with-qt-libraries=${X11BASE}/lib \
|
|
--with-extra-includes=${LOCALBASE}/include \
|
|
--with-extra-libs=${LOCALBASE}/lib
|
|
PLIST_SUB= GUI:=""
|
|
.else
|
|
CONFIGURE_ARGS= --disable-gui
|
|
PLIST_SUB= GUI:="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|