I've got a rh7.2 system with the KDE3 RPMs (kdelibs-3.0.0-4, qt-3.0.3-5 and
friends) installed. I'm not really sure if KDE3 is supported. I'm not getting
that far... The INSTALL file says "PyKDE2 requires Qt2.3.x and KDE2.1.x" ...
is there a PyKDE3? (there doesn't appear to be a CVS module for it)
I'm having a bugger of a time getting PyKDE to compile from CVS. I've run into
a sip problem - I have sip 3.1 (sip-3.1-1) installed. My Makefile has been
modified to let it copy the extraH directory:
[outpost:~/src/kde/PyKDE2]$ cvs diff Makefile
Index: Makefile
===================================================================
RCS file: /home/cvs/public/PyKDE2/Makefile,v
retrieving revision 1.1.1.5
diff -u -3 -p -r1.1.1.5 Makefile
--- Makefile 11 Feb 2002 07:59:54 -0000 1.1.1.5
+++ Makefile 19 Apr 2002 07:13:55 -0000
@@ -64,7 +64,7 @@ init:
mkdir $(TESTDIR)
mkdir $(EXTRAHDIR)
cp test/*.py $(TESTDIR)
- cp extraH/* $(EXTRAHDIR)
+ cp extraH/*.h $(EXTRAHDIR)
dcop: dcop.sip
mkdir $(DCOP)
The error I get is:
[outpost:~/src/kde/PyKDE2]$ make QTSIPDIR=/usr/share/sip/qt/
rm -rf PyKDE2 kde.sip dcop.sip kdecore.sip kdeui.sip kio.sip kfilemod.sip
kparts.sip kjsmod.sip khtml.sip kspellmod.sip\
PyKDE2-3.0alpha3.tar.gz
mkdir PyKDE2
cp NEWS PyKDE2
cp postproc PyKDE2
cp lib/Makefile.am PyKDE2
cp lib/README PyKDE2
cp lib/AUTHORS PyKDE2
cp lib/INSTALL PyKDE2
cp lib/ChangeLog PyKDE2
cp lib/THANKS PyKDE2
cp lib/COPYING PyKDE2
cp lib/acinclude.m4 PyKDE2
sed -e s/@RELEASE@/3.0alpha3/g lib/configure.in.in >PyKDE2/configure.in
sed -e s/@RELEASE@/3.0alpha3/g -e s/@VERSION@/3.0alpha3/g lib/PyKDE.spec.in
>PyKDE2/PyKDE.spec
mkdir PyKDE2/test
mkdir PyKDE2/extraH
cp test/*.py PyKDE2/test
cp extraH/*.h PyKDE2/extraH
sed -e s/@RELEASE@/3.0alpha3/g -e s/@VERSION@/3.0alpha3/g dcop.sip-in
>dcop.sip
mkdir PyKDE2/dcop
sip -t Qt_2_3_0 -t KDE_2_1_1 -I /usr/share/sip/qt/ -c PyKDE2/dcop -m
PyKDE2/dcop/Makefile.am dcop.sip
sip: dcop.sip:40: parse error
make: *** [dcop] Error 1
I've attached dcop.sip. Fingers crossed...
Richard
-------------- next part --------------
//Copyright (c) 2001 Jim Bublitz <jbublitz at nwinternet.com>
//### Generated by preSip ###
%Copying
Terms and Conditions
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Except as contained in this notice, the name of the copyright holder shall
not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from the
copyright holder.
%End
%Module dcop
%Timeline { KDE_0_0_0 KDE_0_0_1 KDE_2_1_1 KDE_2_1_2 KDE_2_2_0 }
%Import qtmod.sip
%VersionCode
#define KDE_VERSION 211
#define KDE_VERSION_STRING "2.1.1"
%End
%ExportedDoc
</Sect1>
<Sect1><Title><Literal>dcop</Literal> Module Reference</Title>
%End
// Include the interface definitions for each class.
%Include dcopclient.sip
%Include dcopobject.sip
%Include dcopref.sip
//%Include dcopsignals.sip
%Include dcopstub.sip
%ExportedDoc
</Sect1>
%End
// Give the Python code access to the Qt version.
%PrePythonCode
from qt import QT_VERSION
%End
// Tailor the Makefile.am.
%Makefile Makefile.am .o
# Copyright (c) 2000 Phil Thompson (phil at river-bank.demon.co.uk)
#//Copyright (c) 2001 Jim Bublitz <jbublitz at nwinternet.com>
#
# Makefile for building dcop with autoconf/automake/libtool.
DCOP_SOURCES = \
$S \
dcop.py
noinst_PROGRAMS = sip_helper
sip_helper_SOURCES = sip_helper$c
sipdcopDecldcop.h: sipdcopVersion.h
sipdcopVersion.h: sip_helper
./sip_helper >sipdcopVersion.h
dcopcmodule.cpp: sipdcopProxydcop.moc
sipdcopProxydcop.moc: sipdcopProxydcop.h sipdcopVersion.h
$$(CXXCPP) $$(SIP_CPPFLAGS) -o moc_sipdcopProxydcop.h sipdcopProxydcop.h
$$(SIP_MOC) -o sipdcopProxydcop.moc moc_sipdcopProxydcop.h
$$(PYTHONINTERP) ../postproc -p ./ -o qtNoTr moc_sipdcopProxydcop.h
CLEANFILES = \
dcop.pyc sip_helper sipdcopVersion.h sipdcopProxydcop.moc \
moc_sipdcopProxydcop.h
AM_CPPFLAGS = $$(SIP_CPPFLAGS)
AM_CXXFLAGS = $$(SIP_CXXFLAGS) -I ../extraH
libdir = $$(SIP_PYTHONDLMODULES)
datadir = $$(SIP_PYTHONMODULES)
data_DATA = dcop.py
lib_LTLIBRARIES = libdcopcmodule.la
libdcopcmodule_la_SOURCES = $$(DCOP_SOURCES)
libdcopcmodule_la_LDFLAGS = -release 3.0alpha3
libdcopcmodule_la_LIBADD = -L$$(libdir) -lqtcmodule $$(SIP_LDLIBDIRS) -lsip -lqt -lDCOP $$(SIP_LDXFLAGS)
install-data-hook:
(cd /tmp; PYTHONPATH=$$(DESTDIR)$$(datadir):$$(DESTDIR)$$(libdir) $$(PYTHONINTERP) -c "import dcop")
%End
More information about the PyQt
mailing list
‘She has never mentioned her father to me. Was he—well, the sort of man whom the County Club would not have blackballed?’ "We walked by the side of our teams or behind the wagons, we slept on the ground at night, we did our own cooking, we washed our knives by sticking them into the ground rapidly a few times, and we washed our plates with sand and wisps of grass. When we stopped, we arranged our wagons in a circle, and thus formed a 'corral,' or yard, where we drove our oxen to yoke them up. And the corral was often very useful as a fort, or camp, for defending ourselves against the Indians. Do you see that little hollow down there?" he asked, pointing to a depression in the ground a short distance to the right of the train. "Well, in that hollow our wagon-train was kept three days and nights by the Indians. Three days and nights they stayed around, and made several attacks. Two of our men were killed and three were wounded by their arrows, and others had narrow escapes. One arrow hit me on the throat, but I was saved by the knot of my neckerchief, and the point only tore the skin a little. Since that time I have always had a fondness for large neckties. I don't know how many of the Indians we killed, as they carried off their dead and wounded, to save them from being scalped. Next to getting the scalps of their enemies, the most important thing with the Indians is to save their own. We had several fights during our journey, but that one was the worst. Once a little party of us were surrounded in a small 'wallow,' and had a tough time to defend ourselves successfully. Luckily for us, the Indians had no fire-arms then, and their bows and arrows were no match for our rifles. Nowadays they are well armed, but there are[Pg 41] not so many of them, and they are not inclined to trouble the railway trains. They used to do a great deal of mischief in the old times, and many a poor fellow has been killed by them." As dusk came on nearly the whole population of Maastricht, with all their temporary guests, formed an endless procession and went to invoke God's mercy by the Virgin Mary's intercession. They went to Our Lady's Church, in which stands the miraculous statue of Sancta Maria Stella Maris. The procession filled all the principal streets and squares of the town. I took my stand at the corner of the Vrijthof, where all marched past me, men, women, and children, all praying aloud, with loud voices beseeching: "Our Lady, Star of the Sea, pray for us ... pray for us ... pray for us ...!" It had not occurred to her for some hours after Mrs. Campbell had told her of Landor's death that she was free now to give herself to Cairness. She had gasped, indeed, when she did remember it, and had put the thought away, angrily and self-reproachfully. But it returned now, and she felt that she might cling to it. She had been grateful, and she had been faithful, too.[Pg 286] She remembered only that Landor had been kind to her, and forgot that for the last two years she had borne with much harsh coldness, and with a sort of contempt which she felt in her unanalyzing mind to have been entirely unmerited. Gradually she raised herself until she sat quite erect by the side of the mound, the old exultation of her half-wild girlhood shining in her face as she planned the future, which only a few minutes before had seemed so hopeless. After he had gloated over Sergeant Ramsey, Shorty got his men into the road ready to start. Si placed himself in front of the squad and deliberately loaded his musket in their sight. Shorty took his place in the rear, and gave out: The groups about each gun thinned out, as the shrieking fragments of shell mowed down man after man, but the rapidity of the fire did not slacken in the least. One of the Lieutenants turned and motioned with his saber to the riders seated on their horses in the line of limbers under the cover of the slope. One rider sprang from each team and ran up to take the place of men who had fallen. "As long as there's men and women in the world, the men 'ull be top and the women bottom." Then, in the house, the little girls were useful. Mrs. Backfield was not so energetic as she used to be. She had never been a robust woman, and though her husband's care had kept her well and strong, her frame was not equal to Reuben's demands; after fourteen years' hard labour, she suffered from rheumatism, which though seldom acute, was inclined to make her stiff and slow. It was here that Caro and Tilly came in, and Reuben began to appreciate his girls. After all, girls were needed in a house—and as for young men and marriage, their father could easily see that such follies did not spoil their usefulness or take them from him. Caro and Tilly helped their grandmother in all sorts of ways—they dusted, they watched pots, they shelled peas and peeled potatoes, they darned house-linen, they could even make a bed between them. HoME一级毛片视频免费公开
ENTER NUMBET 0018www.glyipi.com.cn cdspw.com.cn moliaoapp.com.cn www.226888.com.cn atqcyp.com.cn www.51axz.com.cn www.gtwu.com.cn go616.com.cn www.sh-ysjs.com.cn zhyue18.com.cn