# HG changeset patch # User Christopher Rogers # Date 1318746882 0 # Node ID 79238ac947ef3de7f150891e0f12bbcdeb68471f # Parent 88a31b0777938f354b1019fd7ba539ab58c3f64e Add gsoap. diff -r 88a31b077793 -r 79238ac947ef gsoap-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gsoap-dev/receipt Sun Oct 16 06:34:42 2011 +0000 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="gsoap-dev" +VERSION="2.8.3" +CATEGORY="development" +SHORT_DESC="devel files for gsoap" +MAINTAINER="slaxemulator@gmail.com" +WEB_SITE="http://www.cs.fsu.edu/~engelen/soap.html" +DEPENDS="gsoap" +WANTED="gsoap" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib +} diff -r 88a31b077793 -r 79238ac947ef gsoap/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gsoap/receipt Sun Oct 16 06:34:42 2011 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="gsoap" +VERSION="2.8.3" +CATEGORY="network" +SHORT_DESC="Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++" +MAINTAINER="slaxemulator@gmail.com" +WEB_SITE="http://www.cs.fsu.edu/~engelen/soap.html" +TARBALL="${PACKAGE}_${VERSION}.zip" +WGET_URL="$SF_MIRROR/gsoap2/$TARBALL" + +DEPENDS="libssl zlib" +BUILD_DEPENDS="autoconf automake openssl-dev zlib-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + sed -i 's|aclocal-1.10|aclocal|g' missing + CXXFLAGS=-fPIC CFLAGS=-fPIC LDFLAGS=-fPIC ./configure \ + $CONFIGURE_ARGS && make -j1 && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/gsoap $fs/usr/share +}