wok rev 9739

Fix: rapidsvn (issue40) and clean up receipt
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 10 01:45:43 2011 +0200 (2011-05-10)
parents 21732727ec37
children 6026f6c50111
files rapidsvn/receipt
line diff
     1.1 --- a/rapidsvn/receipt	Tue May 10 01:40:51 2011 +0200
     1.2 +++ b/rapidsvn/receipt	Tue May 10 01:45:43 2011 +0200
     1.3 @@ -5,14 +5,16 @@
     1.4  CATEGORY="development"
     1.5  SHORT_DESC="A cross-platform GUI front-end for the Subversion revision system."
     1.6  MAINTAINER="stefanossofroniou542@gmail.com"
     1.7 -TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.8 -DEPENDS="wxWidgets libsvn apr libltdl xorg-libXxf86vm libproxy libsqlite libsasl"
     1.9 -BUILD_DEPENDS="libtool wxWidgets-dev subversion-dev apr-dev apr-util-dev cyrus-sasl-dev neon-dev libproxy-dev sqlite-dev expat-dev python"
    1.10  WEB_SITE="http://rapidsvn.tigris.org/"
    1.11 -TARBALL=$PACKAGE-$VERSION-1.tar.gz
    1.12 +TARBALL="$PACKAGE-$VERSION-1.tar.gz"
    1.13  WGET_URL="http://www.rapidsvn.org/download/release/0.12/$TARBALL"
    1.14  TAGS="subversion svn version-control versioning"
    1.15  
    1.16 +DEPENDS="wxWidgets libsvn apr libltdl xorg-libXxf86vm libproxy libsqlite \
    1.17 +libsasl libaprutil"
    1.18 +BUILD_DEPENDS="$DEPENDS libtool wxWidgets-dev subversion-dev apr-dev \
    1.19 +apr-util-dev cyrus-sasl-dev neon-dev libproxy-dev sqlite-dev expat-dev python"
    1.20 +
    1.21  # Rules to configure and make the package.
    1.22  compile_rules()
    1.23  {
    1.24 @@ -23,21 +25,14 @@
    1.25  		--with-neon-config=neon-config \
    1.26  		--with-wx-config=wx-config \
    1.27  		--with-svn-include=/usr/include \
    1.28 -		--with-svn-lib=/usr/lib \
    1.29 -		$CONFIGURE_ARGS &&
    1.30 -	make &&
    1.31 -	make DESTDIR=$PWD/_pkg install
    1.32 +		--with-svn-lib=/usr/lib &&
    1.33 +	make && make install
    1.34  }
    1.35  
    1.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.37  genpkg_rules()
    1.38  {
    1.39 -	mkdir -p $fs/usr/lib \
    1.40 -		 $fs/usr/share \
    1.41 -		 $fs/usr/share/applications \
    1.42 -		 $fs/usr/share/pixmaps
    1.43 +	mkdir -p $fs/usr/lib
    1.44  	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.45  	cp -a $_pkg/usr/bin $fs/usr
    1.46 -	cp -a stuff/rapidsvn.desktop $fs/usr/share/applications
    1.47 -	cp -a stuff/rapidsvn.png $fs/usr/share/pixmaps
    1.48  }