rapidsvn-0.12.1dfsg/0000755000175000017500000000000011773013516013567 5ustar monicamonicarapidsvn-0.12.1dfsg/INSTALL0000644000175000017500000004466011772776062014645 0ustar monicamonica ====================================== INSTALLING RapidSVN ====================================== Contents: 0. Preface 1. Prerequisites 2. Building on Linux/Unix 3. Building on Windows 4. Building on Mac OS/X 0 Preface This document will provide you some step-by-step instructions to get RapidSVN up and running on several platforms. We are mentioning only a few configurations and solutions that have worked for us. If there is some configuration or information missing that you feel might be important, dont hesitate to post on users@rapidsvn.tigris.org. 1 Prerequisites RapidSVN depends on several libraries, some are optional, some are mandatory, others are necessary only for a specific platform. 1.1 Platforms RapidSVN has been built and is run on several platforms: - Windows 95/98/98 SE/ME/NT/2k/XP - Unix (Linux, Solaris, FreeBSD) - Mac OS/X (Tiger) 1.2 Compilers Most platforms use the GNU GCC Compiler, but on Windows you will need some Microsoft C++ Compiler. We are using VCC 6.0, but newer ones should work as well. There are efforts underway to build on Windows using GCC as well, but right now, MS VCC is the simple answer. 1.3 Libraries RapidSVN can be compiled whereever Subversion and wxWidgets are available. All of the other dependencies are optional or are needed only on some platforms. Mandatory libraries: - Subversion >= 1.0 (for the Subversion functionality) - Apache Portable Runtime (included with Subversion) - Neon (included with Subversion) - wxWidgets (for the graphical user interface) - LibIntl (Windows only) Optional libraries/applications: - InnoSetup: installer for Windows - Berkeley DB: repository access for BDB repositories - doxygen: for code documentation - graphviz: for code documentation (needed with doxygen) - cppunit: for the regression tests - OpenSSL: for SSL support) - xsltproc: manpage generation - DocBook XSL Manpage Stylesheet: manpage creation - libtool: generation of "configure" - autogen: generation of "configure" 2 Building on Linux/Unix 2.1 Building/Installing the libraries You have to make sure Subversion and wxWidgets are compiled and installed on your machine, including the files needed for development (e.g. headers). There are binary packages for Subversion and wxWidgets available on most distributions. As long as you dont need special features that are not compiled in you may want to stick with these. 2.2 Configuring the application If you are building RapidSVN from the tarball, there is already the "configure" script present. If you are building from a fresh working copy from the repository, you need to create this script running ./autogen.sh. You need libtool and autogen for this. Now that you have a "configure" script in the top directory of the RapidSVN source tree, run it and check the output: ./configure The script will try to figure out which libraries are available on your machine and where to find them. There are several options for "configure" to tell the script where to find stuff: --with-apr-config= --with-apu-config= --with-neon-config= --with-wx-config= --with-svn-include= python gen-make.py -t dsp \ --with-openssl=C:\openssl-0.9.8a \ --with-zlib=C:\zlib-1.2.3 --with-libintl=C:\svn-win32-libintl D. Compile Start Microsoft Visual C++ 6.0 and open the workspace: C:\Subversion-1.3.0\subversion_msvc.dsw Activate the configuration "__ALL__ - Debug" and start the compilation. After a while the compilation should have finished. Now activate the configuration "__ALL__ - Release" and start the compilation. 3.1.4 Building wxWidgets 2.6.2 A. Unpack Unpack wxWidgets source package. The directory that contains wxWidgets in our example will be: C:\wxWidgets-2.6.2 B. Patch wxWidgets has to be modified to run without error. The runtime error will only occur when building and running the Unicode Debug build of wxWidgets. Open the file "C:\wxWidgets-2.6.2\src\common\xpmdecod.c" Change line 553 from name = wxStrdupA(inname); to name = _strdup(inname); C. Configure We have to configure and compile wxWidgets four times. To configure wxWidgets you have to edit the file C:\wxWidgets\build\msw\config.vc The following setting apply for all of our configurations: SHARED = 0 MONOLITHIC = 0 USE_GUI = 1 USE_EXCEPTIONS = 1 USE_THREADS = 1 For RapidSVN we need four permutations of BUILD = debug | release UNICODE = 0 | 1 D. Compile Open a command shell and make sure the Visual Studio tools are can be found by typing "nmake". There may be a shortcut to a batch script provided by Microsoft Visual Studio that has setup the environment variables correctly. Change to the directory C:\wxWidgets-2.6.2\build\msw and type nmake /f makefile.vc 3.1.5 Building RapidSVN A. Prepare Create the environment variables OPENSSL, WX and SUBVERSION. In our example, these will be OPENSSL=C:\openssl-0.9.8a SUBVERSION=C:\subversion-1.3.0 WX=C:\wxWidgets-2.6.2 LIBINTL=C:\svn-win32-libintl The directory that contains RapidSVN in our example will be: C:\RapidSVN B. Compile Now open the RapidSVN workspace in Microsoft Visual C++ 6.0: C:\RapidSVN\rapidsvn.dsw Compilation should work out of the box now. You will have to adapt paths a bit if you plan to use a different version of wxWidgets or Subversion. If you want to create an installed you have to compile the configurations: rapidsvn - Win32 Release rapidsvn - Win32 Unicode Release If you plan to debug and develop for RapidSVN you might want to build the debug configurations as well rapidsvn - Win32 Debug rapidsvn - Win32 Unicode Debug C. Create Installer Run the batch script to collect necessary DLLs: C:\RapidSVN\packages\win32\FetchFiles.bat Now open the Innosetup project and compile the installer: C:\RapidSVN\packages\win32\rapidsvn.iss 3.2 Building on Windows using Cygwin and Gtk as X11 application Notation: This build is for only development. It would generate too many non-standard dependencies on your executable binary. 3.2.1 Installing All dependencies Install all below tools and dependencies via setup.exe of Cygwin. gcc g++ make libtool autoconf automake pkg-config xorg-x11-devel gtk2-x11-devel glib2-devel pango-devel atk-devel zlib png-devel libjpeg-devel tiff-devel libapr1 libaprutil1 libiconv2-devel libexpat0 openssl-devel libneon26 subversion-devel All other dependencies will be automaticaly selected. 3.2.4 Building wxWidgets as wxGtk Extract wxWidgets source package. You should build it as wxGtk which requires X11 server. Because wxMSW(using win32api) would conflict with exsisting your Subversion which configured for Cygwin. If you are using version 2.8.7 or lesser you might need to patch. http://svn.wxwidgets.org/viewvc/wx/wxWidgets/branches/WX_2_8_BRANCH/src/unix/displayx11.cpp?r1=49879&r2=50143 mkdir build/cygwin-gtk cd build/cygwin-gtk ../../configure --with-gtk=2 make make install wxGtk would be installed into /usr/local by default with name of ansi-release. But you can cofigure as you like. After installation, dlls are generated in the same directory of libraries. You should move them to your bin directory. mv /usr/local/lib/cygwx*.dll /usr/local/bin 3.2.4 Building and installing RapidSVN ...is same as Linux/Unix section. See 2.2 - 2.4. If your configure script failed, retry like: ./configure --with-apr-confg=apr-1-config --with-apu-config=apu-1-config 3.2.4 Using or testing RapidSVN X11 server is required before starting RapidSVN. (Xming is recommended instead of CygwinX.) And DISPLAY environment variable should be set to connect to X11 server form X client. DISPLAY=localhost:0 export DISPLAY Well, raunch RapidSVN now. src/rapidsvn.exe& 4 Building on Mac OS/X Basically, building on Mac OS/X the same mechanisms are used as under Linux. But there are some differences. While on Linux an application is a binary which relies on some shared libraries (which are single binary files as well), application on Mac OS/X have to resist in a special directory structure. This binary can still rely on other shared libraries, but since most applications on Mac OS/X are installed only by dragging the application icon to the destination you cannot be sure, whethere the installed shared libraries match the versions you need. We decided to use only static linking for Subversion and wxWidgets on Mac OS/X, so everything is included in a single binary. Berkeley DB (BDB) support is not included because of difficulties enabling static BDB support while building Subversion 1.6.2+. (It might work as a dynamic build with a normally-installed Berkeley DB on the system, as per Linux and other Unixes, but this would not result in a self-contained and easily-installed Mac OS X application.) 4.1 Preparations Create the following directory: $HOME/RapidSVN-build This will be our temporary directory where all the necessary libraries that arent part of Darwin/OS X will be. The RapidSVN working copy will be there too. To make life easier for the configure scripts run "export PATH=$HOME/RapidSVN-build/bin:$PATH" 4.2 Download and Install required packages Make sure you have installed Xcode (so gcc will work). Download the following tarballs: - wxMac-2.8.10.tar.gz - subversion-1.6.2.tar.gz (or newer) - subversion-deps-1.6.2.tar.gz (or newer) Extract the packages to $HOME/RapidSVN-build, so we have a directory $HOME/RapidSVN-build/subversion-1.6.2 and so on. 4.3 Configure/Compile/Install Subversion cd to: $HOME/RapidSVN-build/subversion-1.6.2 Configure a static build with OpenSSL and Berkeley DB support: CFLAGS="-g -O2 -arch i386 -arch ppc -mmacosx-version-min=10.3 -fvisibility=hidden" \ LDFLAGS="-arch i386 -arch ppc -mmacosx-version-min=10.3" ./configure --prefix=$HOME/RapidSVN-build \ --without-berkeley-db --with-ssl --disable-shared --without-apxs Compile and install Subversion: make make install You can check your installation for OpenSSL support by running: svn --version Check for the line '- handles 'https' scheme'. 4.4 Configure/Compile/Install wxWidgets cd to the extracted wxWidgets directory. Configure wxWidgets, so it is NOT built as shared library; with Unicode support: CFLAGS="-I$HOME/RapidSVN-build/include/apr-1" \ CXXFLAGS="-I$HOME/RapidSVN-build/include/apr-1" \ LDFLAGS="-L$HOME/RapidSVN-build/lib" \ ./configure --prefix=$HOME/RapidSVN-build \ --disable-shared --enable-unicode --enable-universal_binary \ --with-macosx-version-min=10.3 Compile wxWidgets: make Install wxWidgets after successful compilation: make install If you have set PATH you can run "wx-config" now. If this works you have a running wxWidgets installation 4.5 Configure/Compile/Install RapidSVN Download and extract a RapidSVN tarball or checkout a new working copy of RapidSVN in $HOME/RapidSVN-build/rapidsvn Cd to the directory. Now configure the static build: CFLAGS="-g -O2 -arch i386 -arch ppc -fvisibility=hidden -I$HOME/RapidSVN-build/include" \ CXXFLAGS="-g -O2 -arch i386 -arch ppc -fvisibility=hidden -fvisibility-inlines-hidden" \ LDFLAGS="-arch i386 -arch ppc -L$HOME/RapidSVN-build/lib" ./configure --prefix=$HOME/RapidSVN-build \ --disable-shared \ --with-svn-include=$HOME/RapidSVN-build/include \ --with-svn-lib=$HOME/RapidSVN-build/lib \ --with-apr-config=$HOME/RapidSVN-build/bin/apr-1-config \ --with-apu-config=$HOME/RapidSVN-build/bin/apu-1-config \ --with-wx-config=$HOME/RapidSVN-build/bin/wx-config \ --disable-dependency-tracking Compile RapidSVN: make Since you cannot run a carbon application directly you have to create RapidSVN.app first: cd packages/osx ./make_osx_bundle.sh You can run RapidSVN from the shell: open -a RapidSVN.app rapidsvn-0.12.1dfsg/configure.in0000644000175000017500000002623111773013430016077 0ustar monicamonicaAC_INIT(src/rapidsvn_app.cpp) AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE(rapidsvn, 0.12.1) AC_PROG_CXX AC_PROG_INSTALL AC_LIBTOOL_DLOPEN AC_PROG_LIBTOOL abs_srcdir="`cd $srcdir && pwd`" CPPFLAGS="$CPPFLAGS -I$abs_srcdir/include" dnl dnl GCC specifics dnl AC_MSG_CHECKING([for gcc/g++]) if test "$GXX" = "yes" ; then AC_MSG_RESULT([found (using "-Wall", "-Wextra" and "-fexceptions")]) CPPFLAGS="$CPPFLAGS -Wall -W -fexceptions" CXXFLAGS="$CXXFLAGS -Wall -W -fexceptions" else AC_MSG_RESULT([non gcc/g++ compiler]) fi dnl dnl APR dnl APR_CONFIGS="apr-config apr-1-config /usr/local/apr/bin/apr-config" AC_ARG_WITH(apr-config, [[ --with-apr-config=FILE Use the given path to apr-config when determining APR configuration; defaults to "apr-config"]], [ if test "$withval" != "yes" -a "$withval" != ""; then APR_CONFIGS=$withval fi ]) AC_MSG_CHECKING([for APR]) APR_CONFIG="" for VALUE in $APR_CONFIGS ; do if $VALUE --cflags >/dev/null 2>&1; then APR_CONFIG=$VALUE break fi done if test $APR_CONFIG ; then AC_MSG_RESULT([found]) else AC_MSG_RESULT([not found]) AC_MSG_ERROR([APR is required. Try --with-apr-config.]) fi CPPFLAGS="$CPPFLAGS `$APR_CONFIG --cppflags` `$APR_CONFIG --includes`" APR_LIBS="`$APR_CONFIG --link-ld --libs`" dnl dnl APR util dnl APU_CONFIGS="apu-config apu-1-config /usr/local/apr/bin/apu-config" AC_ARG_WITH(apu-config, [[ --with-apu-config=FILE Use the given path to apu-config when determining APR util configuration; defaults to "apu-config"]], [ if test "$withval" != "yes" -a "$withval" != ""; then APU_CONFIGS=$withval fi ]) AC_MSG_CHECKING([for APR util]) APU_CONFIG="" for VALUE in $APU_CONFIGS ; do if $VALUE --includes >/dev/null 2>&1; then APU_CONFIG=$VALUE break fi done if test $APU_CONFIG ; then AC_MSG_RESULT([found]) else AC_MSG_RESULT([not found]) AC_MSG_ERROR([APR util is required. Try --with-apu-config.]) fi CPPFLAGS="$CPPFLAGS `$APU_CONFIG --includes`" APR_LIBS="$APR_LIBS `$APU_CONFIG --link-ld --libs`" dnl dnl Subversion dnl SVN_INCLUDES="/usr/local/include /usr/include" AC_ARG_WITH(svn-include, [[ --with-svn-include=DIR Use the given path to the subversion headers.]], [ if test "$withval" != "yes" -a "$withval" != ""; then SVN_INCLUDES=$withval fi ]) AC_MSG_CHECKING([for Subversion headers]) SVN_INCLUDE="" for VALUE in $SVN_INCLUDES ; do if test -f $VALUE/subversion-1/svn_types.h ; then SVN_INCLUDE=$VALUE break fi done if test $SVN_INCLUDE ; then AC_MSG_RESULT([found]) else AC_MSG_RESULT([not found]) AC_MSG_ERROR([Subversion headers are required. Try --with-svn-include.]) fi CPPFLAGS="$CPPFLAGS -I$SVN_INCLUDE/subversion-1" SVN_LIBS="/usr/lib64 /usr/local/lib /usr/lib" AC_ARG_WITH(svn-lib, [[ --with-svn-lib=DIR Use the given path to the subversion libraries.]], [ if test "$withval" != "yes" -a "$withval" != ""; then SVN_LIBS=$withval fi ]) AC_MSG_CHECKING([for Subversion libraries]) SVN_LIB="" for VALUE in $SVN_LIBS ; do if ls $VALUE/libsvn_client-1.* >/dev/null 2>&1; then SVN_LIB=$VALUE break fi done if test $SVN_LIB ; then AC_MSG_RESULT([found]) else AC_MSG_RESULT([not found]) AC_MSG_ERROR([Subversion libraries are required. Try --with-svn-lib.]) fi SVN_LIBS="-L$SVN_LIB -lsvn_client-1 -lsvn_wc-1 -lsvn_ra-1 -lsvn_delta-1 -lsvn_subr-1" dnl dnl wxWidgets dnl WX_CONFIGS="wx-config" AC_ARG_WITH(wx-config, [[ --with-wx-config=FILE Use the given path to wx-config when determining wxWidgets configuration; defaults to "wx-config"]], [ if test "$withval" != "yes" -a "$withval" != ""; then WX_CONFIGS=$withval fi ]) AC_MSG_CHECKING([wxWidgets version]) WX_CONFIG="" for VALUE in $WX_CONFIGS ; do if WX_VERSION=`$VALUE --version 2>&1` ; then WX_CONFIG=$VALUE break fi done if test $WX_CONFIG ; then AC_MSG_RESULT([$WX_VERSION]) else AC_MSG_RESULT([not found]) AC_MSG_ERROR([wxWidgets is required. Try --with-wx-config.]) fi case $WX_VERSION in [2.4.[2-9]]) ;; [2.[5-9].*]) ;; *) AC_MSG_ERROR([wxWidgets >= 2.4.2 required, found version $WX_VERSION]) AC_MSG_ERROR([Try --with-wx-config.]) ;; esac CPPFLAGS="$CPPFLAGS `$WX_CONFIG --cppflags`" CXXFLAGS="$CXXFLAGS `$WX_CONFIG --cxxflags | sed -e 's/-fno-exceptions//'`" WX_LIBS="`$WX_CONFIG --libs`" dnl dnl Platform specific specials dnl AC_MSG_CHECKING([for platform specifics]) EXTRA_LIBS="" case "$target" in *-*-darwin* ) AC_MSG_RESULT([darwin]) EXTRA_LIBS="-framework Security" ;; *) AC_MSG_RESULT([no]) ;; esac dnl dnl CppUnit dnl CPPUNITCONFIG="cppunit-config" AC_ARG_WITH(cppunit-config, [[ --with-cppunit-config=FILE Use the given path to cppunit-config when determining the cpp Unit configuration; defaults to ""]], [ if test "$withval" = "no"; then CPPUNITCONFIG= elif test "$withval" != "yes"; then CPPUNITCONFIG=$withval fi ]) AC_MSG_CHECKING([cppunit-config]) if test -z "$CPPUNITCONFIG" ; then AC_MSG_RESULT([not used]) else if $CPPUNITCONFIG --version > /dev/null 2>&1; then AC_MSG_RESULT([found]) else AC_MSG_RESULT([not found]) CPPUNITCONFIG= fi fi dnl dnl XsltProc dnl XSLTPROC=xsltproc AC_ARG_WITH(xsltproc, [[ --with-xsltproc=FILE Use the given path to xsltproc; defaults to "xsltproc"]], [ if test "$withval" = "no"; then XSLTPROC= elif test "$withval" != "yes"; then XSLTPROC=$withval fi ]) AC_MSG_CHECKING([xsltproc]) if test -z "$XSLTPROC" ; then AC_MSG_RESULT([not used]) else if $XSLTPROC --version >/dev/null 2>&1 ; then AC_MSG_RESULT([found]) else AC_MSG_RESULT([not found]) XSLTPROC="" fi fi dnl dnl Docbook XSL Manpage Stylesheet dnl DOCBOOK_MANPAGES=yes AC_ARG_WITH(docbook-xsl-manpages, [[ --with-docbook-xsl-manpages=FILE Determine the location of the DocBook XSL manpages stylesheet, needed for manpage generation. REMARK: do not supply something like /.../html/docbook.xsl. The path has to look like /.../manpages/docbook.xsl, otherwise you are using the wrong stylesheet resulting in an invalid manpage]], [ if test "$withval" = "no"; then DOCBOOK_MANPAGES= else DOCBOOK_MANPAGES=$withval fi ]) dnl search for Docbook XSL in standard places dnl remark: I didnt use a list if files for usage in dnl a for .. do .. done loop since the line dnl got too long (file not found error while dnl executing) if test "$DOCBOOK_MANPAGES" = "yes"; then X1=/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl X2=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook/docbook.xsl X3=/usr/share/sgml/docbook/yelp/docbook/manpages/docbook.xsl X4=/usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl X5=/usr/local/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl X6=/usr/local/share/sgml/docbook/yelp/docbook/manpages/docbook.xsl X7=/usr/share/docbook-xsl/manpages/docbook.xsl X8=/usr/share/xml/docbook/stylesheet/nwalsh/current/manpages/docbook.xsl X9=/usr/share/sgml/docbook/xsl-stylesheets*/manpages/docbook.xsl DOCBOOK_MANPAGES=notfound if test -f $X1; then DOCBOOK_MANPAGES=$X1 elif test -f $X2; then DOCBOOK_MANPAGES=$X2 elif test -f $X3; then DOCBOOK_MANPAGES=$X3 elif test -f $X4; then DOCBOOK_MANPAGES=$X4 elif test -f $X5; then DOCBOOK_MANPAGES=$X5 elif test -f $X6; then DOCBOOK_MANPAGES=$X6 elif test -f $X7; then DOCBOOK_MANPAGES=$X7 elif test -f $X8; then DOCBOOK_MANPAGES=$X8 else for X in $X9 ; do if test -f $X; then DOCBOOK_MANPAGES=$X break fi done fi fi AC_MSG_CHECKING([docbook xsl stylesheet for manpages]) if test -z "$DOCBOOK_MANPAGES"; then AC_MSG_RESULT([not used]) elif test -f "$DOCBOOK_MANPAGES"; then AC_MSG_RESULT([found ($DOCBOOK_MANPAGES)]) else AC_MSG_RESULT([not found]) DOCBOOK_MANPAGES="" fi dnl dnl Manpage dnl MANPAGE=yes AC_ARG_WITH(manpage, [[ --with-manpage=yes|no Enable/disable manpage creation]], [ if test "$withval" != "yes"; then MANPAGE=no fi ]) TARGET_MANPAGE=manpage-no MAN_MANS= AC_MSG_CHECKING([manpage creation]) if test "$MANPAGE" = "no"; then AC_MSG_RESULT([no]) elif test "$XSLTPROC" -a "$DOCBOOK_MANPAGES" ; then AC_MSG_RESULT([yes]) TARGET_MANPAGE=manpage-yes MAN_MANS=rapidsvn.1 else AC_MSG_RESULT([no (xsltproc and docbook-xsl with manpage support needed)]) fi dnl dnl Doxygen dnl DOXYGEN=doxygen AC_ARG_WITH(doxygen, [[ --with-doxygen=FILE Use the given path to doxygen. Used for creating API documentation; defaults to "doxygen"]], [ if test "$withval" = "no"; then DOXYGEN= elif test "$withval" != "yes"; then DOXYGEN=$withval fi ]) AC_MSG_CHECKING([doxygen]) if test -z "$DOXYGEN" ; then AC_MSG_RESULT([not used]) else if doxygenversion=`$DOXYGEN --version 2>&1` ; then AC_MSG_RESULT([found]) else AC_MSG_RESULT([not found]) DOXYGEN="" fi fi dnl dnl Dot (Graphviz) dnl DOT=dot AC_ARG_WITH(dot, [[ --with-dot=FILE Use the given path to dot. This tool is needed by doxygen; defaults to "dot"]], [ if test "$withval" = "no"; then DOT= elif test "$withval" != "yes"; then DOT=$withval fi ]) AC_MSG_CHECKING([dot]) if test -z "$DOT" ; then AC_MSG_RESULT([not used]) else if dotbla=`echo | $DOT 2>/dev/null` ; then AC_MSG_RESULT([found]) else AC_MSG_RESULT([not found]) DOT="" fi fi dnl dnl Final check for Doxygen dnl if test "$DOXYGEN" ; then AC_MSG_CHECKING([if doxygen is usable]) if test -z "$DOT" ; then AC_MSG_RESULT([no (dot needed)]) DOXYGEN="" else AC_MSG_RESULT([yes]) fi fi if test "$DOXYGEN" ; then TARGET_DOXYGEN="doxygen-yes" DOXYGEN_DIST="svncpp.dox html/*" else TARGET_DOXYGEN="doxygen-no" DOXYGEN_DIST= fi AC_SUBST(APR_LIBS) AC_SUBST(WX_LIBS) AC_SUBST(SVN_LIBS) AC_SUBST(EXTRA_LIBS) AC_SUBST(DOCBOOK_MANPAGES) AC_SUBST(XSLTPROC) AC_SUBST(TARGET_MANPAGE) AC_SUBST(MAN_MANS) AC_SUBST(DOXYGEN) AC_SUBST(DOXYGEN_DIST) AC_SUBST(TARGET_DOXYGEN) if test "$CPPUNITCONFIG" ; then CPPUNIT_CXXFLAGS="`$CPPUNITCONFIG --cflags`" CPPUNIT_LIBS="`$CPPUNITCONFIG --libs`" AC_SUBST(CPPUNIT_LIBS) AC_SUBST(CPPUNIT_CXXFLAGS) fi AC_OUTPUT(Makefile \ build/Makefile \ build/vc2005/Makefile \ build/vc6/Makefile \ build/xcode/Makefile \ doc/Makefile \ doc/manpage/Makefile \ doc/svncpp/Makefile \ include/Makefile \ include/svncpp/Makefile \ packages/Makefile \ packages/debian/Makefile \ packages/osx/Makefile \ packages/rpm/Makefile \ packages/win32/Makefile \ src/Makefile \ src/locale/Makefile \ src/res/Makefile \ src/svncpp/Makefile \ src/tests/Makefile \ src/tests/svncpp/Makefile \ tools/Makefile) rapidsvn-0.12.1dfsg/packages/0000755000175000017500000000000011773013522015342 5ustar monicamonicarapidsvn-0.12.1dfsg/packages/osx/0000755000175000017500000000000011773013523016154 5ustar monicamonicarapidsvn-0.12.1dfsg/packages/osx/make_osx_bundle.sh0000755000175000017500000000452411773013430021654 0ustar monicamonica#!/bin/bash # Script to generate the RapidSVN.app bundle and # a disk image ready for distribution # # Remove any old stuff. We wanna create a FRESH bundle echo "Remove any old stuff" DISKIMAGE=RapidSVN-0.12.1 DISKIMAGE_FILE=$DISKIMAGE.dmg test -e RapidSVN.app && rm -rf RapidSVN.app rm *.dmg echo "Create the bundle" BUNDLEDIR=RapidSVN.app/Contents mkdir -p $BUNDLEDIR/MacOS mkdir -p $BUNDLEDIR/Resources cp ../../src/rapidsvn $BUNDLEDIR/MacOS/ strip $BUNDLEDIR/MacOS/rapidsvn cp rapidsvn.icns $BUNDLEDIR/Resources/ echo -n 'APPL????' > $BUNDLEDIR/PkgInfo mkdir -p $BUNDLEDIR/Resources/locale pushd ../../src/locale for DIR in ?? ??_?? ; do DSTDIR=../../packages/osx/$BUNDLEDIR/Resources/locale/$DIR SRC=$DIR/rapidsvn.po DST=$DSTDIR/rapidsvn.po mkdir -p $DSTDIR echo "Copy the message catalog $DST" cp $SRC $DST echo "Compile the message catalog $DST" python ../../tools/msgfmt.py $DST done popd echo -n \ " CFBundleInfoDictionaryVersion 6.0 CFBundleIdentifier org.svn.rapidsvn CFBundleDevelopmentRegion English CFBundleExecutable rapidsvn CFBundleIconFile rapidsvn.icns CFBundleName RapidSVN CFBundlePackageType APPL CFBundleSignature ???? CFBundleVersion0.12.1 CFBundleShortVersionString0.12.1 CFBundleGetInfoStringRapidSVN version 0.12.1, (c) 2002-2012 RapidSVN CFBundleLongVersionString0.12.1, (c) 2002-2012 RapidSVN NSHumanReadableCopyright Copyright 2002-2007 RapidSVN LSRequiresCarbon CSResourcesFileMapped " > $BUNDLEDIR/Info.plist # Sometimes hdiutil will produce an error # we dont have the cause for this yet. # First try: we wait a while for things to settle sleep 5 echo "Now create the disk image $DISKIMAGE from the bundle" hdiutil create -srcfolder RapidSVN.app $DISKIMAGE || echo "hdiutil error" test -e $DISKIMAGE_FILE && echo Success!! rapidsvn-0.12.1dfsg/packages/osx/Makefile.in0000644000175000017500000002360511773013466020235 0ustar monicamonica# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = packages/osx DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ APR_LIBS = @APR_LIBS@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CXXFLAGS = @CPPUNIT_CXXFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOCBOOK_MANPAGES = @DOCBOOK_MANPAGES@ DOXYGEN = @DOXYGEN@ DOXYGEN_DIST = @DOXYGEN_DIST@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXTRA_LIBS = @EXTRA_LIBS@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAN_MANS = @MAN_MANS@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SVN_LIBS = @SVN_LIBS@ TARGET_DOXYGEN = @TARGET_DOXYGEN@ TARGET_MANPAGE = @TARGET_MANPAGE@ VERSION = @VERSION@ WX_LIBS = @WX_LIBS@ XSLTPROC = @XSLTPROC@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = make_osx_bundle.sh rapidsvn.icns all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu packages/osx/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu packages/osx/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: rapidsvn-0.12.1dfsg/packages/osx/Makefile.am0000644000175000017500000000005311772776062020223 0ustar monicamonicaEXTRA_DIST=make_osx_bundle.sh rapidsvn.icnsrapidsvn-0.12.1dfsg/packages/osx/rapidsvn.icns0000644000175000017500000006312711772776062020706 0ustar monicamonicaicnsfWics#Hџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџis32‹‰9Я•ˆ%Ѕб= ƒJ­йb€ ђБloˆЕъ­O‚„џЁ—я@ў‚џћ-–я?œџўv†pЬщЬZœ 'ˆIёџџчX‡џи‡ч€џЄˆ&еџљ2‰\6”‰9Я•ˆ%Ѕб= ƒJ­йb€ ђБloˆЕъ­O‚„џЁ—я@ў‚џћ-–я?œџўv†pЬщЬZœ 'ˆIёџџчX‡џи‡ч€џЄˆ&еџљ2‰\6”‰9Я•ˆ%Ѕб= ƒJ­йb€ ђБloˆЕъ­O‚„џЁ—я@ў‚џћ-–я?œџўv†pЬщЬZœ 'ˆIёџџчX‡џи‡ч€џЄˆ&еџљ2‰\6”s8mk@кўџџџџџџџџџџўс@нџџџџџџџџџџџџџџжўџџџџџџџџџџџџџџ§џџџџџџџџџџџџџџџўџџџџџџџџџџџџџџџўџџџџџџџџџџџџџџџўџџџџџџџџџџџџџџџўџџџџџџџџџџџџџџџўџџџџџџџџџџџџџџџўџџџџџџџџџџџџџџџўџџџџџџџџџџџџџџџўџџџџџџџџџџџџџџџўџџџџџџџџџџџџџџџўўџџџџџџџџџџџџџџўжџџџџџџџџџџџџџџн@сўџџџџџџџџџџўк@ICN#?џџќџџўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџў?џџќ?џџќџџўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџў?џџќil32k–cь —4Хџѕt•#Є§џГ!•(žњџдI”NЖўџм`„[ ‰D”шџџЬZ†џѕЖzL+8[‡Нѕџџ№›8‰ŒџЫK„ 6Œџ[…5ыџљa€‹џщ …Є€џп€‹џo†m€џЇ€ь‰џЪ‡U”n€Uў‡џш!gњ…џо*’-Ћјџѓ• 9TX> ќ jУшёшЭœM’Л…џЩ‘3‡џš‘ќ†џЛ’š†џ†’ Ш…џ2“ОƒџУ•‰§€џі/—7ЗяЬ=џ‰–cь —4Хџѕt•#Є§џГ!•(žњџдI”NЖўџм`„[ ‰D”шџџЬZ†џѕЖzL+8[‡Нѕџџ№›8‰ŒџЫK„ 6Œџ[…5ыџљa€‹џщ …Є€џп€‹џo†m€џЇ€ь‰џЪ‡U”n€Uў‡џш!gњ…џо*’-Ћјџѓ• 9TX> ќ jУшёшЭœM’Л…џЩ‘3‡џš‘ќ†џЛ’š†џ†’ Ш…џ2“ОƒџУ•‰§€џі/—7ЗяЬ=џ‰–cь —4Хџѕt•#Є§џГ!•(žњџдI”NЖўџм`„[ ‰D”шџџЬZ†џѕЖzL+8[‡Нѕџџ№›8‰ŒџЫK„ 6Œџ[…5ыџљa€‹џщ …Є€џп€‹џo†m€џЇ€ь‰џЪ‡U”n€Uў‡џш!gњ…џо*’-Ћјџѓ• 9TX> ќ jУшёшЭœM’Л…џЩ‘3‡џš‘ќ†џЛ’š†џ†’ Ш…џ2“ОƒџУ•‰§€џі/—7ЗяЬ=џ‰l8mkп§џџџџџџџџџџџџџџџџџџџџџџўъЁрџџџџџџџџџџџџџџџџџџџџџџџџџџџџсџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџŒчџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџнўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ§џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ§џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџўнџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџчŒџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџсџџџџџџџџџџџџџџџџџџџџџџџџџџџџр щўџџџџџџџџџџџџџџџџџџџџџџ§пich#H?џџќџџўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџў?џџќ?џџќџџўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџў?џџќih32•џџџ˜cь Ї4ХџѕtЅ#Є§џГ!Ѕ(žњџдIЄNЖўџм`”[ ‰D”шџџЬZ–џѕЖzL+8[‡Нѕџџ№›8™ŒџЫK„ 6‘Œџ[…5ыџљa‹џщ …Є€џп‹џo†m€џЇь‰џЪ‡U”nUў‡џш! gњ…џо*Ђ-ЋјџѓЅ 9TX> џК jУшёшЭœMЂЛ…џЩЁ3‡џšЁќ†џЛЂš†џ†Ђ Ш…џ2ЃОƒџУЅ‰§€џі/Ї7ЗяЬ=џџџџЫџџџ˜cь Ї4ХџѕtЅ#Є§џГ!Ѕ(žњџдIЄNЖўџм`”[ ‰D”шџџЬZ–џѕЖzL+8[‡Нѕџџ№›8™ŒџЫK„ 6‘Œџ[…5ыџљa‹џщ …Є€џп‹џo†m€џЇь‰џЪ‡U”nUў‡џш! gњ…џо*Ђ-ЋјџѓЅ 9TX> џК jУшёшЭœMЂЛ…џЩЁ3‡џšЁќ†џЛЂš†џ†Ђ Ш…џ2ЃОƒџУЅ‰§€џі/Ї7ЗяЬ=џџџџЫџџџ˜cь Ї4ХџѕtЅ#Є§џГ!Ѕ(žњџдIЄNЖўџм`”[ ‰D”шџџЬZ–џѕЖzL+8[‡Нѕџџ№›8™ŒџЫK„ 6‘Œџ[…5ыџљa‹џщ …Є€џп‹џo†m€џЇь‰џЪ‡U”nUў‡џш! gњ…џо*Ђ-ЋјџѓЅ 9TX> џК jУшёшЭœMЂЛ…џЩЁ3‡џšЁќ†џЛЂš†џ†Ђ Ш…џ2ЃОƒџУЅ‰§€џі/Ї7ЗяЬ=џџџџЫh8mk п§џџџџџџџџџџџџџџџџџџџџџџўъЁрџџџџџџџџџџџџџџџџџџџџџџџџџџџџсџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџŒчџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџнўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ§џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ§џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџўнџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџчŒџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџсџџџџџџџџџџџџџџџџџџџџџџџџџџџџр щўџџџџџџџџџџџџџџџџџџџџџџ§пit32 џџџџџџџџџџџџџџџџџЛlђBЏFє.Ч„џ(№ Šњ„џ№`№Uу…џЕя-О…џь^я—ћ…џЇю y№…џнGюeу…џј‚ эYй†џД%эXе†џзJэ`и†џьnьsу†џї‰ь$ђ†џћ›ыNЗ§†џќЃ&ы%…ф‡џћЃ(ъjЦў‡џї™#КuЊiЛћˆџь†МџљБW Ѓ8Ъ§‰џеg ОџіВh"œ7rВ№ŠџљЉ@Р…џрЅn;’:d•ЧіŒџгrУ‰џўуО€hSC7.*),3=K]sŒЇШщўŽџфŽ2ЦЎџс“>ШЋџѓ~3ЫЋџДš V‘ЋІ‚;ЉЋџk™cъƒџЫ2ЈЊџќ˜Œ†џіDЇЊџЕ˜PˆџьІЊџL˜Ч‰џvІЉџи—ћ‰џАІЉџa˜§‰џГІЈџй™а‰џ€ІЈџRšaˆџєІЇџМ›Ѕ†џќXЇІџї&œїƒџсHЈъЅџrŸr­ЧТžWЉeЄџЙгОЂџрещ џё0з=їžџїCйNјœџѕHлF№šџъ;н(ᘟЫ!п€і”џњ†т–ѕџўГ+цlТќ‹џђž2ыL‚­аыћ€џћхОŒK ѓ  џџџџџџџџџџђSЃЛЬеиеЬНЈkBыEЕќ‹џўз•Gх+Р’џшƒт\і•џёnпU§˜џГ няšџЕмpœџiмЈœџолВџ'л”џDлQџ>лшœџмq›џкнгšџ”о0ї™џIп`˜џюр‚—џšт–џ7т‰”џШхr§’џOцPђџЦч*зŽџћ2щ Ÿџ}ьQщŠџЌэ ў‡џЌ№<С„џѓrѓ0„НкйЗsџџџџџџџџџџџџџџџџџџџџџџџџџџџ„џџџџџџџџџџџџџџџџџЛlђBЏFє.Ч„џ(№ Šњ„џ№`№Uу…џЕя-О…џь^я—ћ…џЇю y№…џнGюeу…џј‚ эYй†џД%эXе†џзJэ`и†џьnьsу†џї‰ь$ђ†џћ›ыNЗ§†џќЃ&ы%…ф‡џћЃ(ъjЦў‡џї™#КuЊiЛћˆџь†МџљБW Ѓ8Ъ§‰џеg ОџіВh"œ7rВ№ŠџљЉ@Р…џрЅn;’:d•ЧіŒџгrУ‰џўуО€hSC7.*),3=K]sŒЇШщўŽџфŽ2ЦЎџс“>ШЋџѓ~3ЫЋџДš V‘ЋІ‚;ЉЋџk™cъƒџЫ2ЈЊџќ˜Œ†џіDЇЊџЕ˜PˆџьІЊџL˜Ч‰џvІЉџи—ћ‰џАІЉџa˜§‰џГІЈџй™а‰џ€ІЈџRšaˆџєІЇџМ›Ѕ†џќXЇІџї&œїƒџсHЈъЅџrŸr­ЧТžWЉeЄџЙгОЂџрещ џё0з=їžџїCйNјœџѕHлF№šџъ;н(ᘟЫ!п€і”џњ†т–ѕџўГ+цlТќ‹џђž2ыL‚­аыћ€џћхОŒK ѓ  џџџџџџџџџџђSЃЛЬеиеЬНЈkBыEЕќ‹џўз•Gх+Р’џшƒт\і•џёnпU§˜џГ няšџЕмpœџiмЈœџолВџ'л”џDлQџ>лшœџмq›џкнгšџ”о0ї™џIп`˜џюр‚—џšт–џ7т‰”џШхr§’џOцPђџЦч*зŽџћ2щ Ÿџ}ьQщŠџЌэ ў‡џЌ№<С„џѓrѓ0„НкйЗsџџџџџџџџџџџџџџџџџџџџџџџџџџџ„џџџџџџџџџџџџџџџџџЛlђBЏFє.Ч„џ(№ Šњ„џ№`№Uу…џЕя-О…џь^я—ћ…џЇю y№…џнGюeу…џј‚ эYй†џД%эXе†џзJэ`и†џьnьsу†џї‰ь$ђ†џћ›ыNЗ§†џќЃ&ы%…ф‡џћЃ(ъjЦў‡џї™#КuЊiЛћˆџь†МџљБW Ѓ8Ъ§‰џеg ОџіВh"œ7rВ№ŠџљЉ@Р…џрЅn;’:d•ЧіŒџгrУ‰џўуО€hSC7.*),3=K]sŒЇШщўŽџфŽ2ЦЎџс“>ШЋџѓ~3ЫЋџДš V‘ЋІ‚;ЉЋџk™cъƒџЫ2ЈЊџќ˜Œ†џіDЇЊџЕ˜PˆџьІЊџL˜Ч‰џvІЉџи—ћ‰џАІЉџa˜§‰џГІЈџй™а‰џ€ІЈџRšaˆџєІЇџМ›Ѕ†џќXЇІџї&œїƒџсHЈъЅџrŸr­ЧТžWЉeЄџЙгОЂџрещ џё0з=їžџїCйNјœџѕHлF№šџъ;н(ᘟЫ!п€і”џњ†т–ѕџўГ+цlТќ‹џђž2ыL‚­аыћ€џћхОŒK ѓ  џџџџџџџџџџђSЃЛЬеиеЬНЈkBыEЕќ‹џўз•Gх+Р’џшƒт\і•џёnпU§˜џГ няšџЕмpœџiмЈœџолВџ'л”џDлQџ>лшœџмq›џкнгšџ”о0ї™џIп`˜џюр‚—џšт–џ7т‰”џШхr§’џOцPђџЦч*зŽџћ2щ Ÿџ}ьQщŠџЌэ ў‡џЌ№<С„џѓrѓ0„НкйЗsџџџџџџџџџџџџџџџџџџџџџџџџџџџ„t8mk@fЄгёўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџњшЧ”L=ЕќџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџчpЇџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЫ 'оџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџц'хџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџнЦџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЃfџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџў7оџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЎAџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџњ‰џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ^ОџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџсџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЬѕџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџэ§џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ§џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ§џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ§эџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџѕЬџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџсџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџО^џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ‰њџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџAЎџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџо7ўџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџfЃџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЦнџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџх'цџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџо' ЫџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџЇnфџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџќЕ=I‘ФціџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџўёгЄfrapidsvn-0.12.1dfsg/packages/debian/0000755000175000017500000000000011773013523016565 5ustar monicamonicarapidsvn-0.12.1dfsg/packages/debian/rapidsvn.substvars0000644000175000017500000000042411772776054022407 0ustar monicamonicashlibs:Depends=libapr0 (>= 2.0.47-7), libc6 (>= 2.3.1-1), libdb4.2, libgcc1 (>= 1:3.3-1), libldap2 (>= 2.1.17-1), libneon24 (>= 0.24.4), libssl0.9.7, libstdc++5 (>= 1:3.3-1), libsvn0 (>= 0.37.0-1), libwxgtk2.4 (>= 2.4.2), libxml2 (>= 2.5.7-1), libxmltok1, zlib1g (>= 1:1.1.4) rapidsvn-0.12.1dfsg/packages/debian/build-package.sh0000644000175000017500000000032311772776054021625 0ustar monicamonica#!/bin/sh # ugly hack to get the package built # run this from toplevel if [ ! -e packages/debian ] then echo "run from top dir" exit 1 fi rm -rf debian cp -R packages/debian . dpkg-buildpackage -rfakeroot rapidsvn-0.12.1dfsg/packages/debian/changelog0000644000175000017500000000334411772776054020461 0ustar monicamonicarapidsvn (0.5.0-1) unstable; urgency=low * New upstream release * Add autoconf, automake and libtool to build-depends * Build against libdb4.2, Apache 2.0.48 and Subversion 0.37.0 * Place manpage to the correct location as FHS suggests * Really remove extra license file * Install lintian override for non-dev-pkg-with-shlib-symlink * Don't let config.status to slide into the source * Bump Standards-Version to 3.6.1, no changes needed * New maintainer -- Lсszlѓ Bіszіrmщnyi (GCS) Tue, 3 Feb 2004 17:01:16 +0000 rapidsvn (0.1.3.6496-1) unstable; urgency=low * New upstream release - subversion 0.25 Debian package code is now checked in to the rapidsvn tree -- Timothee Besset Thu, 17 Jul 2003 11:42:36 +0200 rapidsvn (0.1.3.pre2.6331-1) unstable; urgency=low * New upstream release -- Timothee Besset Tue, 1 Jul 2003 10:35:48 +0200 rapidsvn (0.1.3.6027-1) unstable; urgency=low * New upstream release - 1.3 -- Timothee Besset Fri, 23 May 2003 23:19:38 +0200 rapidsvn (0.1.2.5732-1) unstable; urgency=low * New upstream release -- Timothee Besset Fri, 25 Apr 2003 09:08:17 +0200 rapidsvn (0.1.2.5718-1) unstable; urgency=low * New upstream release - subversion 0.21 -- Timothee Besset Thu, 24 Apr 2003 09:58:24 +0200 rapidsvn (0.1.2.5561-2) unstable; urgency=low * Package reviewed by David Kimdon - misc fixes -- Timothee Besset Sun, 6 Apr 2003 23:12:53 +0200 rapidsvn (0.1.2.5561-1) unstable; urgency=low * Initial Release. * Taken from the svn repository, using repository revision numbers -- Timothee Besset Sat, 5 Apr 2003 19:22:28 +0200 rapidsvn-0.12.1dfsg/packages/debian/dirs0000644000175000017500000000005511772776054017467 0ustar monicamonicausr/bin usr/sbin usr/share/lintian/overrides rapidsvn-0.12.1dfsg/packages/debian/rapidsvn.override0000644000175000017500000000013111772776054022165 0ustar monicamonicarapidsvn: non-dev-pkg-with-shlib-symlink usr/lib/libsvncpp.so.0.0.0 usr/lib/libsvncpp.so rapidsvn-0.12.1dfsg/packages/debian/Makefile.in0000644000175000017500000002402211773013465020637 0ustar monicamonica# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = packages/debian DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ APR_LIBS = @APR_LIBS@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CXXFLAGS = @CPPUNIT_CXXFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOCBOOK_MANPAGES = @DOCBOOK_MANPAGES@ DOXYGEN = @DOXYGEN@ DOXYGEN_DIST = @DOXYGEN_DIST@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXTRA_LIBS = @EXTRA_LIBS@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAN_MANS = @MAN_MANS@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SVN_LIBS = @SVN_LIBS@ TARGET_DOXYGEN = @TARGET_DOXYGEN@ TARGET_MANPAGE = @TARGET_MANPAGE@ VERSION = @VERSION@ WX_LIBS = @WX_LIBS@ XSLTPROC = @XSLTPROC@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = build-package.sh changelog compat control copyright dirs docs files rapidsvn.override rapidsvn.postinst.debhelper rapidsvn.postrm.debhelper rapidsvn.substvars rules all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu packages/debian/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu packages/debian/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: rapidsvn-0.12.1dfsg/packages/debian/compat0000644000175000017500000000000211772776054020001 0ustar monicamonica4 rapidsvn-0.12.1dfsg/packages/debian/rules0000755000175000017500000000442111772776054017664 0ustar monicamonica#!/usr/bin/make -f # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif configure: configure-stamp configure-stamp: dh_testdir # Add here commands to configure the package. ./autogen.sh chmod +x ./configure ./configure --prefix=/usr --with-svn-include=/usr/include --with-svn-lib=/usr/lib --with-docbook-xsl=/usr/share/xml/docbook/stylesheet/nwalsh --mandir=/usr/share/man touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. $(MAKE) #/usr/bin/docbook-to-man debian/rapidsvn.sgml > rapidsvn.1 touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp config.cache config.log config.cache conftest conftest.o rm -rf doc/svncpp # Add here commands to clean up after the build process. -$(MAKE) clean rm -f config.status dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/rapidsvn. $(MAKE) install DESTDIR=$(CURDIR)/debian/rapidsvn # Install lintian override cp $(CURDIR)/debian/rapidsvn.override $(CURDIR)/debian/rapidsvn/usr/share/lintian/overrides/rapidsvn # rm -f $(CURDIR)/debian/rapidsvn/usr/share/doc/rapidsvn/LICENSE.txt # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installchangelogs ChangeLog dh_installdocs rm -f $(CURDIR)/debian/rapidsvn/usr/share/doc/rapidsvn/LICENSE.txt dh_installexamples # dh_install # dh_installmenu # dh_installdebconf # dh_installlogrotate # dh_installemacsen # dh_installpam # dh_installmime # dh_installinit # dh_installcron # dh_installinfo dh_installman dh_link dh_strip dh_compress dh_fixperms # dh_perl # dh_python dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure rapidsvn-0.12.1dfsg/packages/debian/control0000644000175000017500000000102411772776054020203 0ustar monicamonicaSource: rapidsvn Section: x11 Priority: optional Maintainer: Lсszlѓ Bіszіrmщnyi (GCS) Build-Depends: autoconf, automake, libtool, debhelper (>= 4.1.52), libsvn0-dev (>= 0.37), libwxgtk2.4-dev (>= 2.4.2), xsltproc (>= 1.0.30), docbook-xsl (>= 1.64) Standards-Version: 3.6.1 Package: rapidsvn Architecture: any Depends: ${shlib:Depends}, libsvn0 (>= 0.37), libwxgtk2.4 (>= 2.4.2) Description: GUI client for subversion Graphical client for the subversion revision control system. This client uses wxWindow for it's UI rapidsvn-0.12.1dfsg/packages/debian/Makefile.am0000644000175000017500000000025711772776054020643 0ustar monicamonicaEXTRA_DIST=build-package.sh changelog compat control copyright dirs docs files rapidsvn.override rapidsvn.postinst.debhelper rapidsvn.postrm.debhelper rapidsvn.substvars rulesrapidsvn-0.12.1dfsg/packages/debian/files0000644000175000017500000000005011773013430017602 0ustar monicamonicarapidsvn_0.12.1-1_i386.deb x11 optional rapidsvn-0.12.1dfsg/packages/debian/copyright0000644000175000017500000000374111772776054020543 0ustar monicamonicaThis package was debianized by Timothee Besset on Sat, 5 Apr 2003 19:22:28 +0200. It was downloaded from http://svn.collab.net/repos/rapidsvn/trunk/ Upstream Authors: Tim Kemp , Stefan Kueng Copyright: ================================================================= Copyright (C) 2002-2009 The RapidSvn Group. All rights reserved. ================================================================= This software consists of voluntary contributions made by many individuals on behalf of the RapidSvn Group. For more information on the RapidSvn Group, please see . RapidSVN is licensed under the GNU General Public License. All documentation included in this distribution and on the website is licensed under the GNU Free Documentation License. === Source Code: GNU General Public License === This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program (in the file GPL.txt. If not, see . === Documentation: GNU Free Documentation License === Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License". ================================================================= rapidsvn-0.12.1dfsg/packages/debian/rapidsvn.postinst.debhelper0000644000175000017500000000016611772776054024172 0ustar monicamonica# Automatically added by dh_makeshlibs if [ "$1" = "configure" ]; then ldconfig fi # End automatically added section rapidsvn-0.12.1dfsg/packages/debian/docs0000644000175000017500000000005511772776054017456 0ustar monicamonicaHACKING.txt LICENSE.txt NEWS README TODO.txt rapidsvn-0.12.1dfsg/packages/debian/rapidsvn.postrm.debhelper0000644000175000017500000000016311772776054023630 0ustar monicamonica# Automatically added by dh_makeshlibs if [ "$1" = "remove" ]; then ldconfig fi # End automatically added section rapidsvn-0.12.1dfsg/packages/Makefile.in0000644000175000017500000004167011773013465017425 0ustar monicamonica# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = packages DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ APR_LIBS = @APR_LIBS@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CXXFLAGS = @CPPUNIT_CXXFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOCBOOK_MANPAGES = @DOCBOOK_MANPAGES@ DOXYGEN = @DOXYGEN@ DOXYGEN_DIST = @DOXYGEN_DIST@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXTRA_LIBS = @EXTRA_LIBS@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAN_MANS = @MAN_MANS@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SVN_LIBS = @SVN_LIBS@ TARGET_DOXYGEN = @TARGET_DOXYGEN@ TARGET_MANPAGE = @TARGET_MANPAGE@ VERSION = @VERSION@ WX_LIBS = @WX_LIBS@ XSLTPROC = @XSLTPROC@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = debian osx rpm win32 all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu packages/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu packages/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic clean-libtool \ ctags ctags-recursive distclean distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: rapidsvn-0.12.1dfsg/packages/Makefile.am0000644000175000017500000000003511772776062017412 0ustar monicamonicaSUBDIRS=debian osx rpm win32 rapidsvn-0.12.1dfsg/packages/rpm/0000755000175000017500000000000011773013523016141 5ustar monicamonicarapidsvn-0.12.1dfsg/packages/rpm/Makefile.in0000644000175000017500000002375111773013466020224 0ustar monicamonica# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = packages/rpm DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ APR_LIBS = @APR_LIBS@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CXXFLAGS = @CPPUNIT_CXXFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOCBOOK_MANPAGES = @DOCBOOK_MANPAGES@ DOXYGEN = @DOXYGEN@ DOXYGEN_DIST = @DOXYGEN_DIST@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXTRA_LIBS = @EXTRA_LIBS@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAN_MANS = @MAN_MANS@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SVN_LIBS = @SVN_LIBS@ TARGET_DOXYGEN = @TARGET_DOXYGEN@ TARGET_MANPAGE = @TARGET_MANPAGE@ VERSION = @VERSION@ WX_LIBS = @WX_LIBS@ XSLTPROC = @XSLTPROC@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = fedora-core-3/rapidsvn.spec \ redhat-7.x/.rpmmacros all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu packages/rpm/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu packages/rpm/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am redhat-7.x/rapidsvn.spec \ redhat-8.x/.rpmmacros redhat-8.x/rapidsvn.spec # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: rapidsvn-0.12.1dfsg/packages/rpm/fedora-core-3/0000755000175000017500000000000011773013523020467 5ustar monicamonicarapidsvn-0.12.1dfsg/packages/rpm/fedora-core-3/rapidsvn.spec0000644000175000017500000000452411772776062023213 0ustar monicamonicaSummary: A cross-platform GUI for the Subversion concurrent versioning system. Name: rapidsvn Version: 0.9.0 Release: 1 License: BSD Group: Utilities/System URL: http://rapidsvn.tigris.org Source0: %{name}-%{version}-%{release}.tar.gz Packager: Tuncay Goncuoglu Requires: subversion #Requires: /sbin/install-info BuildPreReq: apr-devel BuildPreReq: apr-util-devel BuildPreReq: autoconf >= 2.53 BuildPreReq: docbook-style-xsl >= 1.58.1 BuildPreReq: doxygen BuildPreReq: libtool >= 1.4.2 BuildPreReq: libxslt >= 1.0.27 BuildPreReq: neon-devel BuildPreReq: subversion-devel >= 1.0.0 BuildPreReq: wxGTK-devel >= 2.4.2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} Prefix: /usr %description Subversion does the same thing CVS does (Concurrent Versioning System) but has major enhancements compared to CVS. This is a GUI for Subversion. *** Note: This is a relocatable package; it can be installed anywhere you like with the "rpm -Uvh --prefix /your/favorite/path" command. This is useful if you don't have root access on your machine but would like to use this package. %changelog * Thu Oct 20 2005 Tuncay Goncuoglu 0.9.0 - New version, new build. * Thu Oct 28 2004 Tuncay Goncuoglu 0.7.0 - Updated the spec file according to new subversion requirements * Tue Dec 30 2003 David Summers 0.4.0-6977 - Took out requirement for httpd and apr as that requirement is handled by the requirement for subversion. * Sat Dec 27 2003 David Summers 0.4.0-6962 - Requires subversion-devel-0.34.0. - Requires apache-2.0.48. - Requires apr-0.9.5. * Wed Jul 31 2002 David Summers 0.1 - First version %prep %setup -q # Fix up to include subversion include directory. CPPFLAGS="-I/usr/include/subversion-1" export CPPFLAGS ./configure \ --prefix=/usr \ --with-wx-config=/usr/bin/wxgtk-2.4-config \ --with-apr-config=/usr/bin/apr-config \ --with-apu-config=/usr/bin/apu-config \ --with-svn-include=/usr/include \ --with-svn-lib=/usr/lib \ --with-docbook-xsl=/usr/share/sgml/docbook/xsl-stylesheets \ --disable-no-exceptions %build cd src make %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) /usr/bin/* /usr/lib/* /usr/man/man1/* /usr/include/svncpp/* rapidsvn-0.12.1dfsg/packages/rpm/Makefile.am0000644000175000017500000000021711772776062020212 0ustar monicamonicaEXTRA_DIST=fedora-core-3/rapidsvn.spec \ redhat-7.x/.rpmmacros redhat-7.x/rapidsvn.spec \ redhat-8.x/.rpmmacros redhat-8.x/rapidsvn.spec rapidsvn-0.12.1dfsg/packages/rpm/redhat-7.x/0000755000175000017500000000000011773013523020022 5ustar monicamonicarapidsvn-0.12.1dfsg/packages/rpm/redhat-7.x/.rpmmacros0000644000175000017500000000033611772776062022045 0ustar monicamonica%_topdir @RPMSDIR@ %_builddir %{_topdir}/build %_rpmdir %{_topdir}/rpms %_sourcedir %{_topdir}/sources/%{name}-%{version}-%{release} %_specdir %{_sourcedir} %_srcrpmdir %{_topdir}/srpms %_tmppath %{_topdir}/tmp rapidsvn-0.12.1dfsg/packages/win32/0000755000175000017500000000000012165264672016316 5ustar monicamonicarapidsvn-0.12.1dfsg/packages/win32/Makefile.in0000644000175000017500000002363411773013466020370 0ustar monicamonica# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = packages/win32 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ APR_LIBS = @APR_LIBS@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CXXFLAGS = @CPPUNIT_CXXFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOCBOOK_MANPAGES = @DOCBOOK_MANPAGES@ DOXYGEN = @DOXYGEN@ DOXYGEN_DIST = @DOXYGEN_DIST@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXTRA_LIBS = @EXTRA_LIBS@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAN_MANS = @MAN_MANS@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SVN_LIBS = @SVN_LIBS@ TARGET_DOXYGEN = @TARGET_DOXYGEN@ TARGET_MANPAGE = @TARGET_MANPAGE@ VERSION = @VERSION@ WX_LIBS = @WX_LIBS@ XSLTPROC = @XSLTPROC@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = BUILD.txt FetchFiles.bat rapidsvn.iss msvcp60.dll all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu packages/win32/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu packages/win32/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: rapidsvn-0.12.1dfsg/packages/win32/FetchFiles.bat0000644000175000017500000000170011772776062021024 0ustar monicamonica@echo off rem --------------------------------------------------- rem FetchFiles.bat rem --------------------------------------------------- rem This batch script fetches DLLs and other files rem needed for creating the package rem --------------------------------------------------- rem These environment variables are needed: rem SUBVERSION rem --------------------------------------------------- rem TODO: check whether environment variables rem are set to existing paths (or at all) mkdir tmp rem Delete OLD Files del /q tmp\*.* del /q output\*.* rem Copy Berkeley DB copy %SUBVERSION%\db4-win32\bin\libdb44.dll tmp rem Copy Subversion and APR DLLs copy %SUBVERSION%\bin\*.dll tmp copy %SUBVERSION%\iconv\*.so tmp rem Copy C++ Runtime copy msvcp60.dll tmp rem Copy RapidSvn copy ..\..\build\vc6\rapidsvn\Release\rapidsvn_ansi.exe tmp copy ..\..\build\vc6\rapidsvn\Unicode_Release\rapidsvn.exe tmp rem pause rapidsvn-0.12.1dfsg/packages/win32/Makefile.am0000644000175000017500000000007411772776062020357 0ustar monicamonicaEXTRA_DIST=BUILD.txt FetchFiles.bat rapidsvn.iss msvcp60.dllrapidsvn-0.12.1dfsg/packages/win32/rapidsvn.iss0000644000175000017500000001162611773013430020656 0ustar monicamonica; Inno Setup script file ; Program: RapidSVN ; ; REMARKS: run the batch FetchFiles.bat ; before running this script [Setup] AppName=RapidSVN-0.12.1 AppVerName=RapidSVN-0.12.1 AppPublisherURL=http://rapidsvn.tigris.org/ AppSupportURL=http://rapidsvn.tigris.org/ AppUpdatesURL=http://rapidsvn.tigris.org/ DefaultDirName={pf}\RapidSVN-0.12.1 DefaultGroupName=RapidSVN-0.12.1 LicenseFile=..\..\GPL.txt InfoBeforeFile=..\..\README OutputBaseFilename=RapidSVN-0.12.1 [Languages] Name: "en"; MessagesFile: "compiler:Default.isl" Name: "de"; MessagesFile: "compiler:Languages\German.isl" Name: "fr"; MessagesFile: "compiler:Languages\French.isl" Name: "it"; MessagesFile: "compiler:Languages\Italian.isl" Name: "pt_BR"; MessagesFile: "compiler:Languages\BrazilianPortuguese.isl" Name: "ru"; MessagesFile: "compiler:Languages\Russian.isl" Name: "es"; MessagesFile: "SpanishStd-5-5.1.11.isl" Name: "uk"; MessagesFile: "Ukrainian-6-5.1.11.isl" Name: "zh_CN"; MessagesFile: "ChineseSimp-11-5.1.0.isl" Name: "ja"; MessagesFile: "Japanese-5-5.1.11.isl" [Tasks] Name: "desktopicon"; Description: "Create a &desktop icon"; GroupDescription: "Additional icons:" [Components] Name: main; Description: RapidSVN Application; Types: compact custom full; Flags: fixed [Files] ; RapidSVN application files Source: "tmp/rapidsvn_ansi.exe"; DestDir: "{app}\bin"; Flags: ignoreversion; Source: "tmp/rapidsvn.exe"; DestDir: "{app}\bin"; Flags: ignoreversion; Source: "..\..\src\locale\de\rapidsvn.po"; DestDir: "{app}\bin\locale\de"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\de\rapidsvn.mo"; DestDir: "{app}\bin\locale\de"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\fr\rapidsvn.po"; DestDir: "{app}\bin\locale\fr"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\fr\rapidsvn.mo"; DestDir: "{app}\bin\locale\fr"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\it_IT\rapidsvn.po"; DestDir: "{app}\bin\locale\it_IT"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\it_IT\rapidsvn.mo"; DestDir: "{app}\bin\locale\it_IT"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\pt_BR\rapidsvn.po"; DestDir: "{app}\bin\locale\pt_BR"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\pt_BR\rapidsvn.mo"; DestDir: "{app}\bin\locale\pt_BR"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\ru\rapidsvn.po"; DestDir: "{app}\bin\locale\ru"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\ru\rapidsvn.mo"; DestDir: "{app}\bin\locale\ru"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\es\rapidsvn.po"; DestDir: "{app}\bin\locale\es"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\es\rapidsvn.mo"; DestDir: "{app}\bin\locale\es"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\uk\rapidsvn.po"; DestDir: "{app}\bin\locale\uk"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\uk\rapidsvn.mo"; DestDir: "{app}\bin\locale\uk"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\zh_CN\rapidsvn.po"; DestDir: "{app}\bin\locale\zh_CN"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\zh_CN\rapidsvn.mo"; DestDir: "{app}\bin\locale\zh_CN"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\ja\rapidsvn.po"; DestDir: "{app}\bin\locale\ja"; Flags: ignoreversion; Components: main Source: "..\..\src\locale\ja\rapidsvn.mo"; DestDir: "{app}\bin\locale\ja"; Flags: ignoreversion; Components: main Source: "..\..\README"; DestDir: "{app}"; Flags: ignoreversion; Components: main Source: "..\..\LICENSE.txt"; DestDir: "{app}"; Flags: ignoreversion; Components: main Source: "..\..\GPL.txt"; DestDir: "{app}"; Flags: ignoreversion; Components: main Source: "..\..\FDL.txt"; DestDir: "{app}"; Flags: ignoreversion; Components: main ; Shared libraries Source: "tmp\*.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: main Source: "tmp\*.so"; DestDir: "{app}\bin\iconv"; Flags: ignoreversion; Components: main [Icons] Name: "{group}\RapidSVN (Ansi)"; Filename: "{app}\bin\rapidsvn_ansi.exe"; WorkingDir: "{app}\bin"; OnlyBelowVersion: 0,4.0; Components: main Name: "{group}\RapidSVN"; Filename: "{app}\bin\rapidsvn.exe"; WorkingDir: "{app}\bin"; MinVersion: 0,4.0; Components: main Name: "{userdesktop}\RapidSVN-0.12.1"; Filename: "{app}\bin\rapidsvn_ansi.exe"; WorkingDir: "{app}\bin"; Tasks: desktopicon; OnlyBelowVersion: 0,4.0; Components: main Name: "{userdesktop}\RapidSVN-0.12.1"; Filename: "{app}\bin\rapidsvn.exe"; WorkingDir: "{app}\bin"; Tasks: desktopicon; MinVersion: 0,4.0; Components: main [Run] Filename: "{app}\bin\rapidsvn_ansi.exe"; Description: "Launch RapidSVN (Ansi)"; WorkingDir: "{app}\bin"; Flags: nowait postinstall skipifsilent; OnlyBelowVersion: 0,4.0; Components: main Filename: "{app}\bin\rapidsvn.exe"; Description: "Launch RapidSVN"; WorkingDir: "{app}\bin"; Flags: nowait postinstall skipifsilent; MinVersion: 0,4.0; Components: main rapidsvn-0.12.1dfsg/packages/win32/BUILD.txt0000644000175000017500000000061511772776062017724 0ustar monicamonicaBUILD INSTRUCTIONS * This installer was built with Inno Setup 3 which can be downloaded here: http://www.jrsoftware.org/isinfo.php * Please run "FetchFiles.bat" Before compiling the installer. This script collects needed files and libraries. * To create the installer build the Release version of RapidSVN, open the rapidsvn.iss from the packages/win32 directory, then click Compile. rapidsvn-0.12.1dfsg/README0000644000175000017500000001212611772776062014464 0ustar monicamonicaRapidSVN INTRODUCTION RapidSVN is a cross-platform GUI front-end for the Subversion revision system (http://subversion.tigris.org/) written in C++ using the wxWidgets GUI framework. It is distributed under the GNU General Public License. See LICENSE.txt for more details. Currently it compiles under Windows and it does so with Linux but there are a few runtime issues that are currently being worked out. Eventually this should run on the Mac and several other flavors of *NIX. WHY WXWIDGETS? Many of you are probably curious why we would choose wxWidgets as the platform in which to build this project. Since the beginning the goal of Subversion was to build a client that would improve source control for operating system platform. By using the Apache Portable Runtime and a load of #ifdef's this goal has been effectively accomplished. With RapidSVN we would like to continue this theme. In order to get people to transfer over to product to make it easier the program should conform to whatever platform they are using. wxWidgets is the perfect platform for this. It uses GDI on Windows so the Windows guys never even think for a second that they are using a non-Windows tool and GTK for all the Unix guys. There is even an effort to use QT as well. This makes the best of both worlds without messing with a person's personal environment. For developers wxWidgets is great. It is easy to learn and quite powerful for any platform. It made the choice easy. BUILDING AND INSTALLING * The RapidSVN source code is stored in a Subversion repository (of course!) so in order to get it code you have to download a svn client from the Subversion project page: http://subversion.tigris.org/servlets/ProjectDocumentList * Download the source code for RapidSVN. You can do this by running the following svn command: % svn co http://rapidsvn.tigris.org/svn/rapidsvn/trunk rapidsvn * Download the wxWidgets 2.3.3 (or >= 2.4.0) libraries: http://www.wxWidgets.org/ If you are building wxWidgets on linux, you will need to specify the --disable-no-exceptions parameter to configure (see http://www.wxwidgets.org/docs/faqgen.htm#exceptions). For development you will probably also want --enable-debug. * Download the latest Subversion source tree. Here are the directions: http://subversion.tigris.org/project_packages.html * Once you have Subversion the download all the files just as the directions in the Subversion INSTALL file so you have the directory structure below. Note: the db4-win32 directory name is for MS VC++. /subversion /apr (apache.org CVS) /apr-iconv (apache.org CVS) /apr-util (apache.org CVS) /db4-win32 (http://www.sleepycat.com/) /neon (from http://www.webdav.org/neon/) /rapidsvn * If you are running Windows and you have dependency problems like a missing shfolder.lib then your system very likely does not have the necessary files. In this case you can get them by downloading the MS Platform SDK from http://www.microsoft.com/msdownload/platformsdk/sdkupdate/ by choosing Core SDK. Watch out though, because the download is enormous, around 400 MB. It would be best if you just got this from an MSDN CD if possible. * If you have the cvs client installed on your machine then you can download the apr libraries with the following commands: % cvs -d :pserver:anoncvs@cvs.apache.org:/home/cvspublic co apr % cvs -d :pserver:anoncvs@cvs.apache.org:/home/cvspublic co apr-util % cvs -d :pserver:anoncvs@cvs.apache.org:/home/cvspublic co apr-iconv Otherwise, you can get the most recent versions here: http://apr.apache.org/download.cgi * Two environmental variables must be set as well: SUBVERSION - SVN libraries root directory WX - wxWidgets libraries directory On Windows you can add the following to autoexec.bat or through the Environmental Variables editor. set WX=C:\Program Files\wx2 set SUBVERSION=D:\dev\subversion BUILDING ON LINUX/UNIX * Download all of the Subversion code and build it. Note: it is much easier if you download the RPMs provided on the Subversion site: http://subversion.tigris.org/servlets/ProjectDocumentList * Download the source code for RapidSVN. You can do this by running the following svn command: % svn co http://rapidsvn.tigris.org/svn/rapidsvn/trunk rapidsvn * Go to the rapidsvn directory and run: % ./autogen.sh % ./configure * The configure script might complain about apps/paths it didnt find % ./configure --help will return a list of options you might want to set- * Then go to the src/ directory and run 'make' * If it is built and you get an error like 'could not find something.so' then you probably need to add the Apache lib directory into /etc/ld.so.conf and then run 'ldconfig'. This is especially true for newer versions of APR. If you dont want to touch ld.so.conf you can add the path to the environment variable "LD_LIBRARY_PATH". Example: export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/apr/lib * If you get strange segmentation faults after updating or after change some of the code: try to rebuild rapidsvn (make clean; make all). rapidsvn-0.12.1dfsg/CHANGES0000644000175000017500000006314611773001500014562 0ustar monicamonicaVersion 0.12.1 (released June 29th 2012) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.12.1 User-visible changes * 737 Fixed: Crashes on local working copies with Subversion 1.7 Version 0.12 (released October 14th 2009) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.12 User-visible changes * 663 New: Show number of modified children in folder browser * 662 Enhancement: Indicate changed content with BOLD text instead of red color * 666 Enhancement: Performance optimization for indicating modified subfolders * 667 Enhancement: Make indication of modified subfolder configurable * 668 Enhancement: Show build revision in About Dialog * 669 Enhancement: Dont use static svn version in About dialog * 665 Windows: Drop suffix for unicode exe * 679 Mac+Win: Support Subversion 1.6.5 in binary packges * 526 Fixed: Filelist update failed when there are special characetrs in the uri * 555 Fixed: Linux+Mac: locale files not installed by default * 614 Fixed: Interactive Resolve used hardcoded filenames * 643 Fixed: Mac: crashes at startup because of missing dynamic libraries * 656 Fixed: Windows 7: Error when starting Explorer from RapidSVN * 660 Fixed: Visual C++ 2005 Builds Fail to Startup with Visual C++ Runtime Error * 664 Fixed: Crashes on Windows in Japan * 671 Fixed: Tree not updated after a commit * 678 Fixed: Use native path separator when starting external app Developer-visible changes * 597 Accept apr-1-config and apu-1-config * 661 Build instructions for Mac now without BDB (problems with static build) * 676 Fixed: Compilation on HP-UX broken, isset() name space conflict Work in progress (not completed) * 557 Slow refresh in flat mode * 648 Wrong system text color used: too hard to read. * 654 Error when open folder into tree with Cyrilic characters in name. Version 0.10 (released July 17th 2009) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.10 User-visible changes * 632 New Feature: Ability to commit specific files * 80 Enhancement: Remember filenames, log entries between calls * 128 Enhancement: Add special folder item if folder/subfolder contains modified file * 477 Enhancement: Concurrent actions lacked visual feedback * 601 Enhancement: Add "review" functionality to commit dialog * 638 Enhancement: Adding files recursively * 655 Enhancement: Remeber last directory when adding an existing working copy * 413 Fixed: Focus lost from file view after app switch * 548 Fixed: Mac: Update dialog didnt respond to ENTER key * 599 Fixed: Refresh with update: DnD on file list failed * 634 Fixed: Mac: Filelist order broken (first files and then folders, folders in wrong order) Developer-visible changes * 649 Win32: Support for Visual Studio 2005 Work in progress (not completed) * 526 Filelist update fails when there are special characetrs in the uri * 555 Linux+Mac: locale files not installed by default * 654 Error when open folder into tree with Cyrilic characters in name. Version 0.9.8 (released March 19th 2009) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.9.8 User-visible changes * 582 Migrated license to GPLv3 * 73 New Feature: Implement display filters * 607 New Feature: Basic support for subversion 1.5 * 630 New Feature: Recursive Revert * 639 Enhancement: Added toolbar tool to toggle "Show subdirectories" * 514 Fixed: Log Dialog: log column line-endings not converted * 516 Fixed: Pre-fill Name for Checkout/Export Command doesnt work * 526 Fixed: Filelist update failed when there were special characetrs in the uri * 527 Fixed: Dialogs showed on Wrong Monitor on Multi-Monitor Windows Systems * 534 Fixed: Assertion failed when trying to move a file up one directory(../) * 560 Fixed: Windows/wxMSW 2.6.4: "Mondrian" logo displayed in Explorer * 564 Fixed: Selection not updated correctly * 571 Fixed: Fails to build on gcc 4.3 * 578 Fixed: Packaging problem: rapidsvn_generated.h was missing in tarball * 583 Fixed: Localized date format broken * 589 Fixed: Mac: File list column disappeared * 590 Fixed: Right-clicking doesn't select tree item * 593 Fixed: Startup crash on WinXP with svn-1.4.6 for Apache 2.2.x * 594 Fixed: Warning after checkout * 598 Fixed: DnD: Needless prompting for import log * 599 Fixed: Refresh with update: DnD on file list failed * 604 Fixed: Cannot explicitly add ignored files * 605 Fixed: Error during filelist refresh prevents further diplay * 615 Fixed: Multiple File Delete Triggers Multiple Commits * 626 Fixed: Copy/Move dialog does not cancel on escape key * 631 Fixed: Build broken for Linux/Subversion 1.5.1 (on Ubuntu Intrepid) * 640 Dropped Subversion 1.4.x support in binary packages Developer-visible changes * 628 Changed coding style to ANSI + parent outer * 585 Enhancement: added version identifier in the headers Work in progress (not completed) * 632 New Feature: Ability to commit specific files * 413 Focus lost from file view after app switch * 477 Concurrent actions - lack of visual feedback * 555 Linux+Mac: locale files not installed by default * 581 Refresh with update: doubleclick on folders doesnt work Unresolved issues * 467 Log History - Get command mingles the file if modified locally * 494 SegFault when using diff on two revisions * 542 Right-clicking doesn't select the file before popping up context-menu * 545 Occassionally not saving bookmarks * 547 Mac: Update/Commit enabled only for files (not directory) * 548 Mac: Update dialog doesnt respond to ENTER key * 634 Mac: Filelist order broken (first files and then folders, folders in wrong order) * 586 svn::Info implementation incomplete Version 0.9.6 (released March 3rd 2008) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.9.6 User-visible changes * 18 New Feature: Add menu shortcut to set "svn:ignore" properties * 302 New Feature: Add a "relocate" option to the "switch" command * 421 New Feature: Add history for Copy/Move * 451 New Feature: Use date picker control for date fields on Diff dialog * 490 New Feature: Support Respect SVN_ASP_DOT_NET_HACK environment setting * 528 New Feature: Add option to reset "flat mode" at startup * 532 New Feature: Add "Edit Conflicts" command (using a 3 file diff tool) * 41 Enhancement: Icons for all cmds * 422 Enhancement: Pre-fill Name for Rename Command * 478 Enhancement: don't show old commit message in commit dialog * 483 Enhancement: Change shortcut for Add to INSERT * 549 Enhancement: Change Shortcut for Commit to CTRL+ENTER * 563 Enhancement: Untangle the preferences dialog (using wxFormBuilder) * 567 Enhancement: Remove ellipsis from "Remove Bookmark..." * 324 Fixed: Files wont be displayed with flag "Refresh with Update" * 452 Fixed: UseUrl fields on Diff Dialog are ignored * 473 Fixed: view and diff from remote repositories fails * 476 Fixed: Edit is enabled on folder * 492 Fixed: HKCR error when trying to access repository files * 493 Fixed: Get in Log dialog doesnt work for repository entries * 495 Fixed: Crash: Click on empty filelist column header * 518 Fixed: Mac: Unable to use Diff Dialog in UI * 522 Fixed: Diff Dialog: dates dont work (OK greyed out) * 533 Fixed: Dont trim leading spaces from commit messages * 541 Fixed: Collapsing of root node of "Bookmarks" tree crashes RapidSVN Developer-visible changes * 489 Support wxWidgets 2.8.0 * 502 Pass ritcher data in application * 503 Remove compatibilty with way old Subversion API for cleaner design * 536 Add a non-const getContext * 537 Extended diff functionality * 558 Support Subversion 1.4.6 * 377 Fixed: Mac: OpenSSL not supported * 419 Fixed: Windows: OpenSSL was not static in Installer * 485 Fixed: svn:externals long string cut off * 486 Fixed: svn::Client::singleStatus returns an empty svn::Status on remote repositories * 488 Fixed: Compiler Error: OnOK is not a member of CheckoutDlg * 497 Fixed: configure script uses test == * 511 Fixed: configure script doesn't find Subversion libraries on x86_64 Work in progress (not completed) * 7 Create user documentation * 236 Drag and drop moves * 331 Fixed: Display svn:externals properly Version 0.9.4 (released December 8th 2006) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.9.4 User-visible changes * 446 New Feature: Support for Subversion 1.4.2 * 368 New Feature: Show affected files/dirs in Log dialog * 425 New Feature: Show dialog for errors * 447 New Feature: Add Annotate functionality * 439 New Feature: Translation for Simplified Chinese * 441 New Feature: Translation for Brazilian Portuguese * 453 New Feature: Translation for Italian and Portuguese (while updating translations) * 213 Enhancement: Different icon for a repository bookmark * 292 Enhancement: Enable recursive update for get action * 295 Enhancement: Import dialog uses URL of the current selection * 245 Enhancement: Checkout Dialog remembers previous working copies * 417 Enhancement: Mac: Change 48x48 Icon * 420 Enhancement: Dont expand folders while navigating with the keyboard * 433 Enhancement: Make "Diff to another rev/date" the default option for diff dialog * 434 Enhancement: Allow compare with ONE other revision in log dialog * 442 Enhancement: Update the indicator if a repository folder has no children * 468 Enhancement: Resizeable log dialog * 444 Enhancement: Log history window resizing * 454 Enhancement: Allow editing for unversioned files * 175 Fixed: File modified status didnt refresh automatically * 322 Fixed: Unable to expand directory in tree view * 354 Fixed: RapidSVN didnt show an error if no diff tool is configured * 373 Fixed: Update didnt pull svn:externals * 374 Fixed: Edit action failed after folder change * 407 Fixed: View (in log dialog) failed after folder change * 431 Fixed: Diff (in log dialog) failed after folder change * 409 Fixed: Sash location setting not correct under wxGTK * 423 Fixed: wxGTK: Selecting Diff options worked only with Mouse * 426 Fixed: Win32: Working copies on network share not accessible * 429 Fixed: Refresh caused folder browser to lose the selected folder * 436 Fixed: UI dead when a repository refused anonymous * 437 Fixed: Diff tool arguments hidden in Program Preferences * 438 Fixed: RapidSvn Authentication failure after change of system password * 443 Fixed: Diff dialog fields didnt resize * 448 Fixed: HistoryValidator didnt set text control value * 459 Fixed: Double-click on child in list view does not work * 464 Fixed: RapidSVN crashed on SSL certificate dialog * 465 Fixed: Move directory into subdirectory failed * 469 Fixed: Switch URL crashed from Folder Browser * 470 Fixed: Double-click on child URL in list view didnt work * 471 Fixed: Https crashed on Windows * 472 Fixed: Win2K: Icons in folder browser and filelist have black border Developer-visible changes * 346 Fixed: Could not compile rapidsvn-0.9.0 with GCC 4.1.0-beta20051230 * 408 Fixed: Solaris Compilation with Sun compiler and linker broken Work in progress (not completed) * 7 Create user documentation * 41 Icons for all cmds * 451 Use wxWidgets date picker control for date fields on Diff dialog * 331 Display svn:externals properly * 377 Mac: OpenSSL not supported * 419 Win32: OpenSSL was not static in Installer Version 0.9.3-1 (released June 29 2006) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.9.3-1 User-visible changes * 427 Win32: Incompatible update to Bdb 4.4 while SVN is using 4.3 Version 0.9.3 (released June 22 2006) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.9.3 User-visible changes * 414 Fixed: View-Preferences-Programs did not save * 377 Mac: OpenSSL not supported * 411 Fixed: Main view window not drawn when 'Bookmarks' is selected * 418 Fixed: Expand item in tree view when selected was BROKEN * 416 Fixed: Win32: RapidSVN icon not shown when using ALT-TAB * 415 New: Support Subversion 1.3.2 (with Berkeley DB 4.4) * 402 Improved: interface accesibility (tabs, default buttons etc) Developer-visible changes * 385 Fixed: autogen.sh missing in source tarball * 294 Fixed: svn_subr_version not supported in subversion 1.2 * 412 Fixed: Compile error with GCC 4.1.1 Work in progress (not completed) * 175 File modified status doesn't update * 408 Solaris Compilation with Sun compiler and linker broken * 331 Display svn:externals properly * 346 Linux: Can not compile rapidsvn-0.9.0 with GCC 4.1.0-beta20051230 Version 0.9.2 (released May 19 2006) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.9.2 User-visible changes * 362 New: Improve menu accessibility in localizations * 363 New: Run all actions in the background * 367 New: Allow multiple targets for copy and move * 372 New: Add French translation * 171 Fixed: svn_path_join: Assertion "is_canonical (base, blen)" failed * 176 Fixed: Repository name with Accent * 215 Fixed: Double click on a directory doesn't work * 364 Fixed: Mac+GTK: Update, etc very vers slow * 366 Fixed: Improve sorting * 371 Fixed: Execution is too slow compared to command-line SVN * 375 Fixed: Delete folder does not work * 379 Fixed: Export doesn't work - wrong parameter format * 380 Fixed: Action canceling with button causes disfunctionality * 381 Fixed: "Refresh View" updates file list and hides it afterwards * 383 Fixed: Rapid forgets that action is running if try to start the second one * 384 Fixed: First character omitted from repos folders * 387 Fixed: Cannot create a directory directly in repository * 388 Fixed: Cannot create a new tag * 393 Fixed: No SSL support in multithreaded Rapid * 395 Fixed: "Refresh View" invalid behaviour towards actions * 396 Fixed: Filelist or/and folder browser not updated after actions * 397 Fixed: Directory names sometimes not shown in repository * 398 Fixed: Context menu doesn't hide when it has to * 399 Fixed: Diff window controls activate inappropriately * 400 Fixed: Repository Bookmark shows incorrect names * 401 Fixed: Urls and paths displayed incorrectly in file info * 403 Fixed: Copying current directory to its child not forbidden Developer-visible changes * 394 Fixed: Compile error with wxGTK 2.4.2 * 333 Fixed: make error if xsl-stylesheets arent found * 358 Fixed: Invalid shell syntax in configure.in * 376 New: Add hideable menu tests for debugging * 357 Fixed: doc/manpages/rapidsvn.xml not included in distribution * 359 Fixed: "make dist" fails in packages/os * 365 Fixed: "make dist" fails if cppunit is not installed Work in progress (not completed) * 402 Improve interface accesibility (tabs, default buttons etc) Version 0.9.1 (released Feb 10 2006) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.9.1 User-visible changes * 95 New: Bookmark editor * 258 New: Added column for log messages in Log dialog * 282 New: Support LOCK / UNLOCK * 326 New: pre-initialize repository URL in checkout dialog * 337 New: Added Russian translation * 338 New: Added Ukrainian translation * 341 New: Added Unicode build to Windows installer * 351 New: Added "Export" menu entry and dialog * 327 Fixed: invalid logout menu item in folder browser context menu * 335 Fixed: URLs didnt support spaces * 336 Fixed: RapidSVN didnt use SVN stored credentials * 339 Fixed: Directory entries with a '.' were truncated in folder browser * 340 Fixed: Column names were not localized. * 343 Fixed: Crash / segfault at startup on Fedora Core 4 * 345 Fixed: Some menu entries on bookmarks were invisible * 350 Fixed: RapidSVN crashed when clicking Help in Checkout Menu * 352 Fixed: wrong libeay32.dll was used on Windows XP / Windows Server 2003 * 353 Fixed: Unicode Debug build crashed on Windows because of linker ambiguities Developer-visible changes * 332 New: Include "packages" in source tarball * 330 New: Supported URL schemas were not detected * 279 New: Ensure Compatibility with wxWidgets 2.6.0 * 283 New: Added Client::lock, Client::unlock, Status::locked * 287 New: Support Subversion 1.2 * 348 Fixed: Removed warnings about abstract classes without virtual destructors * 349 Fixed: Warnings at compile time Work in progress (not completed) * 80 Remember filenames, log entries between calls * 261 Additional bookmark operations Version 0.9.0 (released Oct 18 2005) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.9.0 User-visible changes * 285 New: Changed license to GPL / LGPL * 68 New: commit log ctrl * 95 New: Create a bookmark editor * 249 New: Bookmark based configuration for flat view * 253 New: Expand item in tree view when selected * 258 New: Added column for log messages in Log dialog * 307 New: No prefix in path column (Flat mode) * 273 Change titlebar info to "RapidSVN - " * 205 Fixed: Show log entries for copied branches * 274 Fixed: Import and Info had the same shorcut * 275 Fixed: Window Frame Positioning incorrect on restart * 303 Fixed: GUI minimized and then closed does not show GUI on restart * 286 Fixed: Detection of supported schemas doesnt work with subversion-1.2 Developer-visible changes * 281 New (Mac): Create package directory for osx and include it in "check-version" * 276 Fixed: Compilation error in path.cpp because of missing APR_STATUS_ * 277 Fixed: Build error on wxMac because of wxString/libtoolize * 278 Fixed (Mac): autogen.sh on OSX needs 'glibtoolize' instead of 'libtoolize * 280 Fixed: configure didnt detect missing docbook-xsl * 284 Fixed (Mac): Menu flickering when list view changes * 288 Fixed: Performance while expand item in tree view * 289 Fixed: Diff working copy against BASE file * 293 Fixed: Segmentation fault in client error handling * 321 Fixed: segmentation fault in src/svncpp/context.cpp * 328 Fixed: Change MSVC project to support Subversion 1.2.3. * 329 Fixed: Add ICONV files to installer Work in progress (not completed) * 80 Remember filenames, log entries between calls * 261 Additional bookmark operations * 279 Ensure Compatibility with wxWidgets 2.6.0 * 287 Support Subversion 1.2 Version 0.8.0 (released Apr 19 2005) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.8.0 User-visible changes * 243 New: Native Support for Mac OS X (no X11) * 252 New: Fast diff to head revision * 202 New: New column on the filelist pane: file's extension * 238 New: Ability to access FSFS * 250 New: Show versioned files only * 259 Dont truncate entries in tree * 211 Fixed: Filenames with special chars (Umlauts) dont work * 212 Fixed: Commit messages with special chars (umlauts) dont work * 221 Fixed: Slow response to right click on files * 230 Fixed: Crash when trying to expand a node in the tree view * 234 Fixed: No update when adding a new directory * 237 Fixed: Folder Browser forgets location on refresh * 242 Fixed: No German User-Interface * 255 Fixed: Info report contains an invalid URL * 257 Fixed: Path for repositories in wrong format (only Windows) * 263 Fixed: No URL edit field visible with wxX11 * 244 Fixed: Crash while setting program path in Preferences Developer-visible changes * 270 Added Full Unicode support * 256 Switched to Subversion 1.1 for Windows * 222 Fixed: Cannot compile rapidsvn on unicode-enabled wxGTK systems * 235 Fixed: Suse 9.1 complaints during build (wx with Unicode) * 248 Fixed: Compiler error for threaded_worker.cpp * 267 Fixed: configure and out-of-tree builds Version 0.7.0 (released Sep 02 2004) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.7.0 User-visible changes * 179 Direct text editor access from RapidSVN * 172 Options are now configurable in View/Diff tool preferences * 192 Added STOP button * 190 Added Documentation for Release Management * 191 New merge button in log dialogue * 220 Tweaked: Remember window status "Maximized" * 195 Tweaked: Commits are now recursive as default (in dialog) * 206 Tweaked: Changed menu entries for "Add Working Copy" and "Add Repository" menu items confusing * 165 Fixed: Space in dir name became %20 on rename * 194 Fixed: Copy didnt work with URL destination * 196 Fixed: Win32 build files were missing from tar.gz source kits * 167 Fixed: crash on expand bottom bookmark * 214 Fixed: Incorrect info for repository directories * 197 Fixed: Commit/Update used active file instead of folder in folder browser menu (when right-clicking in the folder browser) * 207 Fixed: TextViewer (called by LogDlg) removed (see #179) * 189 Fixed: Sort order; group unversioned items with other modified * 198 Fixed: folder double-clicking on Win32 Developer-visible changes * 201 Fixed: Client::log("") failed * 204 Fixed: cat couldnt return binary data * 218 Fixed: Default config dir created against user wishes * 219 Fixed: Auth code ddidnt not use users config_dir * 224 Fixed: make fails on Suse 9.1 * 208 Fixed: install svncpp headers (with make install) * 199 Fixed: Correctly disable VC7 warning 4290 * 200 Fixed: VC7 wants some more Exception ctors Version 0.6.0 (released May 24 2004) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.6.0 User-visible changes * 180 Configure script failed on Solaris because of "find -maxdepth" * 183 Save preferences "Flat view" and "Refresh with Update" * 149 RapidSVN supported for AMD64 * 184 New icon for out-of-date files * 186 Implemented Diff command for the Log dialog. * 157 Fixed: diff could not open file on Linux * 145 Fixed: sort-order for status in file-list * 158 Fixed: crash when adding a bookmark * 160 Fixed: double click on file in repos doesn't work * 166 Fixed: trailing spaces on repository URL not trimmed * 177 Fixed: status for 'out-of-date' files not being displayed * 185 Fixed: Text/Property status display for 'out-of-date' files * 148 Fixed: date display in log dlg Developer-visible changes * 164 Fixed: ls return path wrong for current dir * 169 Fixed: Context inits apr after using apr function * 162 Conform with Subversion 1.0.0 * 168 add changed path support to log Version 0.5.0 (released February 3 2004) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.5.0 User-visible changes * 4 Added file diff * 131 Added an "add all" menu item * 138 Added the possibility to trust an unknown SSL server temporarily/permanent * 139 All error flags and the realm of a SSL certificate are shown now * 141 Added keyboard shortcuts to menus * 113 Deletion of unknown files is now possible * 129 Newer files are shown with special icon * 130 Added "Refresh remote" menu item * 147 We dont update filelist after non-modifying operations anymore Developer-visible changes * 117 #include "svncpp" name space * 137 Annotate support added (in svncpp) * 152 RapidSVN compatible with subversion 0.36.0 * 154 RapidSVN compatible with subversion 0.37.0 * 143 Turned off MSVC 7.1 warnings for exception specs * 146 Cancel support added (only in svncpp, not in RapidSVN app yet) Bugfixes for the following errors * 108 Disallowed modifying a property in a repository * 111 Shortcut for Commit didnt work * 112 Right-clicking in filelist forgot multiple selections * 127 Folder browser collapsed after refresh * 140 Folder browser didnt use authentication context * 150 Move and Rename dialog captions were switched over * 153 Auth provider fix for HTTPS * 155 HTTPS and other misc fixes against r7000 Version 0.4.0 (released December 5 2003) http://rapidsvn.tigris.org/svn/rapidsvn/tags/0.4.0 User-visible changes * 93 ui Renamed workspace to "Bookmarks" * 94 ui Renamed menu "Create" to "Repository" * 96 ui Created icons for bookmarks * 97 ui Supported URL schemes are listed in the About box * 98 ui Created "Bookmarks" menu * 100 ui Beautified long bookmarks in Folder Browser * 114 ui Modified folders dont dont have appropriate icons * 120 svncpp Added support to enable/disable authentication caching * 122 docs Updated info in README Developer-visible changes * 91 config Search for --with-