# HG changeset patch # User Hans-G?nter Theisgen # Date 1571504192 -3600 # Node ID 6aff6b383295ef8fcf0e3bf5d34971611a378347 # Parent c89ebe633ac537f37e305a5fa144b9e8f3bfc5df updated xcircuit (3.7.32 -> 3.10.12) diff -r c89ebe633ac5 -r 6aff6b383295 xcircuit/receipt --- a/xcircuit/receipt Sat Oct 19 18:20:40 2019 +0200 +++ b/xcircuit/receipt Sat Oct 19 17:56:32 2019 +0100 @@ -1,32 +1,36 @@ # SliTaz package receipt. PACKAGE="xcircuit" -VERSION="3.7.32" +VERSION="3.10.12" CATEGORY="graphics" -SHORT_DESC="A program for drawing publishable-quality electrical circuit schematic diagrams" +SHORT_DESC="A program for drawing publishable-quality electrical circuit schematic diagrams." MAINTAINER="slaxemulator@gmail.com" LICENSE="GPL2" +WEB_SITE="http://opencircuitdesign.com/xcircuit/" + TARBALL="$PACKAGE-$VERSION.tgz" -WEB_SITE="http://opencircuitdesign.com/xcircuit" -WGET_URL="http://opencircuitdesign.com/xcircuit/archive/$TARBALL" +WGET_URL="${WEB_SITE}archive/$TARBALL" -DEPENDS="tcl tk xorg-libXpm zlib" -BUILD_DEPENDS="tk-dev tcl-dev xorg-libXpm-dev xorg-libXt-dev zlib-dev automake" +DEPENDS="cairo tcl tk xorg-libXpm zlib" +BUILD_DEPENDS="automake cairo-dev tcl-dev tk-dev xorg-libXpm-dev xorg-libXt-dev zlib-dev" # Rules to configure and make the package. compile_rules() { - ./configure prefix=/usr \ - --with-tcl=/usr/lib \ - --with-tk=/usr/lib \ + ./configure \ + --prefix=/usr \ + --with-tcl=/usr/lib \ + --with-tk=/usr/lib \ $CONFIGURE_ARGS && - make && make DESTDIR=$DESTDIR install + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/$PACKAGE-${VERSION%.*} $fs/usr/lib + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/$PACKAGE-${VERSION%.*} $fs/usr/lib }