ports/net-im/qxmpp/files/patch-src-src.pro
Pawel Pekala a8327869bc QXmpp is pretty intuitive and easy to use. It uses Qt extensively.
Qt is the only third party library it is dependent on. Users need
to a have working knowledge of C++ and Qt basics (Signals and Slots
and Qt data types). The underlying TCP socket and the XMPP RFCs
(RFC3920 and RFC3921) have been encapsulated into classes and
functions. Therefore the user would not be bothered with these
details. But it is always recommended to the advanced users to read
and enjoy the low level details.

WWW:	http://code.google.com/p/qxmpp/

PR:		ports/163967
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
2012-01-11 19:54:27 +00:00

18 lines
660 B
INI

--- src/src.pro.orig 2012-01-07 23:02:25.327074206 +0000
+++ src/src.pro 2012-01-07 23:06:28.619562777 +0000
@@ -174,12 +174,12 @@
# Installation
headers.files = $$INSTALL_HEADERS
-headers.path = $$[QT_INSTALL_PREFIX]/include/qxmpp
-target.path = $$[QT_INSTALL_LIBS]
+headers.path = $$PREFIX/include/qxmpp
+target.path = $$PREFIX/%%QT_LIBDIR_REL%%
INSTALLS += headers target
# pkg-config support
CONFIG += create_pc create_prl no_install_prl
-QMAKE_PKGCONFIG_DESTDIR = $$QXMPP_LIBRARY_DIR/pkgconfig
+QMAKE_PKGCONFIG_DESTDIR = $$QXMPP_LIBRARY_DIR/../../libdata/pkgconfig
QMAKE_PKGCONFIG_LIBDIR = $$target.path
QMAKE_PKGCONFIG_INCDIR = $$headers.path