This patch should hopefully fix the broken plist generation on newer FreeBSDs. "Hopefully" because I'm stuck with FreeBSD 4.9 and can't test with FreeBSD 5.2.
> .include <bsd.port.mk> > + > +.if !defined(PERL_VER) || ${PERL_VER} == 5.005 > +PLIST= ${PKGDIR}/pkg-plist.5005 > +LOCAL_PERL_ARCH!=${PERL5} -MConfig -e 'print qq{$$Config{archname}}' > +.else > +LOCAL_PERL_ARCH!=${PERL5} -MConfig -e 'print qq{$$Config{version}/$$Config{archname}}' > +.endif please check your port with portlint before submitting - never write anything after bsd.port(.post).mk - this will break `make describe' on systems without perl installed
Oliver Eikemeier <eikemeier@fillmore-labs.com> writes: > > .include <bsd.port.mk> > > + > > +.if !defined(PERL_VER) || ${PERL_VER} == 5.005 > > +PLIST= ${PKGDIR}/pkg-plist.5005 > > +LOCAL_PERL_ARCH!=${PERL5} -MConfig -e 'print qq{$$Config{archname}}' > > +.else > > +LOCAL_PERL_ARCH!=${PERL5} -MConfig -e 'print qq{$$Config{version}/$$Config{archname}}' > > +.endif > > please check your port with portlint before submitting I do (4 warnings, no error). > - never write anything after bsd.port(.post).mk I am open to better solutions. Unfortunately I need to pass the "LOCAL_PERL_ARCH" variable for pkg-plist generation, which in turn needs the current value of some perl Config variables. PERL5 is only defined after including bsd.port.mk, so this part had to go after the include. > - this will break `make describe' on systems without perl installed I can skip this part if perl is missing. How to detect this reliably? By checking the existance of /usr/bin/perl5? Regards, Slaven -- Slaven Rezic - slaven@rezic.de tknotes - A knotes clone, written in Perl/Tk. http://ptktools.sourceforge.net/#tknotes
Slaven Rezic wrote: > Oliver Eikemeier <eikemeier@fillmore-labs.com> writes: > >>> .include <bsd.port.mk> >>>+ >>>+.if !defined(PERL_VER) || ${PERL_VER} == 5.005 >>>+PLIST= ${PKGDIR}/pkg-plist.5005 >>>+LOCAL_PERL_ARCH!=${PERL5} -MConfig -e 'print qq{$$Config{archname}}' >>>+.else >>>+LOCAL_PERL_ARCH!=${PERL5} -MConfig -e 'print qq{$$Config{version}/$$Config{archname}}' >>>+.endif >> >>please check your port with portlint before submitting > > I do (4 warnings, no error). It is supposed to say: FATAL: Makefile: do not include anything after bsd.port(.post).mk could you check that you have the latest version of portlint and send me the port as a shar if you still get no error? >>- never write anything after bsd.port(.post).mk > > I am open to better solutions. Unfortunately I need to pass the > "LOCAL_PERL_ARCH" variable for pkg-plist generation, which in turn > needs the current value of some perl Config variables. PERL5 is only > defined after including bsd.port.mk, so this part had to go after the > include. If you got a problem like this, *please* don't hack around the port system. These things might need a lot of work to clean up. Try asking for help on perl@ and ports@. We have things like PERL_VERSION and PERL_ARCH, so it should be doable. If a variable is missing, please post this to ports, so we can fix this. >>- this will break `make describe' on systems without perl installed > > I can skip this part if perl is missing. How to detect this reliably? > By checking the existance of /usr/bin/perl5? You can't. The system might have no perl installed when the Makefile is parsed, but get perl added as dependency (because of USE_PERL5=yes). Generally, using != in ports is a bad idea. Really. Please? -Oliver
Oliver Eikemeier <eikemeier@fillmore-labs.com> writes: > Slaven Rezic wrote: > > > Oliver Eikemeier <eikemeier@fillmore-labs.com> writes: > > > >>> .include <bsd.port.mk> > >>>+ > >>>+.if !defined(PERL_VER) || ${PERL_VER} == 5.005 > >>>+PLIST= ${PKGDIR}/pkg-plist.5005 > >>>+LOCAL_PERL_ARCH!=${PERL5} -MConfig -e 'print qq{$$Config{archname}}' > >>>+.else > >>>+LOCAL_PERL_ARCH!=${PERL5} -MConfig -e 'print qq{$$Config{version}/$$Config{archname}}' > >>>+.endif > >> > >>please check your port with portlint before submitting > > I do (4 warnings, no error). > > It is supposed to say: > FATAL: Makefile: do not include anything after bsd.port(.post).mk > > could you check that you have the latest version of portlint and send me > the port as a shar if you still get no error? Hmmm: 9:25 eserte@vran 297 (/tmp/BBBike): port test ===> Validating port with portlint FATAL: Makefile [12]: use a tab (not space) after a variable name WARN: Makefile [30]: possible direct use of command "install" found. use ${INSTALL_foobaa} instead. WARN: Makefile: be sure to include language code "de-" in the module alias name. WARN: Makefile: wrong dependency value for RUN_DEPENDS. RUN_DEPENDS requires 2 or 3 colon-separated tuples. WARN: no CVS directories. Use -N to check a new port. 1 fatal errors and 4 warnings found. Error validating port Exit 1 9:26 eserte@vran 298 (/tmp/BBBike): portlint WARN: Makefile [30]: possible direct use of command "install" found. use ${INSTALL_foobaa} instead. WARN: Makefile: wrong dependency value for RUN_DEPENDS. RUN_DEPENDS requires 2 or 3 colon-separated tuples. 0 fatal errors and 2 warnings found. But: ("port test" seems to use -t internally) 9:26 eserte@vran 299 (/tmp/BBBike): portlint -t FATAL: Makefile [12]: use a tab (not space) after a variable name WARN: Makefile [30]: possible direct use of command "install" found. use ${INSTALL_foobaa} instead. WARN: Makefile: wrong dependency value for RUN_DEPENDS. RUN_DEPENDS requires 2 or 3 colon-separated tuples. 1 fatal errors and 2 warnings found. Exit 1 (which seems somewhat too nit-picky to me) > >>- never write anything after bsd.port(.post).mk > > I am open to better solutions. Unfortunately I need to pass the > > "LOCAL_PERL_ARCH" variable for pkg-plist generation, which in turn > > needs the current value of some perl Config variables. PERL5 is only > > defined after including bsd.port.mk, so this part had to go after the > > include. > > If you got a problem like this, *please* don't hack around the port system. > These things might need a lot of work to clean up. Try asking for help > on perl@ and ports@. > > We have things like PERL_VERSION and PERL_ARCH, so it should be doable. > If a variable is missing, please post this to ports, so we can fix this. I used to use PERL_VERSION and PERL_ARCH, but this does not work with the latest FreeBSD 5.2 builds. It seems to me that a change caused PERL_ARCH to be something like "mach". BBBike does not install compiled perl modules to site_perl, but into a private arch directory with the machine name still included ("lib/i386-freebsd" on older perls, "lib/5.8.x/i386-freebsd" on current perls). I do not think that many perl applications use the same installation scheme, so an extra variable is not the right solution. > >>- this will break `make describe' on systems without perl installed > > I can skip this part if perl is missing. How to detect this reliably? > > By checking the existance of /usr/bin/perl5? > > You can't. The system might have no perl installed when the Makefile is > parsed, but get perl added as dependency (because of USE_PERL5=yes). > Generally, using != in ports is a bad idea. Really. Please? > Well, then I think it's best to generate pkg-plist from script. Gruss, Slaven -- Slaven Rezic - slaven@rezic.de tkrevdiff - graphical display of diffs between revisions (RCS, CVS or SVN) http://ptktools.sourceforge.net/#tkrevdiff
Slaven Rezic wrote: > 9:25 eserte@vran 297 (/tmp/BBBike): port test > ===> Validating port with portlint > FATAL: Makefile [12]: use a tab (not space) after a variable name > WARN: Makefile [30]: possible direct use of command "install" found. use ${INSTALL_foobaa} instead. > WARN: Makefile: be sure to include language code "de-" in the module alias name. > WARN: Makefile: wrong dependency value for RUN_DEPENDS. RUN_DEPENDS requires 2 or 3 colon-separated tuples. > WARN: no CVS directories. Use -N to check a new port. > 1 fatal errors and 4 warnings found. > Error validating port > Exit 1 > > 9:26 eserte@vran 298 (/tmp/BBBike): portlint > WARN: Makefile [30]: possible direct use of command "install" found. use ${INSTALL_foobaa} instead. > WARN: Makefile: wrong dependency value for RUN_DEPENDS. RUN_DEPENDS requires 2 or 3 colon-separated tuples. > 0 fatal errors and 2 warnings found. > > But: ("port test" seems to use -t internally) > > 9:26 eserte@vran 299 (/tmp/BBBike): portlint -t > FATAL: Makefile [12]: use a tab (not space) after a variable name > WARN: Makefile [30]: possible direct use of command "install" found. use ${INSTALL_foobaa} instead. > WARN: Makefile: wrong dependency value for RUN_DEPENDS. RUN_DEPENDS requires 2 or 3 colon-separated tuples. > 1 fatal errors and 2 warnings found. > Exit 1 > > (which seems somewhat too nit-picky to me) This is fine, since we often use tools like grep or sed to work on the ports tree, so a little uniformity helps a lot here. You should fix the space issue, the one with install is a known problem, and specifying RUN_DEPENDS=${BUILD_DEPENDS} on perl ports is normally the right thing to do. > I used to use PERL_VERSION and PERL_ARCH, but this does not work with > the latest FreeBSD 5.2 builds. It seems to me that a change caused > PERL_ARCH to be something like "mach". BBBike does not install > compiled perl modules to site_perl, but into a private arch directory > with the machine name still included ("lib/i386-freebsd" on older > perls, "lib/5.8.x/i386-freebsd" on current perls). > > I do not think that many perl applications use the same installation > scheme, so an extra variable is not the right solution. PERL_VERSION and ARCH should do the trick. Besides, how about patching BBBike to behave properly? > Well, then I think it's best to generate pkg-plist from script. Maybe this is a good solution. OTOH the pkg-plist doesn't differ much, it should be easily done with a custom variable. I'm not trying to be extremly picky with your port here, but we have 10k+ ports in the tree, and we have to test them all when make inprovements to the ports tree infrastructure, so it is important that they share a common structure. Thanks Oliver
Oliver Eikemeier <eikemeier@fillmore-labs.com> writes: > Slaven Rezic wrote: > > > 9:25 eserte@vran 297 (/tmp/BBBike): port test > > ===> Validating port with portlint > > FATAL: Makefile [12]: use a tab (not space) after a variable name > > WARN: Makefile [30]: possible direct use of command "install" found. use ${INSTALL_foobaa} instead. > > WARN: Makefile: be sure to include language code "de-" in the module alias name. > > WARN: Makefile: wrong dependency value for RUN_DEPENDS. RUN_DEPENDS requires 2 or 3 colon-separated tuples. > > WARN: no CVS directories. Use -N to check a new port. > > 1 fatal errors and 4 warnings found. > > Error validating port > > Exit 1 > > 9:26 eserte@vran 298 (/tmp/BBBike): portlint > > WARN: Makefile [30]: possible direct use of command "install" found. use ${INSTALL_foobaa} instead. > > WARN: Makefile: wrong dependency value for RUN_DEPENDS. RUN_DEPENDS requires 2 or 3 colon-separated tuples. > > 0 fatal errors and 2 warnings found. > > But: ("port test" seems to use -t internally) > > 9:26 eserte@vran 299 (/tmp/BBBike): portlint -t > > FATAL: Makefile [12]: use a tab (not space) after a variable name > > WARN: Makefile [30]: possible direct use of command "install" found. use ${INSTALL_foobaa} instead. > > WARN: Makefile: wrong dependency value for RUN_DEPENDS. RUN_DEPENDS requires 2 or 3 colon-separated tuples. > > 1 fatal errors and 2 warnings found. > > Exit 1 > > (which seems somewhat too nit-picky to me) > > This is fine, since we often use tools like grep or sed to work on the ports tree, > so a little uniformity helps a lot here. You should fix the space issue, the one > with install is a known problem, and specifying RUN_DEPENDS=${BUILD_DEPENDS} on > perl ports is normally the right thing to do. > > > I used to use PERL_VERSION and PERL_ARCH, but this does not work with > > the latest FreeBSD 5.2 builds. It seems to me that a change caused > > PERL_ARCH to be something like "mach". BBBike does not install > > compiled perl modules to site_perl, but into a private arch directory > > with the machine name still included ("lib/i386-freebsd" on older > > perls, "lib/5.8.x/i386-freebsd" on current perls). > > I do not think that many perl applications use the same installation > > scheme, so an extra variable is not the right solution. > > PERL_VERSION and ARCH should do the trick. Besides, how about patching > BBBike to behave properly? > > > Well, then I think it's best to generate pkg-plist from script. > > Maybe this is a good solution. OTOH the pkg-plist doesn't differ much, > it should be easily done with a custom variable. > > I'm not trying to be extremly picky with your port here, but we have 10k+ > ports in the tree, and we have to test them all when make inprovements > to the ports tree infrastructure, so it is important that they share a > common structure. > OK, I think I got it now. The pkg-plist substitution is now done in the pre-install rule. Gruss, Slaven # # # To apply this patch: # STEP 1: Chdir to the source directory. # STEP 2: Run the 'applypatch' program with this patch file as input. # # If you do not have 'applypatch', it is part of the 'makepatch' package # that you can fetch from the Comprehensive Perl Archive Network: # http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz # In the above URL, 'x' should be 2 or higher. # # To apply this patch without the use of 'applypatch': # STEP 1: Chdir to the source directory. # If you have a decent Bourne-type shell: # STEP 2: Run the shell with this file as input. # If you don't have such a shell, you may need to manually create/delete # the files as shown below. # STEP 3: Run the 'patch' program with this file as input. # # These are the commands needed to create/delete files/directories: # rm -f 'pkg-plist.5005' rm -f 'pkg-plist' touch 'pkg-plist.in' chmod 0644 'pkg-plist.in' # # This command terminates the shell and need not be executed manually. exit # #### End of Preamble #### #### Patch data follows #### diff -up '/usr/ports/german/BBBike/Makefile' '/tmp/BBBike/Makefile' Index: ./Makefile --- ./Makefile Thu Jan 22 00:30:50 2004 +++ ./Makefile Thu Mar 18 00:18:53 2004 @@ -9,7 +9,7 @@ PORTNAME= BBBike PORTVERSION= 3.13 CATEGORIES= german MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= bbbike +MASTER_SITE_SUBDIR= bbbike MAINTAINER= slaven@rezic.de COMMENT= A route-finder for cyclists in Berlin and Brandenburg @@ -27,8 +27,11 @@ MAN1= bbbike.1 MYDESTDIR= ${PREFIX}/BBBike .if !defined(PERL_VER) || ${PERL_VER} == 5.005 -PLIST= ${PKGDIR}/pkg-plist.5005 +LOCAL_PERL_ARCH= ${PERL_ARCH} +.else +LOCAL_PERL_ARCH= ${PERL_VER}/${ARCH}-freebsd .endif +PLIST_SUB= LOCAL_PERL_ARCH=${LOCAL_PERL_ARCH} do-build: cd ${WRKSRC}/ext && ${MAKE} PERL=${PERL5} all install @@ -41,14 +44,25 @@ do-build: ${CHMOD} 0755 ${WRKSRC}/bbbike BBBIKEEXE= bbbike cbbbike bbbikeclient cmdbbbike smsbbbike +PLIST_IN= pkg-plist.in +PLIST= ${WRKDIR}/pkg-plist + +pre-install: +.if !defined(PERL_VER) || ${PERL_VER} == 5.005 + LOCAL_PERL_ARCH=`${PERL5} -MConfig -e 'print $$Config{archname}'`; \ + ${SED} -e "s/%%LOCAL_PERL_ARCH%%/$$LOCAL_PERL_ARCH/g" < ${PLIST_IN} > ${PLIST} +.else + LOCAL_PERL_ARCH=`${PERL5} -MConfig -e 'print $$Config{version}/$$Config{archname}'`; \ + ${SED} -e "s/%%LOCAL_PERL_ARCH%%/$$LOCAL_PERL_ARCH/g" < ${PLIST_IN} > ${PLIST} +.endif do-install: -${RM} -rf ${MYDESTDIR} ${INSTALL_MAN} ${WRKSRC}/bbbike.1 ${PREFIX}/man/man1 - ${RM} -f ${WRKSRC}/bbbike.1 - ${CP} -r ${WRKSRC} ${MYDESTDIR} - ${FIND} ${MYDESTDIR} -exec ${CHMOD} ugo+r {} \; - ${FIND} ${MYDESTDIR} -perm -u=x -exec ${CHMOD} go+x {} \; + ${CP} -r ${WRKSRC} ${MYDESTDIR} + ${RM} -f ${MYDESTDIR}/bbbike.1 + ${FIND} ${MYDESTDIR} | ${XARGS} ${CHMOD} ugo+r + ${FIND} ${MYDESTDIR} -perm -u=x | ${XARGS} ${CHMOD} go+x .for f in ${BBBIKEEXE} -${RM} -f ${PREFIX}/bin/$f ${LN} -s ${MYDESTDIR}/$f ${PREFIX}/bin/$f diff -up /dev/null '/tmp/BBBike/pkg-plist.in' Index: ./pkg-plist.in --- ./pkg-plist.in Thu Jan 1 01:00:00 1970 +++ ./pkg-plist.in Thu Mar 18 00:18:53 2004 @@ -0,0 +1,791 @@ +BBBike/Ampelschaltung.pm +BBBike/BBBikeAdvanced.pm +BBBike/BBBikeAlarm.pm +BBBike/BBBikeCalc.pm +BBBike/BBBikeDebug.pm +BBBike/BBBikeDraw.pm +BBBike/BBBikeDraw/GD.pm +BBBike/BBBikeDraw/GDHeavy.pm +BBBike/BBBikeDraw/ImageMagick.pm +BBBike/BBBikeDraw/Imager.pm +BBBike/BBBikeDraw/MapServer.pm +BBBike/BBBikeDraw/PDF.pm +BBBike/BBBikeDraw/SVG.pm +BBBike/BBBikeESRI.pm +BBBike/BBBikeEdit.pm +BBBike/BBBikeEditUtil.pm +BBBike/BBBikeExp.pm +BBBike/BBBikeGPS.pm +BBBike/BBBikeGlobalVars.pm +BBBike/BBBikeHeavy.pm +BBBike/BBBikeMail.pm +BBBike/BBBikeMapserver.pm +BBBike/BBBikeMenubar.pm +BBBike/BBBikePalm.pm +BBBike/BBBikePersonal.pm +BBBike/BBBikePlugin.pm +BBBike/BBBikePrint.pm +BBBike/BBBikeProfil.pm +BBBike/BBBikeRouting.pm +BBBike/BBBikeRouting.pod +BBBike/BBBikeRuler.pm +BBBike/BBBikeSalesman.pm +BBBike/BBBikeScribble.pm +BBBike/BBBikeScribblePlugin.pm +BBBike/BBBikeServer.pm +BBBike/BBBikeStats.pm +BBBike/BBBikeThunder.pm +BBBike/BBBikeTrans.pm +BBBike/BBBikeUtil.pm +BBBike/BBBikeVar.pm +BBBike/BBBikeVia.pm +BBBike/BBBikeWeather.pm +BBBike/Bundle/BBBike.pm +BBBike/Bundle/BBBike_small.pm +BBBike/CHANGES +BBBike/COPYING +BBBike/ESRI/Makefile.PL +BBBike/ESRI/Shapefile.pm +BBBike/ESRI/Shapefile/DBase.pm +BBBike/ESRI/Shapefile/Index.pm +BBBike/ESRI/Shapefile/Main.pm +BBBike/ESRI/TODO +BBBike/ESRI/esri2bbd.pl +BBBike/ESRI/t/shapefile.t +BBBike/FURadar.pm +BBBike/Fahrinfo.pm +BBBike/GIS/Globe.pm +BBBike/GIS/NSD.pm +BBBike/GIS/globe_to_bbd.pl +BBBike/GPS.pm +BBBike/GPS/DirectGarmin.pm +BBBike/GPS/G7toWin_ASCII.pm +BBBike/GPS/GpsmanConn.pm +BBBike/GPS/GpsmanData.pm +BBBike/GPS/MPS.pm +BBBike/GPS/SerialStty.pm +BBBike/GPS/Unknown1.pm +BBBike/GPS/Unknown2.pm +BBBike/GPS/Util.pm +BBBike/GPS/WaypointPlus.pm +BBBike/GPS/t/gpsmandata.t +BBBike/Geography.pm +BBBike/Geography/Berlin_DE.pm +BBBike/Geography/Brandenburg_DE.pm +BBBike/Geography/Muenchen_DE.pm +BBBike/GfxConvert.pm +BBBike/Hooks.pm +BBBike/HouseNumbers.pm +BBBike/Karte.pm +BBBike/Karte/Berlinmap1996.pm +BBBike/Karte/Berlinmap1997.pm +BBBike/Karte/Berlinmap1998.pm +BBBike/Karte/Berlinmap1999.pm +BBBike/Karte/Berlinmap2000.pm +BBBike/Karte/Berlinmap2001.pm +BBBike/Karte/Berlinmap2002.pm +BBBike/Karte/Berlinmap2003.pm +BBBike/Karte/Cityinfo.pm +BBBike/Karte/Demap2002.pm +BBBike/Karte/ETRS89.pm +BBBike/Karte/FURadar.pm +BBBike/Karte/FURadar2.pm +BBBike/Karte/FURadar3.pm +BBBike/Karte/GDF.pm +BBBike/Karte/GIS.pm +BBBike/Karte/GISmap.pm +BBBike/Karte/GPS.pm +BBBike/Karte/PilotPl.pm +BBBike/Karte/PilotPl12.pm +BBBike/Karte/Polar.pm +BBBike/Karte/Potsdammap2002.pm +BBBike/Karte/Satmap.pm +BBBike/Karte/SatmapGIF.pm +BBBike/Karte/Soldner_alt.pm +BBBike/Karte/Standard.pm +BBBike/Karte/T2001.pm +BBBike/Karte/T99.pm +BBBike/Karte/Tk50.pm +BBBike/Karte/UTM.pm +BBBike/MANIFEST +BBBike/Makefile.PL +BBBike/MasterPunkte.pm +BBBike/MasterStrassen.pm +BBBike/PLZ.pm +BBBike/PLZ/Multi.pm +BBBike/PointEdit.pm +BBBike/README +BBBike/README.english +BBBike/README.english.html +BBBike/README.html +BBBike/Radwege.pm +BBBike/Route.pm +BBBike/Route/Descr.pm +BBBike/Route/Heavy.pm +BBBike/Route/PDF.pm +BBBike/Salesman.pm +BBBike/Strassen.pm +BBBike/Strassen/Build.pm +BBBike/Strassen/CDB.pm +BBBike/Strassen/Core.pm +BBBike/Strassen/CoreHeavy.pm +BBBike/Strassen/DB_File.pm +BBBike/Strassen/DB_File_Btree.pm +BBBike/Strassen/Dataset.pm +BBBike/Strassen/ESRI.pm +BBBike/Strassen/Ext.pm +BBBike/Strassen/Fast.pm +BBBike/Strassen/Generated.pm +BBBike/Strassen/Generated_src.pm +BBBike/Strassen/Heavy.pm +BBBike/Strassen/Kreuzungen.pm +BBBike/Strassen/Lazy.pm +BBBike/Strassen/MultiBezStr.pm +BBBike/Strassen/MultiStrassen.pm +BBBike/Strassen/Obsolete.pm +BBBike/Strassen/Pg.pm +BBBike/Strassen/Stat.pm +BBBike/Strassen/Storable.pm +BBBike/Strassen/Strasse.pm +BBBike/Strassen/StrassenNetz.pm +BBBike/Strassen/StrassenNetzHeavy.pm +BBBike/Strassen/Tie.pm +BBBike/Strassen/Util.pm +BBBike/TODO.pod +BBBike/Telefonbuch.pm +BBBike/Telefonbuch2001.pm +BBBike/Telefonbuch98.pm +BBBike/Telefonbuch99.pm +BBBike/TelefonbuchAny.pm +BBBike/Update.pm +BBBike/Way.pm +BBBike/Way/Metric.pm +BBBike/Wizards.pm +BBBike/bbbike +@exec ln -fs %D/%F %D/bin/bbbike +@unexec rm -f %D/bin/bbbike +BBBike/bbbike-fast.bat +BBBike/bbbike.bat +BBBike/bbbike.html +BBBike/bbbike.pod +BBBike/bbbikeapplet +BBBike/bbbikeclient +@exec ln -fs %D/%F %D/bin/bbbikeclient +@unexec rm -f %D/bin/bbbikeclient +BBBike/bbd.html +BBBike/bbd.pod +BBBike/cbbbike +@exec ln -fs %D/%F %D/bin/cbbbike +@unexec rm -f %D/bin/cbbbike +BBBike/cbbbike.bat +BBBike/cgi/README +BBBike/cgi/bbbike-teaser.pl +BBBike/cgi/bbbike.cgi +BBBike/cgi/berlinmap.cgi +BBBike/cgi/configure-bbbike.cgi +BBBike/cgi/httpd.conf.tpl +BBBike/cgi/httpi +BBBike/cgi/mapserver_address.cgi +BBBike/cgi/mapserver_comment.cgi +BBBike/cgi/mapserver_setcoord.cgi +BBBike/cgi/mksymlinks +BBBike/cgi/redirect-bbbike.cgi +BBBike/cgi/runbbbikecgi +BBBike/cgi/tinyhttpd +BBBike/cgi/tinyhttpd.config +BBBike/cgi/wapbbbike.cgi +BBBike/cmdbbbike +@exec ln -fs %D/%F %D/bin/cmdbbbike +@unexec rm -f %D/bin/cmdbbbike +BBBike/data/.modified +BBBike/data/Berlin.coords.data +BBBike/data/Potsdam.coords.data +BBBike/data/README +BBBike/data/ampeln +BBBike/data/ampelschaltung +BBBike/data/berlin +BBBike/data/brunnels +BBBike/data/comments +BBBike/data/deutschland +BBBike/data/faehren +BBBike/data/flaechen +BBBike/data/gesperrt +BBBike/data/gesperrt_car +BBBike/data/green +BBBike/data/handicap_l +BBBike/data/handicap_s +BBBike/data/hoehe +BBBike/data/housenumbers +BBBike/data/inaccessible_strassen +BBBike/data/innerberliner_grenze +BBBike/data/kneipen +BBBike/data/label +BBBike/data/landstrassen +BBBike/data/landstrassen.desc +BBBike/data/landstrassen2 +BBBike/data/mount +BBBike/data/multi_bez_str +BBBike/data/nolighting +BBBike/data/obst +BBBike/data/orte +BBBike/data/orte2 +BBBike/data/orte_city +BBBike/data/plaetze +BBBike/data/plz +BBBike/data/potsdam +BBBike/data/qualitaet_l +BBBike/data/qualitaet_s +BBBike/data/radwege +BBBike/data/radwege_exact +BBBike/data/rbahn +BBBike/data/rbahnhof +BBBike/data/sbahn +BBBike/data/sbahnhof +BBBike/data/sbahnhof_bg +BBBike/data/sehenswuerdigkeit +BBBike/data/sehenswuerdigkeit.desc +BBBike/data/sehenswuerdigkeit_img/brandenburger_tor.gif +BBBike/data/sehenswuerdigkeit_img/fernsehturm.gif +BBBike/data/sehenswuerdigkeit_img/funkturm.gif +BBBike/data/sehenswuerdigkeit_img/gedaechtniskirche.gif +BBBike/data/sehenswuerdigkeit_img/luftbrueckendenkmal.gif +BBBike/data/sehenswuerdigkeit_img/reichstag.gif +BBBike/data/sehenswuerdigkeit_img/siegessaeule.gif +BBBike/data/strassen +BBBike/data/strassen.desc +BBBike/data/ubahn +BBBike/data/ubahnhof +BBBike/data/ubahnhof_bg +BBBike/data/umsteigebhf +BBBike/data/vorfahrt +BBBike/data/wasserstrassen +BBBike/data/wasserumland +BBBike/data/wasserumland2 +BBBike/ext/BBBikeXS/BBBikeXS.pm +BBBike/ext/BBBikeXS/BBBikeXS.xs +BBBike/ext/BBBikeXS/MANIFEST +BBBike/ext/BBBikeXS/Makefile.PL +BBBike/ext/BBBikeXS/README +BBBike/ext/BBBikeXS/sqrt.c +BBBike/ext/BBBikeXS/t/base.t +BBBike/ext/BBBikeXS/t/leak.t +BBBike/ext/BBBikeXS/t/makenet.t +BBBike/ext/BBBikeXS/t/prefer_cache.t +BBBike/ext/BBBikeXS/t/strecke.t +BBBike/ext/BBBikeXS/t/to_koord1.t +BBBike/ext/BBBikeXS/typemap +BBBike/ext/GNUmakefile +BBBike/ext/Makefile +BBBike/ext/Strassen-Inline/Inline.pm +BBBike/ext/Strassen-Inline/InlineDist.pm +BBBike/ext/Strassen-Inline/Makefile.PL +BBBike/ext/Strassen-Inline/heap.c +BBBike/ext/Strassen-Inline/heap.h +BBBike/ext/Strassen-Inline/ppport.h +BBBike/ext/Strassen-Inline/t/common.pl +BBBike/ext/Strassen-Inline/t/db_impl.t +BBBike/ext/Strassen-Inline/t/hv_impl.t +BBBike/ext/Strassen-Inline2/Inline2.pm +BBBike/ext/Strassen-Inline2/Inline2Dist.pm +BBBike/ext/Strassen-Inline2/Makefile.PL +BBBike/ext/Strassen-Inline2/ppport.h +BBBike/ext/Strassen-Inline2/t/common.pl +BBBike/ext/Strassen-Inline2/t/db_impl.t +BBBike/ext/Strassen-Inline2/t/hv_impl.t +BBBike/ext/StrassenNetz-CNetFile/CNetFile.pm +BBBike/ext/StrassenNetz-CNetFile/CNetFileDist.pm +BBBike/ext/StrassenNetz-CNetFile/CNetFilePerl.pm +BBBike/ext/StrassenNetz-CNetFile/Makefile.PL +BBBike/ext/StrassenNetz-CNetFile/ppport.h +BBBike/ext/StrassenNetz-CNetFile/t/base.t +BBBike/ext/VectorUtil-Inline/Inline.pm +BBBike/ext/VectorUtil-Inline/InlineDist.pm +BBBike/ext/VectorUtil-Inline/InlinePerl.pm +BBBike/ext/VectorUtil-Inline/Makefile.PL +BBBike/ext/VectorUtil-Inline/t/point_in_poly.t +BBBike/ext/VectorUtil-Inline/t/vectorutil.t +BBBike/ext/VirtArray/Changes +BBBike/ext/VirtArray/MANIFEST +BBBike/ext/VirtArray/Makefile.PL +BBBike/ext/VirtArray/README +BBBike/ext/VirtArray/VirtArray.pm +BBBike/ext/VirtArray/VirtArray.xs +BBBike/ext/VirtArray/test.pl +BBBike/ext/VirtArray/typemap +BBBike/ext/inline2dist.pl +BBBike/gnome/BBBikeDoc.tmpl +BBBike/gnome/BBBikeWWW +BBBike/gnome/bbbike.keys +BBBike/gnome/bbbike.mime +BBBike/html/allstreet.html +BBBike/html/bbbike.css +BBBike/html/bbbike_result.js +BBBike/html/bbbike_sidebar.en.html +BBBike/html/bbbike_sidebar.html +BBBike/html/bbbike_small.en.html +BBBike/html/bbbike_small.html +BBBike/html/bbbike_start.js +BBBike/html/bbbikepod.css +BBBike/html/bbbikeprint.css +BBBike/html/empty.html +BBBike/html/legende.html +BBBike/html/pleasewait.html +BBBike/html/presse.html +BBBike/images/PoweredByPerl.gif +BBBike/images/abc.gif +BBBike/images/abc.xpm +BBBike/images/abc_hi.gif +BBBike/images/abc_hi.xpm +BBBike/images/addnet_ptr.xbm +BBBike/images/addnet_ptr_mask.xbm +BBBike/images/airport.gif +BBBike/images/airport.xpm +BBBike/images/ampel.gif +BBBike/images/ampel.png +BBBike/images/ampel.xpm +BBBike/images/ampel_klein.gif +BBBike/images/ampel_klein.jpg +BBBike/images/ampel_klein.png +BBBike/images/ampel_klein.xpm +BBBike/images/ampel_klein2.gif +BBBike/images/ampel_klein2.jpg +BBBike/images/ampel_klein2.png +BBBike/images/ampel_klein2.xpm +BBBike/images/ampel_klein2_rahmen.gif +BBBike/images/ampel_klein2_rahmen.png +BBBike/images/ampel_klein2_rahmen.xpm +BBBike/images/ampel_klein_grey.xpm +BBBike/images/andreaskr.gif +BBBike/images/andreaskr.png +BBBike/images/andreaskr.xpm +BBBike/images/andreaskr_klein.gif +BBBike/images/andreaskr_klein.jpg +BBBike/images/andreaskr_klein.png +BBBike/images/andreaskr_klein.xpm +BBBike/images/andreaskr_klein2.gif +BBBike/images/andreaskr_klein2.jpg +BBBike/images/andreaskr_klein2.png +BBBike/images/andreaskr_klein2.xpm +BBBike/images/apfel.gif +BBBike/images/apfel.png +BBBike/images/apfel.xpm +BBBike/images/bbbike_splash.gif +BBBike/images/bbbike_splash.xpm +BBBike/images/behindertenfreundlich.gif +BBBike/images/behindertengerecht.gif +BBBike/images/behindertengerecht_klein.gif +BBBike/images/behindertengerecht_klein2.gif +BBBike/images/berlin_overview_small.gif +BBBike/images/berlin_overview_small.xpm +BBBike/images/berlin_small.gif +BBBike/images/berlin_small.xpm +BBBike/images/berlin_small_hi.gif +BBBike/images/berlin_small_hi.xpm +BBBike/images/bg.gif +BBBike/images/bg.jpg +BBBike/images/bicycle.gif +BBBike/images/bicycle.xpm +BBBike/images/birne.gif +BBBike/images/birne.png +BBBike/images/birne.xpm +BBBike/images/bw_hleft.wbmp +BBBike/images/bw_hright.wbmp +BBBike/images/bw_left.wbmp +BBBike/images/bw_right.wbmp +BBBike/images/bw_straight.wbmp +BBBike/images/cgi_legende.gif +BBBike/images/cgi_legende.xpm +BBBike/images/church.gif +BBBike/images/church.png +BBBike/images/church.xpm +BBBike/images/click.gif +BBBike/images/click.xpm +BBBike/images/cross.gif +BBBike/images/cross.xpm +BBBike/images/delete_ovl.gif +BBBike/images/delnet_ptr.xbm +BBBike/images/delnet_ptr_mask.xbm +BBBike/images/dest_ptr.xbm +BBBike/images/dest_ptr_mask.xbm +BBBike/images/essen.gif +BBBike/images/essen.xpm +BBBike/images/essen_klein.gif +BBBike/images/essen_klein.xpm +BBBike/images/exit.gif +BBBike/images/exit.xpm +BBBike/images/favicon.ico +BBBike/images/ferry.gif +BBBike/images/ferry.png +BBBike/images/ferry.xpm +BBBike/images/ferry_klein.gif +BBBike/images/ferry_klein.png +BBBike/images/ferry_klein.xpm +BBBike/images/flaechen.gif +BBBike/images/flaechen.xpm +BBBike/images/flag2_bl.gif +BBBike/images/flag2_bl.jpg +BBBike/images/flag2_bl.png +BBBike/images/flag2_bl.xpm +BBBike/images/flag_via.gif +BBBike/images/flag_via.xpm +BBBike/images/flag_ziel.gif +BBBike/images/flag_ziel.jpg +BBBike/images/flag_ziel.png +BBBike/images/flag_ziel.xpm +BBBike/images/gefaelle.gif +BBBike/images/gefaelle.xpm +BBBike/images/glas.gif +BBBike/images/glas.xpm +BBBike/images/glas_klein.gif +BBBike/images/glas_klein.xpm +BBBike/images/haltestelle.gif +BBBike/images/haltestelle.xpm +BBBike/images/hatched_ring.gif +BBBike/images/hatched_ring.png +BBBike/images/hatched_ring.xpm +BBBike/images/help.gif +BBBike/images/help.xpm +BBBike/images/hospital.gif +BBBike/images/hospital.xpm +BBBike/images/info.gif +BBBike/images/info.xpm +BBBike/images/info_ptr.xbm +BBBike/images/info_ptr_mask.xbm +BBBike/images/inwork.gif +BBBike/images/inwork.xpm +BBBike/images/kino_klein.gif +BBBike/images/kino_klein.xpm +BBBike/images/kirsche.gif +BBBike/images/kirsche.png +BBBike/images/kirsche.xpm +BBBike/images/koord.gif +BBBike/images/koord.xpm +BBBike/images/kopfstein_klein.gif +BBBike/images/kopfstein_klein.xpm +BBBike/images/kopfstein_klein_grey.gif +BBBike/images/kopfstein_klein_grey.xpm +BBBike/images/landstrasse.gif +BBBike/images/landstrasse.xpm +BBBike/images/legend_blocked.gif +BBBike/images/legend_blockedroute.gif +BBBike/images/legend_carry.gif +BBBike/images/legend_narrowpassage.gif +BBBike/images/legend_oneway.gif +BBBike/images/lightning.gif +BBBike/images/lightning_cursor.xbm +BBBike/images/map.gif +BBBike/images/map.xpm +BBBike/images/menupfeil.gif +BBBike/images/menupfeil.xpm +BBBike/images/monument.gif +BBBike/images/monument.xpm +BBBike/images/moon.xpm +BBBike/images/movehand.gif +BBBike/images/movehand.xpm +BBBike/images/movehand_ptr.xbm +BBBike/images/movehand_ptr_mask.xbm +BBBike/images/open.gif +BBBike/images/open.xpm +BBBike/images/open_ovl.gif +BBBike/images/opt.gif +BBBike/images/opt.xpm +BBBike/images/ort.gif +BBBike/images/ort.xpm +BBBike/images/pflaume.gif +BBBike/images/pflaume.png +BBBike/images/pflaume.xpm +BBBike/images/printer.gif +BBBike/images/printer.xpm +BBBike/images/ptr.xbm +BBBike/images/px_1t.gif +BBBike/images/radrouten.gif +BBBike/images/rbahn.gif +BBBike/images/rbahn.xpm +BBBike/images/reddot.gif +BBBike/images/rueckweg.gif +BBBike/images/rueckweg.xpm +BBBike/images/salesman.gif +BBBike/images/salesman.xpm +BBBike/images/salesman_ptr.xbm +BBBike/images/salesman_ptr_mask.xbm +BBBike/images/save.gif +BBBike/images/save.xpm +BBBike/images/sbahn.gif +BBBike/images/sbahn.png +BBBike/images/sbahn.xpm +BBBike/images/sbahn_klein.gif +BBBike/images/sbahn_klein.png +BBBike/images/sbahn_klein.xpm +BBBike/images/sbahn_mini.gif +BBBike/images/sbahn_mini.png +BBBike/images/sbahn_mini.xpm +BBBike/images/search.gif +BBBike/images/search.xpm +BBBike/images/search_pref.gif +BBBike/images/search_pref.xpm +BBBike/images/srtbike.gif +BBBike/images/srtbike.ico +BBBike/images/srtbike.jpg +BBBike/images/srtbike.png +BBBike/images/srtbike.xbm +BBBike/images/srtbike.xpm +BBBike/images/srtbike16.gif +BBBike/images/srtbike16.xpm +BBBike/images/srtbike16_mask.xbm +BBBike/images/srtbike32.gif +BBBike/images/srtbike32.xpm +BBBike/images/srtbike32_mask.xbm +BBBike/images/srtbike_mini.xpm +BBBike/images/srtbike_solid.gif +BBBike/images/srtbike_solid.xpm +BBBike/images/srtbike_url.png +BBBike/images/srtbike_www.ico +BBBike/images/srtbike_www.xpm +BBBike/images/star.gif +BBBike/images/star.png +BBBike/images/star.xpm +BBBike/images/start.gif +BBBike/images/start.xpm +BBBike/images/start_ptr.xbm +BBBike/images/start_ptr_mask.xbm +BBBike/images/steigung.gif +BBBike/images/steigung.png +BBBike/images/steigung.xpm +BBBike/images/stip.xbm +BBBike/images/strasse.gif +BBBike/images/strasse.xpm +BBBike/images/strlist.gif +BBBike/images/strlist.xpm +BBBike/images/thunder_cursor.xbm +BBBike/images/ubahn.gif +BBBike/images/ubahn.png +BBBike/images/ubahn.xpm +BBBike/images/ubahn_klein.gif +BBBike/images/ubahn_klein.png +BBBike/images/ubahn_klein.xpm +BBBike/images/ubahn_mini.gif +BBBike/images/ubahn_mini.png +BBBike/images/ubahn_mini.xpm +BBBike/images/usercross.gif +BBBike/images/usercross.xpm +BBBike/images/via.gif +BBBike/images/via.xpm +BBBike/images/via_add_nb1_ptr.xbm +BBBike/images/via_add_nb1_ptr_mask.xbm +BBBike/images/via_add_nb2_ptr.xbm +BBBike/images/via_add_nb2_ptr_mask.xbm +BBBike/images/via_add_ptr.xbm +BBBike/images/via_add_ptr_mask.xbm +BBBike/images/via_del_ptr.xbm +BBBike/images/via_del_ptr_mask.xbm +BBBike/images/via_move_2_ptr.xbm +BBBike/images/via_move_2_ptr_mask.xbm +BBBike/images/via_move_ptr.xbm +BBBike/images/via_move_ptr_mask.xbm +BBBike/images/viewmag+.gif +BBBike/images/viewmag+.xpm +BBBike/images/viewmag-.gif +BBBike/images/viewmag-.xpm +BBBike/images/vorfahrt.gif +BBBike/images/vorfahrt.xpm +BBBike/images/wasser.gif +BBBike/images/wasser.xpm +BBBike/images/watch_ptr.xbm +BBBike/images/watch_ptr_mask.xbm +BBBike/images/windrose.gif +BBBike/images/windrose.xpm +BBBike/images/windrose2.gif +BBBike/images/windrose2.xpm +BBBike/images/xy_ptr.xbm +BBBike/images/xy_ptr_mask.xbm +BBBike/images/ziel.gif +BBBike/images/ziel.xpm +BBBike/images/ziel_ptr.xbm +BBBike/images/ziel_ptr_mask.xbm +BBBike/images/zugbruecke.gif +BBBike/images/zugbruecke.xpm +BBBike/install.bat +BBBike/install.pl +BBBike/install.pl.config +BBBike/kde/BBBike.kdelnk.tmpl +BBBike/kde/BBBikeDoc.kdelnk.tmpl +BBBike/kde/BBBikeWWW.kdelnk.tmpl +BBBike/kde/x-bbbike-data.kdelnk +BBBike/kde/x-bbbike-route.kdelnk +BBBike/kde/x-gpstrack.kdelnk +BBBike/lib/AutoInstall/Tk.pm +BBBike/lib/BikePower.pm +BBBike/lib/BikePower/HTML.pm +BBBike/lib/BikePower/Tk.pm +BBBike/lib/BikePower/change_wind.xpm +BBBike/lib/BikePower/crouch.xpm +BBBike/lib/BikePower/pack_end.xpm +BBBike/lib/BikePower/pack_middle.xpm +BBBike/lib/BikePower/racing.xpm +BBBike/lib/BikePower/standing.xpm +BBBike/lib/BikePower/tuck.xpm +BBBike/lib/BikePower/up_down.xpm +BBBike/lib/BikePower/upright.xpm +BBBike/lib/BrowserInfo.pm +BBBike/lib/Devel/WidgetDump.pm +BBBike/lib/GD/Convert.pm +BBBike/lib/Geometry.pm +BBBike/lib/Http.pm +BBBike/lib/KDEUtil.pm +BBBike/lib/Met/Wind.pm +BBBike/lib/Msg.pm +BBBike/lib/MyFile.pm +BBBike/lib/Text/ScriptTemplate.pm +BBBike/lib/Tk/Arrow.pm +BBBike/lib/Tk/Autoscroll.pm +BBBike/lib/Tk/BreakMenu.pm +BBBike/lib/Tk/CanvasBalloon.pm +BBBike/lib/Tk/CanvasExt.pm +BBBike/lib/Tk/CanvasFig.pm +BBBike/lib/Tk/CanvasUtil.pm +BBBike/lib/Tk/ColorFlowChooser.pm +BBBike/lib/Tk/ContextHelp.pm +BBBike/lib/Tk/Enscript.pm +BBBike/lib/Tk/FastSplash.pm +BBBike/lib/Tk/FileDialogExt.pm +BBBike/lib/Tk/FlatCheckbox.pm +BBBike/lib/Tk/FlatRadiobutton.pm +BBBike/lib/Tk/Getopt.pm +BBBike/lib/Tk/K2Listbox.pm +BBBike/lib/Tk/KListbox.pm +BBBike/lib/Tk/LayerEditor.pm +BBBike/lib/Tk/LayerEditorCore.pm +BBBike/lib/Tk/LayerEditorToplevel.pm +BBBike/lib/Tk/LogScale.pm +BBBike/lib/Tk/PathEntry.pm +BBBike/lib/Tk/PathEntry/Dialog.pm +BBBike/lib/Tk/Placement.pm +BBBike/lib/Tk/ProgressSplash.pm +BBBike/lib/Tk/RaisedButton.pm +BBBike/lib/Tk/RotFont.pm +BBBike/lib/Tk/Ruler.pm +BBBike/lib/Tk/SRTProgress.pm +BBBike/lib/Tk/SRTScrollbar.pm +BBBike/lib/Tk/Splash.pm +BBBike/lib/Tk/StippleLine.pm +BBBike/lib/Tk/TextProgress.pm +BBBike/lib/Tk/UnderlineAll.pm +BBBike/lib/Tk/WListbox.pm +BBBike/lib/Tk/WidgetDump.pm +BBBike/lib/Tk/context_help.xbm +BBBike/lib/Tk/context_help_mask.xbm +BBBike/lib/Tk/context_nohelp.xbm +BBBike/lib/Tk/context_nohelp_mask.xbm +BBBike/lib/Tk/enscript.cfg +BBBike/lib/Tk/grid000.xbm +BBBike/lib/Tk/grid045.xbm +BBBike/lib/Tk/grid090.xbm +BBBike/lib/Tk/grid135.xbm +BBBike/lib/Tk/layereye.gif +BBBike/lib/Tk/resizeButton.pm +BBBike/lib/TkChange.pm +BBBike/lib/TkCompat.pm +BBBike/lib/UnixUtil.pm +BBBike/lib/VectorUtil.pm +BBBike/lib/WWWBrowser.pm +BBBike/lib/Waitproc.pm +BBBike/lib/Win32Util.pm +BBBike/lib/WinCompat.pm +BBBike/lib/click.au +BBBike/lib/click.wav +BBBike/lib/enum.pm +BBBike/lib/get_and_store_synop +BBBike/lib/parse_synop +BBBike/lib/savevars.pm +BBBike/lib/wettermeldung2 +BBBike/lib/your.pm +BBBike/msg/bbbike/en +BBBike/msg/install/en +BBBike/podindex.html +BBBike/smsbbbike +@exec ln -fs %D/%F %D/bin/smsbbbike +@unexec rm -f %D/bin/smsbbbike +BBBike/tkbikepwr +BBBike/tmp/.keep_me +BBBike/lib/%%LOCAL_PERL_ARCH%%/BBBikeXS.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/Strassen/Inline.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/Strassen/Inline2.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/Strassen/Inline2Dist.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/Strassen/InlineDist.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/StrassenNetz/CNetFile.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/StrassenNetz/CNetFileDist.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/StrassenNetz/CNetFilePerl.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/VectorUtil/Inline.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/VectorUtil/InlineDist.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/VectorUtil/InlinePerl.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/VirtArray.pm +BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/BBBikeXS/BBBikeXS.bs +BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/BBBikeXS/BBBikeXS.so +BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/Strassen/Inline/Inline.bs +BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/Strassen/Inline/Inline.so +BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/Strassen/Inline2/Inline2.so +BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/StrassenNetz/CNetFile/CNetFile.so +BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/VectorUtil/Inline/Inline.so +BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/VirtArray/VirtArray.bs +BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/VirtArray/VirtArray.so +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/StrassenNetz/CNetFile +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/VectorUtil/Inline +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/Strassen/Inline2 +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/Strassen/Inline +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/StrassenNetz +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/VectorUtil +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/VirtArray +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/Strassen +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/auto/BBBikeXS +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/StrassenNetz +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/VectorUtil +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/Strassen +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%%/auto +@dirrm BBBike/ext/StrassenNetz-CNetFile/t +@dirrm BBBike/data/sehenswuerdigkeit_img +@dirrm BBBike/ext/StrassenNetz-CNetFile +@dirrm BBBike/lib/%%LOCAL_PERL_ARCH%% +@dirrm BBBike/ext/VectorUtil-Inline/t +@dirrm BBBike/ext/Strassen-Inline2/t +@dirrm BBBike/ext/VectorUtil-Inline +@dirrm BBBike/ext/Strassen-Inline/t +@dirrm BBBike/ext/Strassen-Inline2 +@dirrm BBBike/ext/Strassen-Inline +@dirrm BBBike/lib/Tk/PathEntry +@dirrm BBBike/lib/AutoInstall +@dirrm BBBike/ext/BBBikeXS/t +@dirrm BBBike/ESRI/Shapefile +@dirrm BBBike/lib/BikePower +@dirrm BBBike/ext/VirtArray +@dirrm BBBike/ext/BBBikeXS +@dirrm BBBike/msg/install +@dirrm BBBike/msg/bbbike +@dirrm BBBike/BBBikeDraw +@dirrm BBBike/lib/Devel +@dirrm BBBike/Geography +@dirrm BBBike/lib/Text +@dirrm BBBike/Strassen +@dirrm BBBike/lib/Met +@dirrm BBBike/lib/Tk +@dirrm BBBike/lib/GD +@dirrm BBBike/images +@dirrm BBBike/ESRI/t +@dirrm BBBike/Bundle +@dirrm BBBike/gnome +@dirrm BBBike/Route +@dirrm BBBike/Karte +@dirrm BBBike/GPS/t +@dirrm BBBike/html +@dirrm BBBike/data +@dirrm BBBike/ESRI +@dirrm BBBike/tmp +@dirrm BBBike/msg +@dirrm BBBike/lib +@dirrm BBBike/kde +@dirrm BBBike/ext +@dirrm BBBike/cgi +@dirrm BBBike/Way +@dirrm BBBike/PLZ +@dirrm BBBike/GPS +@dirrm BBBike/GIS +@dirrm BBBike #### End of Patch data #### #### ApplyPatch data follows #### # Data version : 1.0 # Date generated : Thu Mar 18 00:21:16 2004 # Generated by : makepatch 2.00_05 # Recurse directories : Yes # r 'pkg-plist.5005' 23141 0 # r 'pkg-plist' 23414 0 # p 'Makefile' 1668 1079565533 0100644 # c 'pkg-plist.in' 0 1079565533 0100644 #### End of ApplyPatch data #### #### End of Patch kit [created: Thu Mar 18 00:21:16 2004] #### #### Patch checksum: 867 25830 51767 #### #### Checksum: 899 26886 9341 #### -- Slaven Rezic - slaven@rezic.de Berlin Perl Mongers - http://berlin.pm.org
State Changed From-To: open->closed Committed, thanks! This now packages correctly with any perl, but sadly it's academical issue because one of dependencies requires 5.8.0