pkgsrc-WIP-review archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: Please review wip/qnetwalk



On Wednesday 05 January 2005 17:49, Thomas Klausner wrote:
> On Tue, Jan 04, 2005 at 06:25:59PM +0600, Ian Zagorskih wrote:
> > QNetwalk is a Qt-version of the popular NetWalk game for system
> > administrators :)
>
> ===> Configuring for qnetwalk-1.0
> (cd /usr/obj/wip/qnetwalk/work/qnetwalk-1.0 && qmake)
> qmake: not found
>
> Missing dependency or missing path?

Good hint, thanks! AFAIU that's missing path. At least x11/qt3-qscintilla does 
the following to call qmake:

---cut---
do-configure:
        (cd ${WRKSRC} && ${QTDIR}/bin/qmake -o Makefile qscintilla.pro)
---cut---

With patch below it should work better now (patch has been already commited 
into pkgsrc-wip CVS).

---cut---
Index: Makefile
===================================================================
RCS file: /cvsroot/pkgsrc-wip/wip/qnetwalk/Makefile,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 Makefile
--- Makefile    4 Jan 2005 12:21:02 -0000       1.1.1.1
+++ Makefile    6 Jan 2005 08:46:41 -0000
@@ -22,7 +22,7 @@
 
 # Should we care about Qt3 package paths here ?
 do-configure:
-       (cd ${WRKSRC} && qmake)
+       (cd ${WRKSRC} && ${QTDIR}/bin/qmake -o Makefile qnetwalk.pro)
 
 # Fix hardcoded paths
 SUBST_CLASSES=         path
cvs diff: Diffing patches
---cut---

// wbr


-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
pkgsrc-wip-review mailing list
pkgsrc-wip-review%lists.sourceforge.net@localhost
https://lists.sourceforge.net/lists/listinfo/pkgsrc-wip-review



Home | Main Index | Thread Index | Old Index