wok-next rev 4643
Up: apr-util* (1.3.9) security fix + split package.
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sat Dec 26 10:38:11 2009 +0100 (2009-12-26) |
parents | e02c446857a6 |
children | 116984a54f50 |
files | apr-util-dev/receipt apr-util/receipt |
line diff
1.1 --- a/apr-util-dev/receipt Sat Dec 26 10:37:24 2009 +0100 1.2 +++ b/apr-util-dev/receipt Sat Dec 26 10:38:11 2009 +0100 1.3 @@ -1,9 +1,9 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="apr-util-dev" 1.7 -VERSION="1.3.2" 1.8 +VERSION="1.3.9" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Apache Portable Runtime Library Utilities" 1.11 +SHORT_DESC="APR Library Utilities" 1.12 MAINTAINER="lehswe@gmail.com" 1.13 WANTED="apr-util" 1.14 TARBALL="$PACKAGE-$VERSION.tar.gz"
2.1 --- a/apr-util/receipt Sat Dec 26 10:37:24 2009 +0100 2.2 +++ b/apr-util/receipt Sat Dec 26 10:38:11 2009 +0100 2.3 @@ -1,22 +1,26 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="apr-util" 2.7 -VERSION="1.3.2" 2.8 +VERSION="1.3.9" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="Apache Portable Runtime Library Utilities" 2.11 +SHORT_DESC="APR Library Utilities" 2.12 MAINTAINER="lehswe@gmail.com" 2.13 -DEPENDS="apr expat libpostgresqlclient libunixODBC ncurses readline sqlite \ 2.14 -zlib" 2.15 -BUILD_DEPENDS="apr unixODBC-dev" 2.16 +DEPENDS="apr expat ncurses readline zlib" 2.17 +BUILD_DEPENDS="apr-dev unixODBC-dev postgresql-dev mysql-dev libmysqlclient libpostgresqlclient" 2.18 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.19 WEB_SITE="http://apr.apache.org" 2.20 -WGET_URL="http://apache.jumper.nu/apr/$TARBALL" 2.21 - 2.22 +WGET_URL="http://mir2.ovh.net/ftp.apache.org/dist/apr/$TARBALL 2.23 + http://apache.crihan.fr/dist/apr/$TARBALL" 2.24 + 2.25 # Rules to configure and make the package. 2.26 compile_rules() 2.27 { 2.28 cd $src 2.29 - ./configure --with-apr=/usr/bin --prefix=/usr --infodir=/usr/share/info \ 2.30 + ./configure --with-apr=$(apr-1-config --bindir) \ 2.31 + --with-pgsql=/usr \ 2.32 + --with-mysql \ 2.33 + --prefix=/usr \ 2.34 + --infodir=/usr/share/info \ 2.35 --mandir=/usr/share/man $CONFIGURE_ARGS && 2.36 make && 2.37 make DESTDIR=$PWD/_pkg install 2.38 @@ -28,5 +32,5 @@ 2.39 mkdir -p $fs/usr/lib/apr-util-1 2.40 2.41 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.42 - cp -a $_pkg/usr/lib/apr-util-1/*.so* $fs/usr/lib/apr-util-1 2.43 + #cp -a $_pkg/usr/lib/apr-util-1/*.so* $fs/usr/lib/apr-util-1 2.44 }