diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2003-12-13 10:21:14 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2003-12-13 10:21:14 +0000 |
commit | 64c4818f8e2cf14bd8766bb5bd48e2dc23d5ebfb (patch) | |
tree | 00786497134cc3d0118f5683e7096193cb2831b6 /databases/qt-mysql-plugin/files/Makefile.bsd | |
parent | - Unbreak on -current (diff) |
- Update QT to version 3.2.3.
- s/USE_MESA/USE_GL
- Get rid of the nvidia-driver warning
- Unhook database-plugin ports from the main port.
- Use and depend on devel/qmake.
Thanks to Mikhail Teterin <mi+kde@aldan.algebra.com> for ideas
and code for the dependency on the qmake-port and the database-
plugins.
Approved by: Maintainer (for qt-mysql-plugins)
Notes
Notes:
svn path=/head/; revision=95714
Diffstat (limited to 'databases/qt-mysql-plugin/files/Makefile.bsd')
-rw-r--r-- | databases/qt-mysql-plugin/files/Makefile.bsd | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/databases/qt-mysql-plugin/files/Makefile.bsd b/databases/qt-mysql-plugin/files/Makefile.bsd new file mode 100644 index 000000000000..2f6cd74f5939 --- /dev/null +++ b/databases/qt-mysql-plugin/files/Makefile.bsd @@ -0,0 +1,19 @@ +DB=${PLUGIN:T} + +SHLIB_NAME= libqsql${DB}.so + +VPATH= ${PLUGIN}:${DRIVER} +CXXFLAGS+= -I${PLUGIN} -I${DRIVER} \ + -I${LOCALBASE}/include/mysql \ + -I${LOCALBASE}/include/postgresql/server \ + -I${LOCALBASE}/include -I${X11BASE}/include + +SRCS= qsql_${DB}.cpp main.cpp +LIBDIR= ${PREFIX}/lib/plugins/sqldrivers + +${LIBDIR}: + mkdir -p ${LIBDIR} + +beforeinstall: ${LIBDIR} + +.include <bsd.lib.mk> |