summaryrefslogtreecommitdiff
path: root/x11/qt3-tools
diff options
context:
space:
mode:
authorskrll <skrll@pkgsrc.org>2002-01-07 08:09:16 +0000
committerskrll <skrll@pkgsrc.org>2002-01-07 08:09:16 +0000
commit9ae1408888d13d27d4a6ddd9f27f70a8d26a82ee (patch)
treed08935da13bf5034a7a5d29969d21cfa072b0059 /x11/qt3-tools
parent726dbe979449af24c7e295156f035c4834a04c4d (diff)
downloadpkgsrc-9ae1408888d13d27d4a6ddd9f27f70a8d26a82ee.tar.gz
Initial import of qt3-tools-3.0.1. A bunch of tools that form part of QT3.
Diffstat (limited to 'x11/qt3-tools')
-rw-r--r--x11/qt3-tools/DESCR5
-rw-r--r--x11/qt3-tools/Makefile37
-rw-r--r--x11/qt3-tools/PLIST35
-rw-r--r--x11/qt3-tools/buildlink.mk50
4 files changed, 127 insertions, 0 deletions
diff --git a/x11/qt3-tools/DESCR b/x11/qt3-tools/DESCR
new file mode 100644
index 00000000000..662341cbb2e
--- /dev/null
+++ b/x11/qt3-tools/DESCR
@@ -0,0 +1,5 @@
+Qt Designer accelerates GUI application development and maintenance by
+offering a WYSIWYG (What You See Is What You Get) drag and drop interface
+for UI creation and maintenance. Qt Designer employs a vendor neutral,
+XML-format for persistent storage, which simplifies the tasks involved
+with the creation and layout of dialogs.
diff --git a/x11/qt3-tools/Makefile b/x11/qt3-tools/Makefile
new file mode 100644
index 00000000000..cc906a56d46
--- /dev/null
+++ b/x11/qt3-tools/Makefile
@@ -0,0 +1,37 @@
+# $NetBSD: Makefile,v 1.1.1.1 2002/01/07 08:09:16 skrll Exp $
+#
+
+.include "../qt3-libs/Makefile.common"
+
+PKGNAME= qt3-tools-${QTVERSION}
+COMMENT= QT GUI (WYSIWYG) builder and other tools
+
+CONFIGURE_ARGS+= -I${BUILDLINK_QTDIR}/include \
+ -L${BUILDLINK_QTDIR}/lib
+
+USE_BUILDLINK_ONLY= yes
+BUILDLINK_DEPENDS.qt3-libs= qt3-libs-${QTVERSION}
+
+ALL_TARGET= sub-tools
+
+do-install:
+ ${MKDIR} ${QTPREFIX}/plugins/imageformats
+ ${LIBTOOL} ${INSTALL_DATA} ${WRKSRC}/plugins/imageformats/libqjpeg.la ${QTPREFIX}/plugins/imageformats
+ ${LIBTOOL} ${INSTALL_DATA} ${WRKSRC}/plugins/imageformats/libqmng.la ${QTPREFIX}/plugins/imageformats
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/bin/uic ${QTPREFIX}/bin
+ ${LIBTOOL} ${INSTALL_DATA} ${WRKSRC}/lib/libqui.la ${QTPREFIX}/lib
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/bin/designer ${QTPREFIX}/bin
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/lib/libeditor.la ${QTPREFIX}/lib
+ ${MKDIR} ${QTPREFIX}/plugins/designer
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/plugins/designer/libwizards.la ${QTPREFIX}/plugins/designer
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/plugins/designer/libcppeditor.la ${QTPREFIX}/plugins/designer
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/plugins/designer/libdlgplugin.la ${QTPREFIX}/plugins/designer
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/plugins/designer/librcplugin.la ${QTPREFIX}/plugins/designer
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/bin/assistant ${QTPREFIX}/bin
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/bin/linguist ${QTPREFIX}/bin
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/bin/qm2ts ${QTPREFIX}/bin
+ ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/bin/qtconfig ${QTPREFIX}/bin
+
+.include "../../x11/qt3-libs/buildlink.mk"
+.include "../../mk/x11.buildlink.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/x11/qt3-tools/PLIST b/x11/qt3-tools/PLIST
new file mode 100644
index 00000000000..7e29401155b
--- /dev/null
+++ b/x11/qt3-tools/PLIST
@@ -0,0 +1,35 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2002/01/07 08:09:16 skrll Exp $
+qt3/bin/assistant
+qt3/bin/designer
+qt3/bin/linguist
+qt3/bin/qm2ts
+qt3/bin/qtconfig
+qt3/bin/uic
+qt3/lib/libeditor.a
+qt3/lib/libeditor.la
+qt3/lib/libeditor.so
+qt3/lib/libeditor.so.1
+qt3/lib/libeditor.so.1.0
+qt3/lib/libqui.a
+qt3/lib/libqui.la
+qt3/lib/libqui.so
+qt3/lib/libqui.so.1
+qt3/lib/libqui.so.1.0
+qt3/plugins/designer/libdlgplugin.a
+qt3/plugins/designer/libdlgplugin.la
+qt3/plugins/designer/libdlgplugin.so
+qt3/plugins/designer/librcplugin.a
+qt3/plugins/designer/librcplugin.la
+qt3/plugins/designer/librcplugin.so
+qt3/plugins/designer/libwizards.a
+qt3/plugins/designer/libwizards.la
+qt3/plugins/designer/libwizards.so
+qt3/plugins/imageformats/libqjpeg.a
+qt3/plugins/imageformats/libqjpeg.la
+qt3/plugins/imageformats/libqjpeg.so
+qt3/plugins/imageformats/libqmng.a
+qt3/plugins/imageformats/libqmng.la
+qt3/plugins/imageformats/libqmng.so
+@dirrm qt3/plugins/imageformats
+@dirrm qt3/plugins/designer
+@dirrm qt3/plugins
diff --git a/x11/qt3-tools/buildlink.mk b/x11/qt3-tools/buildlink.mk
new file mode 100644
index 00000000000..767c5c9e426
--- /dev/null
+++ b/x11/qt3-tools/buildlink.mk
@@ -0,0 +1,50 @@
+# $NetBSD: buildlink.mk,v 1.1.1.1 2002/01/07 08:09:16 skrll Exp $
+#
+# This Makefile fragment is included by packages that use qt3-tools.
+#
+# To use this Makefile fragment, simply:
+#
+# (1) Optionally define BUILDLINK_DEPENDS.qt3-tools to the dependency
+# pattern for the version of qt3-tools desired.
+# (2) Include this Makefile fragment in the package Makefile,
+# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
+# search path, and
+# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
+# path.
+
+.if !defined(QT3_TOOLS_BUILDLINK_MK)
+QT3_TOOLS_BUILDLINK_MK= # defined
+
+.include "../../mk/bsd.buildlink.mk"
+
+BUILDLINK_DEPENDS.qt3-tools?= qt3-tools>=3.0.1
+DEPENDS+= ${BUILDLINK_DEPENDS.qt3-tools}:../../x11/qt3-tools
+
+EVAL_PREFIX+= BUILDLINK_PREFIX.qt3-tools=qt3-tools
+BUILDLINK_PREFIX.qt3-tools= ${X11PREFIX}
+BUILDLINK_FILES.qt3-tools= qt3/bin/assistant
+BUILDLINK_FILES.qt3-tools+= qt3/bin/designer
+BUILDLINK_FILES.qt3-tools+= qt3/bin/linguist
+BUILDLINK_FILES.qt3-tools+= qt3/bin/qm2ts
+BUILDLINK_FILES.qt3-tools+= qt3/bin/qtconfig
+BUILDLINK_FILES.qt3-tools+= qt3/bin/uic
+BUILDLINK_FILES.qt3-tools+= qt3/lib/libeditor.*
+BUILDLINK_FILES.qt3-tools+= qt3/lib/libqui.*
+BUILDLINK_FILES.qt3-tools+= qt3/plugins/designer/libdlgplugin.*
+BUILDLINK_FILES.qt3-tools+= qt3/plugins/designer/librcplugin.*
+BUILDLINK_FILES.qt3-tools+= qt3/plugins/designer/libwizards.*
+BUILDLINK_FILES.qt3-tools+= qt3/plugins/imageformats/libqjpeg.*
+BUILDLINK_FILES.qt3-tools+= qt3/plugins/imageformats/libqmng.*
+
+.include "../../x11/qt3-libs/buildlink.mk"
+
+CONFIGURE_ENV+= UIC="${BUILDLINK_QTDIR}/bin/uic"
+MAKE_ENV+= UIC="${BUILDLINK_QTDIR}/bin/uic"
+
+BUILDLINK_TARGETS.qt3-tools= qt3-tools-buildlink
+BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.qt3-tools}
+
+pre-configure: ${BUILDLINK_TARGETS.qt3-tools}
+qt3-tools-buildlink: _BUILDLINK_USE
+
+.endif # QT3_TOOLS_BUILDLINK_MK