Repackage qt3 to separate mt better (common -base package for include/docs,
specific plugins for mt)
This commit is contained in:
parent
3329592a7b
commit
c11973f303
134
x11/qt3/Makefile
134
x11/qt3/Makefile
@ -1,4 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.22 2002/12/31 02:09:51 espie Exp $
|
# $OpenBSD: Makefile,v 1.23 2003/01/06 06:22:52 espie Exp $
|
||||||
# $FreeBSD: Makefile,v 1.33 1999/02/27 03:09:57 andreas Exp $
|
# $FreeBSD: Makefile,v 1.33 1999/02/27 03:09:57 andreas Exp $
|
||||||
|
|
||||||
COMMENT= C++ X11 GUI toolkit
|
COMMENT= C++ X11 GUI toolkit
|
||||||
@ -6,6 +6,7 @@ COMMENT-examples= examples and tutorial for qt3
|
|||||||
COMMENT-html= off-line html documentation for qt3
|
COMMENT-html= off-line html documentation for qt3
|
||||||
COMMENT-postgresql= PostgresSQL plugin for qt3
|
COMMENT-postgresql= PostgresSQL plugin for qt3
|
||||||
COMMENT-mysql= MySQL plugin for qt3
|
COMMENT-mysql= MySQL plugin for qt3
|
||||||
|
COMMENT-base= include and docs for qt3
|
||||||
|
|
||||||
VERSION= 1.1
|
VERSION= 1.1
|
||||||
DISTNAME= qt-x11-free-3.${VERSION}
|
DISTNAME= qt-x11-free-3.${VERSION}
|
||||||
@ -53,14 +54,15 @@ CONFIGURE_ARGS= -qt-gif -system-libmng -system-libpng -system-libjpeg \
|
|||||||
-L${WRKSRC}/lib \
|
-L${WRKSRC}/lib \
|
||||||
-L${LOCALBASE}/lib
|
-L${LOCALBASE}/lib
|
||||||
|
|
||||||
|
MULTI_PACKAGES+=-base -html
|
||||||
|
|
||||||
.if ${FLAVOR:L:Mmt}
|
.if ${FLAVOR:L:Mmt}
|
||||||
FULLPKGNAME= qt3-mt-${VERSION}
|
FULLPKGNAME= qt3-mt-${VERSION}
|
||||||
CONFIGURE_ARGS+=-thread
|
CONFIGURE_ARGS+=-thread
|
||||||
FLAVOR+=no_mysql no_postgresql
|
|
||||||
ALL_TARGET=sub-src sub-tools
|
ALL_TARGET=sub-src sub-tools
|
||||||
.else
|
.else
|
||||||
CONFIGURE_ARGS+=-no-thread
|
CONFIGURE_ARGS+=-no-thread
|
||||||
MULTI_PACKAGES= -examples -html
|
MULTI_PACKAGES+= -examples
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
# This is needed to find plugins
|
# This is needed to find plugins
|
||||||
@ -71,15 +73,10 @@ CONFIGURE_ARGS+= -prefix ${QT_LIBDIR}
|
|||||||
|
|
||||||
# For XFree 4
|
# For XFree 4
|
||||||
#CONFIGURE_ARGS+=-xft
|
#CONFIGURE_ARGS+=-xft
|
||||||
CONFIGURE_ENV= QTDIR="${WRKSRC}" KDEDIR="${LOCALBASE}"
|
CONFIGURE_ENV= QTDIR="${WRKSRC}" QT_INSTALL_PLUGINS="${QT_PLUGINSDIR}"
|
||||||
|
|
||||||
SUBPACKAGE?=
|
SUBPACKAGE?=
|
||||||
|
|
||||||
QTMODULES= styles tools kernel widgets dialogs \
|
|
||||||
iconview workspace network canvas table xml opengl sql
|
|
||||||
|
|
||||||
#EXTRA_SAMPLES+=box gear glpixmap overlay overlay_x11 sharedbox
|
|
||||||
|
|
||||||
LIB_DEPENDS=
|
LIB_DEPENDS=
|
||||||
BUILD_DEPENDS=::graphics/jpeg
|
BUILD_DEPENDS=::graphics/jpeg
|
||||||
|
|
||||||
@ -90,6 +87,9 @@ e:=$e,no_mysql
|
|||||||
.if ${FLAVOR:L:Mno_postgresql}
|
.if ${FLAVOR:L:Mno_postgresql}
|
||||||
e:=$e,no_postgresql
|
e:=$e,no_postgresql
|
||||||
.endif
|
.endif
|
||||||
|
.if ${FLAVOR:L:Mmt}
|
||||||
|
e:=$e,mt
|
||||||
|
.endif
|
||||||
|
|
||||||
.if !empty(FLAVOR:L:Mno_mysql)
|
.if !empty(FLAVOR:L:Mno_mysql)
|
||||||
CONFIGURE_ARGS+=-no-sql-mysql
|
CONFIGURE_ARGS+=-no-sql-mysql
|
||||||
@ -118,22 +118,28 @@ CONFIGURE_ARGS+= -I${LOCALBASE}/include/postgresql \
|
|||||||
-I${LOCALBASE}/include -plugin-sql-psql
|
-I${LOCALBASE}/include -plugin-sql-psql
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if !defined(PACKAGING) || ${SUBPACKAGE} != "-html"
|
.if defined(PACKAGING) && ${SUBPACKAGE} != "-html" && ${SUBPACKAGE} != "-base"
|
||||||
|
RUN_DEPENDS+=::x11/qt3,-base
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.if !defined(PACKAGING) || ${SUBPACKAGE} != "-html" && ${SUBPACKAGE} != "-base"
|
||||||
LIB_DEPENDS+= png.2::graphics/png \
|
LIB_DEPENDS+= png.2::graphics/png \
|
||||||
mng.1::graphics/libmng
|
mng.1::graphics/libmng
|
||||||
.endif
|
.endif
|
||||||
.if defined(PACKAGING) && ${SUBPACKAGE} != "-html" && ${SUBPACKAGE} != ""
|
|
||||||
LIB_DEPENDS+= qt.3::x11/qt3$e
|
.if defined(PACKAGING) && ${SUBPACKAGE} != "-html" && ${SUBPACKAGE} != "" && ${SUBPACKAGE} != "-base"
|
||||||
|
LIB_DEPENDS+= qt${MT_SUFX}.3::x11/qt3$e
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
QT_INCDIR= ${PREFIX}/include/X11/qt3
|
QT_INCDIR= ${PREFIX}/include/X11/qt3
|
||||||
TRUEDIR= ${TRUEPREFIX}/lib/qt3
|
TRUEDIR= ${TRUEPREFIX}/lib/qt3
|
||||||
QT_LIBDIR= ${PREFIX}/lib/qt3
|
QT_LIBDIR= ${PREFIX}/lib/qt3
|
||||||
QT_PLUGINSDIR= ${QT_LIBDIR}/plugins
|
|
||||||
QT_MANDIR= ${QT_LIBDIR}/man
|
QT_MANDIR= ${QT_LIBDIR}/man
|
||||||
QT_EXAMPLES= ${QT_LIBDIR}/examples
|
QT_EXAMPLES= ${QT_LIBDIR}/examples
|
||||||
QT_TUTORIAL= ${QT_LIBDIR}/tutorial
|
QT_TUTORIAL= ${QT_LIBDIR}/tutorial
|
||||||
QT_DOC= ${PREFIX}/share/doc/qt3
|
QT_DOC= ${PREFIX}/share/doc/qt3
|
||||||
|
QT_PLUGINSDIR= ${QT_LIBDIR}/plugins${MT_SUFX}
|
||||||
|
QT_BINDIR= ${QT_LIBDIR}/bin${MT_SUFX}
|
||||||
|
|
||||||
# for manpages in MESSAGE
|
# for manpages in MESSAGE
|
||||||
SUBST_VARS= VERSION QT_LIBDIR QT_DOC
|
SUBST_VARS= VERSION QT_LIBDIR QT_DOC
|
||||||
@ -148,25 +154,17 @@ PROGRAMS3=designer findtr moc qt20fix qtrename140 uic
|
|||||||
PROGRAMS=assistant linguist lrelease lupdate qm2ts qmake qtconfig
|
PROGRAMS=assistant linguist lrelease lupdate qm2ts qmake qtconfig
|
||||||
|
|
||||||
.if ${FLAVOR:L:Mmt}
|
.if ${FLAVOR:L:Mmt}
|
||||||
|
MT_SUFX=-mt
|
||||||
|
LIBRARIES=qt${MT_SUFX}.so.3.11
|
||||||
|
|
||||||
post-patch:
|
post-patch:
|
||||||
-rm -rf ${WRKSRC}/examples
|
-rm -rf ${WRKSRC}/examples
|
||||||
-rm -rf ${WRKSRC}/tutorial
|
-rm -rf ${WRKSRC}/tutorial
|
||||||
|
|
||||||
do-install:
|
|
||||||
${INSTALL_DATA_DIR} ${PREFIX}/lib/qt3
|
|
||||||
${INSTALL_DATA} ${WRKBUILD}/lib/libqt-mt.so.3.11 ${PREFIX}/lib/qt3
|
|
||||||
ln -sf qt3/libqt-mt.so.3.11 ${PREFIX}/lib
|
|
||||||
${INSTALL_DATA_DIR} ${QT_LIBDIR}/bin-mt
|
|
||||||
. for p in ${PROGRAMS3}
|
|
||||||
${INSTALL_PROGRAM} ${WRKBUILD}/bin/$p ${QT_LIBDIR}/bin-mt/$p
|
|
||||||
@ln -sf ${TRUEPREFIX}/lib/qt3/bin-mt/$p ${PREFIX}/bin/$p3-mt
|
|
||||||
. endfor
|
|
||||||
. for p in ${PROGRAMS}
|
|
||||||
${INSTALL_PROGRAM} ${WRKBUILD}/bin/$p ${QT_LIBDIR}/bin-mt/$p
|
|
||||||
@ln -sf ${TRUEPREFIX}/lib/qt3/bin-mt/$p ${PREFIX}/bin/$p-mt
|
|
||||||
. endfor
|
|
||||||
|
|
||||||
.else
|
.else
|
||||||
|
MT_SUFX=
|
||||||
|
LIBRARIES=qt.so.3.11 editor.so.1.0 qui.so.1.0
|
||||||
|
|
||||||
post-configure:
|
post-configure:
|
||||||
@cd ${WRKSRC} && cp -R examples examples-src
|
@cd ${WRKSRC} && cp -R examples examples-src
|
||||||
@find ${WRKSRC}/examples-src -name '*.orig' |xargs rm
|
@find ${WRKSRC}/examples-src -name '*.orig' |xargs rm
|
||||||
@ -177,39 +175,9 @@ post-configure:
|
|||||||
@find ${WRKSRC}/tutorial-src -name '.moc' |xargs rm -r
|
@find ${WRKSRC}/tutorial-src -name '.moc' |xargs rm -r
|
||||||
@find ${WRKSRC}/tutorial-src -name '.obj' |xargs rm -r
|
@find ${WRKSRC}/tutorial-src -name '.obj' |xargs rm -r
|
||||||
|
|
||||||
LIBRARIES=qt.so.3.11 editor.so.1.0 qui.so.1.0
|
pre-install:
|
||||||
|
|
||||||
do-install:
|
|
||||||
${INSTALL_DATA_DIR} ${QT_INCDIR}
|
|
||||||
${INSTALL_MAN_DIR} ${QT_MANDIR}/man1
|
|
||||||
${INSTALL_MAN_DIR} ${QT_MANDIR}/man3
|
|
||||||
${INSTALL_DATA_DIR} ${QT_LIBDIR}/bin ${QT_PLUGINSDIR}
|
|
||||||
${INSTALL_DATA_DIR} ${QT_EXAMPLES}
|
${INSTALL_DATA_DIR} ${QT_EXAMPLES}
|
||||||
${INSTALL_DATA_DIR} ${QT_TUTORIAL}
|
${INSTALL_DATA_DIR} ${QT_TUTORIAL}
|
||||||
${INSTALL_DATA_DIR} ${QT_DOC}/html
|
|
||||||
# libraries
|
|
||||||
. for l in ${LIBRARIES}
|
|
||||||
@if [ -f ${WRKBUILD}/lib/lib${l:C/\.so\..*/.a/} ]; then \
|
|
||||||
${INSTALL_DATA} ${WRKBUILD}/lib/lib${l:C/\.so\..*/.a/} ${PREFIX}/lib/qt3; \
|
|
||||||
fi
|
|
||||||
@if [ -f ${WRKBUILD}/lib/lib$l ]; then \
|
|
||||||
${INSTALL_DATA} ${WRKBUILD}/lib/lib$l ${PREFIX}/lib/qt3; \
|
|
||||||
ln -sf qt3/lib$l ${PREFIX}/lib; \
|
|
||||||
fi
|
|
||||||
. endfor
|
|
||||||
# programs
|
|
||||||
. for p in ${PROGRAMS3}
|
|
||||||
${INSTALL_PROGRAM} ${WRKBUILD}/bin/$p ${QT_LIBDIR}/bin
|
|
||||||
@ln -sf ${TRUEPREFIX}/lib/qt3/bin/$p ${PREFIX}/bin/$p3
|
|
||||||
. endfor
|
|
||||||
. for p in ${PROGRAMS}
|
|
||||||
${INSTALL_PROGRAM} ${WRKBUILD}/bin/$p ${PREFIX}/bin
|
|
||||||
. endfor
|
|
||||||
# includes
|
|
||||||
@rm -f ${WRKSRC}/include/qt_{mac,windows}.h
|
|
||||||
${INSTALL_DATA_DIR} ${QT_INCDIR}/private
|
|
||||||
${INSTALL_DATA} ${WRKSRC}/include/*.h ${QT_INCDIR}
|
|
||||||
${INSTALL_DATA} ${WRKSRC}/include/private/*.h ${QT_INCDIR}/private
|
|
||||||
# examples
|
# examples
|
||||||
cp -R ${WRKSRC}/examples-src/* ${QT_EXAMPLES}
|
cp -R ${WRKSRC}/examples-src/* ${QT_EXAMPLES}
|
||||||
@cd ${WRKSRC}/examples; for i in *; do \
|
@cd ${WRKSRC}/examples; for i in *; do \
|
||||||
@ -225,6 +193,19 @@ do-install:
|
|||||||
if [ -x $$i/$$i ]; then \
|
if [ -x $$i/$$i ]; then \
|
||||||
${INSTALL_PROGRAM} $$i/$$i ${QT_TUTORIAL}/$$i; \
|
${INSTALL_PROGRAM} $$i/$$i ${QT_TUTORIAL}/$$i; \
|
||||||
fi; done
|
fi; done
|
||||||
|
.endif
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_DATA_DIR} ${QT_INCDIR}
|
||||||
|
${INSTALL_MAN_DIR} ${QT_MANDIR}/man1
|
||||||
|
${INSTALL_MAN_DIR} ${QT_MANDIR}/man3
|
||||||
|
${INSTALL_DATA_DIR} ${QT_DOC}/html
|
||||||
|
# includes
|
||||||
|
@rm -f ${WRKSRC}/include/qt_{mac,windows}.h
|
||||||
|
${INSTALL_DATA_DIR} ${QT_INCDIR}/private
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/include/*.h ${QT_INCDIR}
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/include/private/*.h ${QT_INCDIR}/private
|
||||||
|
${INSTALL_DATA_DIR} ${QT_BINDIR} ${QT_PLUGINSDIR}
|
||||||
# documentation
|
# documentation
|
||||||
${INSTALL_MAN} ${WRKSRC}/doc/man/man1/lrelease.1 ${QT_MANDIR}/man1
|
${INSTALL_MAN} ${WRKSRC}/doc/man/man1/lrelease.1 ${QT_MANDIR}/man1
|
||||||
${INSTALL_MAN} ${WRKSRC}/doc/man/man1/lupdate.1 ${QT_MANDIR}/man1
|
${INSTALL_MAN} ${WRKSRC}/doc/man/man1/lupdate.1 ${QT_MANDIR}/man1
|
||||||
@ -237,6 +218,25 @@ do-install:
|
|||||||
done
|
done
|
||||||
cd ${WRKSRC}; ${INSTALL_DATA} ${DOCS} ${QT_DOC}
|
cd ${WRKSRC}; ${INSTALL_DATA} ${DOCS} ${QT_DOC}
|
||||||
cp -R ${WRKSRC}/doc/html/* ${QT_DOC}/html
|
cp -R ${WRKSRC}/doc/html/* ${QT_DOC}/html
|
||||||
|
cp -R ${WRKSRC}/mkspecs ${QT_LIBDIR}/mkspecs
|
||||||
|
# libraries
|
||||||
|
.for l in ${LIBRARIES}
|
||||||
|
@if [ -f ${WRKBUILD}/lib/lib${l:C/\.so\..*/.a/} ]; then \
|
||||||
|
${INSTALL_DATA} ${WRKBUILD}/lib/lib${l:C/\.so\..*/.a/} ${PREFIX}/lib/qt3; \
|
||||||
|
fi
|
||||||
|
@if [ -f ${WRKBUILD}/lib/lib$l ]; then \
|
||||||
|
${INSTALL_DATA} ${WRKBUILD}/lib/lib$l ${PREFIX}/lib/qt3; \
|
||||||
|
ln -sf qt3/lib$l ${PREFIX}/lib; \
|
||||||
|
fi
|
||||||
|
.endfor
|
||||||
|
.for p in ${PROGRAMS3}
|
||||||
|
${INSTALL_PROGRAM} ${WRKBUILD}/bin/$p ${QT_BINDIR}/$p
|
||||||
|
@ln -sf ${TRUEPREFIX}/lib/qt3/bin${MT_SUFX}/$p ${PREFIX}/bin/$p3${MT_SUFX}
|
||||||
|
.endfor
|
||||||
|
.for p in ${PROGRAMS}
|
||||||
|
${INSTALL_PROGRAM} ${WRKBUILD}/bin/$p ${QT_BINDIR}/$p
|
||||||
|
@ln -sf ${TRUEPREFIX}/lib/qt3/bin${MT_SUFX}/$p ${PREFIX}/bin/$p${MT_SUFX}
|
||||||
|
.endfor
|
||||||
# plugins
|
# plugins
|
||||||
${INSTALL_DATA_DIR} ${QT_PLUGINSDIR}/imageformats \
|
${INSTALL_DATA_DIR} ${QT_PLUGINSDIR}/imageformats \
|
||||||
${QT_PLUGINSDIR}/sqldrivers ${QT_PLUGINSDIR}/styles \
|
${QT_PLUGINSDIR}/sqldrivers ${QT_PLUGINSDIR}/styles \
|
||||||
@ -245,14 +245,14 @@ do-install:
|
|||||||
${QT_PLUGINSDIR}/imageformats
|
${QT_PLUGINSDIR}/imageformats
|
||||||
${INSTALL_DATA} ${WRKBUILD}/plugins/imageformats/libqmng.so \
|
${INSTALL_DATA} ${WRKBUILD}/plugins/imageformats/libqmng.so \
|
||||||
${QT_PLUGINSDIR}/imageformats
|
${QT_PLUGINSDIR}/imageformats
|
||||||
. if empty(FLAVOR:L:Mno_postgresql)
|
.if empty(FLAVOR:L:Mno_postgresql)
|
||||||
${INSTALL_DATA} ${WRKBUILD}/plugins/sqldrivers/libqsqlpsql.so \
|
${INSTALL_DATA} ${WRKBUILD}/plugins/sqldrivers/libqsqlpsql.so \
|
||||||
${QT_PLUGINSDIR}/sqldrivers
|
${QT_PLUGINSDIR}/sqldrivers
|
||||||
. endif
|
.endif
|
||||||
. if empty(FLAVOR:L:Mno_mysql)
|
.if empty(FLAVOR:L:Mno_mysql)
|
||||||
${INSTALL_DATA} ${WRKBUILD}/plugins/sqldrivers/libqsqlmysql.so \
|
${INSTALL_DATA} ${WRKBUILD}/plugins/sqldrivers/libqsqlmysql.so \
|
||||||
${QT_PLUGINSDIR}/sqldrivers
|
${QT_PLUGINSDIR}/sqldrivers
|
||||||
. endif
|
.endif
|
||||||
${INSTALL_DATA} ${WRKBUILD}/plugins/designer/libwizards.so \
|
${INSTALL_DATA} ${WRKBUILD}/plugins/designer/libwizards.so \
|
||||||
${QT_PLUGINSDIR}/designer
|
${QT_PLUGINSDIR}/designer
|
||||||
${INSTALL_DATA} ${WRKBUILD}/plugins/designer/libcppeditor.so \
|
${INSTALL_DATA} ${WRKBUILD}/plugins/designer/libcppeditor.so \
|
||||||
@ -261,13 +261,13 @@ do-install:
|
|||||||
${QT_PLUGINSDIR}/designer
|
${QT_PLUGINSDIR}/designer
|
||||||
${INSTALL_DATA} ${WRKBUILD}/plugins/designer/librcplugin.so \
|
${INSTALL_DATA} ${WRKBUILD}/plugins/designer/librcplugin.so \
|
||||||
${QT_PLUGINSDIR}/designer
|
${QT_PLUGINSDIR}/designer
|
||||||
cp -R ${WRKSRC}/mkspecs ${QT_LIBDIR}/mkspecs
|
|
||||||
.endif
|
|
||||||
|
|
||||||
PKGNAME= qt3-${VERSION}
|
PKGNAME= qt3-${VERSION}
|
||||||
PKGNAME-examples= qt3-examples-${VERSION}
|
PKGNAME-mysql= qt3-mysql-${VERSION}
|
||||||
PKGNAME-html= qt3-html-${VERSION}
|
|
||||||
PKGNAME-mysql= qt3-mysql-${VERSION}
|
|
||||||
PKGNAME-postgresql= qt3-postgresql-${VERSION}
|
PKGNAME-postgresql= qt3-postgresql-${VERSION}
|
||||||
|
PKGNAME-examples= qt3-examples-${VERSION}
|
||||||
|
FULLPKGNAME-base= qt3-base-${VERSION}
|
||||||
|
FULLPKGNAME-html= qt3-html-${VERSION}
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $OpenBSD: qt3.port.mk,v 1.5 2003/01/06 00:28:14 naddy Exp $
|
# $OpenBSD: qt3.port.mk,v 1.6 2003/01/06 06:22:53 espie Exp $
|
||||||
|
|
||||||
MODULES+= gcc3
|
MODULES+= gcc3
|
||||||
MODGCC3_ARCHES+=sparc64
|
MODGCC3_ARCHES+=sparc64
|
||||||
@ -21,8 +21,7 @@ _MODQT_SETUP+= UIC=${MODQT_UIC}
|
|||||||
|
|
||||||
.if ${MODQT_MT:L} == "yes"
|
.if ${MODQT_MT:L} == "yes"
|
||||||
LIB_DEPENDS+=lib/qt3/qt-mt.3::x11/qt3,mt
|
LIB_DEPENDS+=lib/qt3/qt-mt.3::x11/qt3,mt
|
||||||
# for includes
|
# includes are now handled by a subpackage
|
||||||
BUILD_DEPENDS+=::x11/qt3
|
|
||||||
# may be needed to find plugins
|
# may be needed to find plugins
|
||||||
MODQT_MOC= ${LOCALBASE}/bin/moc3-mt
|
MODQT_MOC= ${LOCALBASE}/bin/moc3-mt
|
||||||
MODQT_UIC= ${LOCALBASE}/bin/uic3-mt
|
MODQT_UIC= ${LOCALBASE}/bin/uic3-mt
|
||||||
|
1
x11/qt3/pkg/DESCR-base
Normal file
1
x11/qt3/pkg/DESCR-base
Normal file
@ -0,0 +1 @@
|
|||||||
|
This is the common include/documentation package for both qt and qt-mt
|
@ -1,6 +1,12 @@
|
|||||||
@comment $OpenBSD: PFRAG.shared,v 1.6 2002/12/29 16:13:28 espie Exp $
|
@comment $OpenBSD: PFRAG.shared,v 1.7 2003/01/06 06:22:53 espie Exp $
|
||||||
lib/libqt.so.3.11
|
lib/libqt.so.3.11
|
||||||
lib/libqui.so.1.0
|
lib/libqui.so.1.0
|
||||||
lib/qt3/libqt.so.3.11
|
lib/qt3/libqt.so.3.11
|
||||||
lib/qt3/libqui.so.1.0
|
lib/qt3/libqui.so.1.0
|
||||||
|
lib/qt3/plugins/designer/libcppeditor.so
|
||||||
|
lib/qt3/plugins/designer/libdlgplugin.so
|
||||||
|
lib/qt3/plugins/designer/librcplugin.so
|
||||||
|
lib/qt3/plugins/designer/libwizards.so
|
||||||
|
lib/qt3/plugins/imageformats/libqjpeg.so
|
||||||
|
lib/qt3/plugins/imageformats/libqmng.so
|
||||||
DYNLIBDIR(%D/lib)
|
DYNLIBDIR(%D/lib)
|
||||||
|
1357
x11/qt3/pkg/PLIST
1357
x11/qt3/pkg/PLIST
File diff suppressed because it is too large
Load Diff
1344
x11/qt3/pkg/PLIST-base
Normal file
1344
x11/qt3/pkg/PLIST-base
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
|||||||
@comment $OpenBSD: PLIST-mt,v 1.4 2002/12/31 02:09:52 espie Exp $
|
@comment $OpenBSD: PLIST-mt,v 1.5 2003/01/06 06:22:53 espie Exp $
|
||||||
bin/assistant-mt
|
bin/assistant-mt
|
||||||
bin/designer3-mt
|
bin/designer3-mt
|
||||||
bin/findtr3-mt
|
bin/findtr3-mt
|
||||||
@ -12,8 +12,6 @@ bin/qt20fix3-mt
|
|||||||
bin/qtconfig-mt
|
bin/qtconfig-mt
|
||||||
bin/qtrename1403-mt
|
bin/qtrename1403-mt
|
||||||
bin/uic3-mt
|
bin/uic3-mt
|
||||||
lib/libqt-mt.so.3.11
|
|
||||||
lib/qt3/libqt-mt.so.3.11
|
|
||||||
lib/qt3/bin-mt/assistant
|
lib/qt3/bin-mt/assistant
|
||||||
lib/qt3/bin-mt/designer
|
lib/qt3/bin-mt/designer
|
||||||
lib/qt3/bin-mt/findtr
|
lib/qt3/bin-mt/findtr
|
||||||
@ -27,5 +25,20 @@ lib/qt3/bin-mt/qt20fix
|
|||||||
lib/qt3/bin-mt/qtconfig
|
lib/qt3/bin-mt/qtconfig
|
||||||
lib/qt3/bin-mt/qtrename140
|
lib/qt3/bin-mt/qtrename140
|
||||||
lib/qt3/bin-mt/uic
|
lib/qt3/bin-mt/uic
|
||||||
@dirrm lib/qt3/bin-mt
|
lib/libqt-mt.so.3.11
|
||||||
|
lib/qt3/libqt-mt.so.3.11
|
||||||
|
lib/qt3/plugins-mt/designer/libcppeditor.so
|
||||||
|
lib/qt3/plugins-mt/designer/libdlgplugin.so
|
||||||
|
lib/qt3/plugins-mt/designer/librcplugin.so
|
||||||
|
lib/qt3/plugins-mt/designer/libwizards.so
|
||||||
|
lib/qt3/plugins-mt/imageformats/libqjpeg.so
|
||||||
|
lib/qt3/plugins-mt/imageformats/libqmng.so
|
||||||
DYNLIBDIR(%D/lib)
|
DYNLIBDIR(%D/lib)
|
||||||
|
@exec mkdir -p %D/lib/qt3/plugins-mt/styles
|
||||||
|
@exec mkdir -p %D/lib/qt3/plugins-mt/sqldrivers
|
||||||
|
@dirrm lib/qt3/plugins-mt/styles
|
||||||
|
@dirrm lib/qt3/plugins-mt/sqldrivers
|
||||||
|
@dirrm lib/qt3/plugins-mt/imageformats
|
||||||
|
@dirrm lib/qt3/plugins-mt/designer
|
||||||
|
@dirrm lib/qt3/plugins-mt
|
||||||
|
@dirrm lib/qt3/bin-mt
|
||||||
|
2
x11/qt3/pkg/PLIST-mysql-mt
Normal file
2
x11/qt3/pkg/PLIST-mysql-mt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
@comment $OpenBSD: PLIST-mysql-mt,v 1.1 2003/01/06 06:22:53 espie Exp $
|
||||||
|
lib/qt3/plugins-mt/sqldrivers/libqsqlmysql.so
|
2
x11/qt3/pkg/PLIST-postgresql-mt
Normal file
2
x11/qt3/pkg/PLIST-postgresql-mt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
@comment $OpenBSD: PLIST-postgresql-mt,v 1.1 2003/01/06 06:22:53 espie Exp $
|
||||||
|
lib/qt3/plugins-mt/sqldrivers/libqsqlpsql.so
|
Loading…
Reference in New Issue
Block a user