# HG changeset patch # User Hans-G?nter Theisgen # Date 1579243839 -3600 # Node ID afd8470bb0cbf8e194573277e2f2aacc7c1931dc # Parent ce368efd05fefc6df6d2fa12015f7bb111fdfc4a updated drbd-utils (8.9.1 -> 9.11.0) diff -r ce368efd05fe -r afd8470bb0cb drbd-utils/receipt --- a/drbd-utils/receipt Thu Jan 16 17:58:30 2020 +0100 +++ b/drbd-utils/receipt Fri Jan 17 07:50:39 2020 +0100 @@ -1,23 +1,30 @@ # SliTaz package receipt. PACKAGE="drbd-utils" -VERSION="8.9.1" +VERSION="9.11.0" CATEGORY="system-tools" SHORT_DESC="DRBD is a block device to build high availability clusters." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://www.linbit.com/en/drbd-community/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://drbd.linbit.com/" -WGET_URL="http://oss.linbit.com/drbd/$TARBALL" +WGET_URL="https://www.linbit.com/downloads/drbd/utils/$TARBALL" -BUILD_DEPENDS="flex libxslt" +DEPENDS="gcc83-lib-base" +BUILD_DEPENDS="flex gcc83 libxslt udev-dev" # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ + ./configure \ + CC=gcc-83 \ + CXX=g++-83 \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-systemdunitdir=none \ + --with-prebuiltman \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install @@ -26,5 +33,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs/ + cp -a $install/* $fs/ }