mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
b2c4fbb77a
Introduces the UTF-32 library pcre32 Bump PORTREVISION in dependent ports
94 lines
2.3 KiB
Makefile
94 lines
2.3 KiB
Makefile
# New ports collection makefile for: MySQL Workbench
|
|
# Date created: 21 June 2009
|
|
# Whom: Maxim Ignatenko
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mysql-workbench-oss
|
|
PORTVERSION?= 5.1.16
|
|
PORTREVISION= 8
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_MYSQL}
|
|
MASTER_SITE_SUBDIR= MySQLGUITools
|
|
PKGNAMESUFFIX?= 51
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= The MySQL Workbench
|
|
|
|
LIB_DEPENDS+= gtkmm-2.4:${PORTSDIR}/x11-toolkits/gtkmm24 \
|
|
pcre.3:${PORTSDIR}/devel/pcre \
|
|
xml2.5:${PORTSDIR}/textproc/libxml2 \
|
|
uuid:${PORTSDIR}/misc/e2fsprogs-libuuid \
|
|
zip:${PORTSDIR}/archivers/libzip \
|
|
sigc-2.0:${PORTSDIR}/devel/libsigc++20 \
|
|
cairo.2:${PORTSDIR}/graphics/cairo
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
OPTIONS_DEFINE= PYTHON
|
|
|
|
USE_AUTOTOOLS= autoheader autoconf automake aclocal libtool
|
|
AUTOMAKE_ARGS= --add-missing --foreign
|
|
ACLOCAL_ARGS=
|
|
AUTOCONF_ARGS=
|
|
USE_LDCONFIG= ${PREFIX}/lib/mysql-workbench
|
|
SUBDIRS= ext/yassl/taocrypt ext/yassl .
|
|
USE_DOS2UNIX= yes
|
|
DOS2UNIX_REGEX= .*ext/yassl/.*(Makefile.am|configure.in)
|
|
AUTOTOOLSFILES= configure.in
|
|
|
|
USE_GL= gl glu
|
|
USE_GNOME= libglade2 intltool libgnome gtk20 pango orbit2
|
|
USE_LUA= 5.1
|
|
LUA_COMPS= lua
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PKGNAMESUFFIX} == 51
|
|
CONFLICTS= mysql-workbench-oss52*
|
|
EXTRA_PATCHES= ${PATCHDIR}/extra-51-modules__wb.utils__Makefile.am
|
|
.endif
|
|
|
|
DATADIR= ${PREFIX}/share/mysql-workbench
|
|
|
|
CXXFLAGS+= -I${LOCALBASE}/include -I${LUA_INCDIR}
|
|
LDFLAGS+= -L${LOCALBASE}/lib -L${LUA_LIBDIR}
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= GNOME2_DIR="${LOCALBASE}" LUA_LIBS="-llua"
|
|
|
|
USE_MYSQL= client
|
|
DEFAULT_MYSQL_VER= 51
|
|
IGNORE_WITH_MYSQL= 41 55
|
|
|
|
.if ${PORT_OPTIONS:MPYTHON}
|
|
CONFIGURE_ARGS+= --enable-python-modules
|
|
.endif
|
|
|
|
run-autotools-aclocal:
|
|
.for dir in ${SUBDIRS}
|
|
@(cd ${WRKSRC}/${dir} && \
|
|
${SETENV} ${AUTOTOOLS_ENV} ${ACLOCAL} ${ACLOCAL_ARGS})
|
|
.endfor
|
|
|
|
run-autotools-autoheader:
|
|
.for dir in ${SUBDIRS}
|
|
@(cd ${WRKSRC}/${dir} && if ${GREP} "^AM_CONFIG_HEADER" configure.in \
|
|
>/dev/null; then ${SETENV} ${AUTOTOOLS_ENV} ${AUTOHEADER} \
|
|
${AUTOHEADER_ARGS}; fi)
|
|
.endfor
|
|
|
|
run-autotools-automake:
|
|
.for dir in ${SUBDIRS}
|
|
@(cd ${WRKSRC}/${dir} && \
|
|
${SETENV} ${AUTOTOOLS_ENV} ${AUTOMAKE} ${AUTOMAKE_ARGS})
|
|
.endfor
|
|
|
|
run-autotools-autoconf:
|
|
.for dir in ${SUBDIRS}
|
|
@(cd ${WRKSRC}/${dir} && \
|
|
${SETENV} ${AUTOTOOLS_ENV} ${AUTOCONF} ${AUTOCONF_ARGS})
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|