diff options
author | makc <makc@FreeBSD.org> | 2014-01-07 00:16:52 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2014-01-07 00:16:52 +0800 |
commit | 8fb80a5f23ee7dd03872809dbd790ea4f90c6ff5 (patch) | |
tree | e9ca925ce8537078366a02e4f615c5847746c0b5 /databases/qt4-sqlite3-plugin | |
parent | 5b251e589961b796d7eafa23de894f129f92bf6d (diff) | |
download | freebsd-ports-gnome-8fb80a5f23ee7dd03872809dbd790ea4f90c6ff5.tar.gz freebsd-ports-gnome-8fb80a5f23ee7dd03872809dbd790ea4f90c6ff5.tar.zst freebsd-ports-gnome-8fb80a5f23ee7dd03872809dbd790ea4f90c6ff5.zip |
In preparation for Qt 5 ports:
Mk/Uses/qmake.mk:
- Add support for out-of-source builds
- Add support for Qt 5 ports
- Respect WITH_DEBUG
Mk/bsd.qt.mk:
- Massive rework for Qt 5 ports
- Remove '-phonon' from global configure args, thus allow qt4-designer and
qt4-qtconfig to be built without Phonon support [1]
devel/qmake4:
- Improve mkspecs for gcc (mainly sync with linux version) and clang
devel/qt4-corelib:
- Convert to USES=iconv
- Remove ancient patch
devel/qt4-designer:
- Remove reference to WRKSRC from installed pkgconfig files [2]
- Don't build Qt Designer plugin for Phonon from outdated Qt sources.
Separate port for plugin will be committed later
devel/qt4-assistant-adp, devel/qt4-libqtassistantclient:
- Convert to USES=qmake
Clean up Qt4 ports:
- Update comments
- Update description; use common description
- Consistently use QT_INCDIR, QT_LIBDIR, etc.
- Use options helpers
- Convert to new LIB_DEPENDS syntax
- Update DESKTOP_ENTRIES to avoid conflicts with Qt 5 ports
- Rename/move several ports for unification with Qt 5 ports
PR: ports/184620 [1]
Reported by: Kevin Zheng <kevinz5000@gmail.com>
PR: ports/181141 [2]
Reported by: thierry
PR: ports/185101
Exp-run by: bdrewery
This is mostly solely avilla's work in area51, kudos to him! And a couple
commits from myself, so you know who's collecting pointyhats :)
Diffstat (limited to 'databases/qt4-sqlite3-plugin')
-rw-r--r-- | databases/qt4-sqlite3-plugin/Makefile | 11 | ||||
-rw-r--r-- | databases/qt4-sqlite3-plugin/pkg-descr | 4 |
2 files changed, 4 insertions, 11 deletions
diff --git a/databases/qt4-sqlite3-plugin/Makefile b/databases/qt4-sqlite3-plugin/Makefile index 4ae7a0571243..add63a33b0f3 100644 --- a/databases/qt4-sqlite3-plugin/Makefile +++ b/databases/qt4-sqlite3-plugin/Makefile @@ -6,16 +6,13 @@ DISTVERSION= ${QT4_VERSION} CATEGORIES= databases MAINTAINER= kde@FreeBSD.org -COMMENT= Qt SQLite 3.x database plugin +COMMENT= Qt SQLite 3 database plugin DB= sqlite -DISTINFO_FILE= ${PORTSDIR}/devel/qt4/distinfo - -LIB_DEPENDS+= libsqlite3.so:${PORTSDIR}/databases/sqlite3 USE_QT4= moc_build sql -QT_NONSTANDARD= yes QT_DIST= yes +USE_SQLITE= 3 DRIVER= src/sql/drivers/${DB} PLUGIN= src/plugins/sqldrivers/${DB} @@ -25,12 +22,12 @@ EXTRACT_AFTER_ARGS?= ${DISTNAME}/${DRIVER} ${DISTNAME}/${PLUGIN} \ MAKEFILE= ${FILESDIR}/Makefile.bsd MAKE_ENV+= DB="${DB}" DRIVER="${DRIVER}" MOC="${MOC}" \ PLUGIN="${PLUGIN}" \ - PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" \ QT_INCDIR="${QT_INCDIR}" \ QT_LIBDIR="${QT_LIBDIR}" PLIST_SUB= DB=${DB} +EXTRA_PATCHES= # empty + SQL_PLUGINDIR= ${PREFIX}/${QT_PLUGINDIR_REL}/sqldrivers do-install: diff --git a/databases/qt4-sqlite3-plugin/pkg-descr b/databases/qt4-sqlite3-plugin/pkg-descr deleted file mode 100644 index f1d749e58a5c..000000000000 --- a/databases/qt4-sqlite3-plugin/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -The SQLite Plugin from Qt 4, which provides an easy access method from -within Qt applications. - -WWW: http://doc.trolltech.com/4.0/sql.html |