# HG changeset patch # User Pascal Bellard # Date 1637576550 0 # Node ID 9c0fdd18095c5283f7c0719a03a4c250f63efecb # Parent f7c6f56dc45e81068c7feee591d3c6795b376eba Add sysklogd diff -r f7c6f56dc45e -r 9c0fdd18095c sysklogd-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sysklogd-dev/receipt Mon Nov 22 10:22:30 2021 +0000 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="sysklogd-dev" +VERSION="2.2.3" +CATEGORY="development" +SHORT_DESC="BSD syslog daemon and syslog()/syslogp() API for Linux, RFC3164 + RFC5424, development files." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD3" +WEB_SITE="https://troglobit.com/post/2019-11-03-bsd-syslogd-in-linux/" +WANTED="sysklogd" + +DEPENDS="sysklogd pkg-config" + +# 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/pkgconfig $fs/usr/lib + cp -a $install/usr/lib/*a $fs/usr/lib +} diff -r f7c6f56dc45e -r 9c0fdd18095c sysklogd/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sysklogd/receipt Mon Nov 22 10:22:30 2021 +0000 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="sysklogd" +VERSION="2.2.3" +CATEGORY="network" +SHORT_DESC="BSD syslog daemon and syslog()/syslogp() API for Linux, RFC3164 + RFC5424." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD3" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://troglobit.com/post/2019-11-03-bsd-syslogd-in-linux/" +WGET_URL="https://github.com/troglobit/sysklogd/archive/refs/tags/v$VERSION.tar.gz" + +BUILD_DEPENDS="automake" + +current_version() +{ + wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ + sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' +} + +# Rules to configure and make the package. +compile_rules() +{ + ./autogen.sh + ./configure --prefix=/usr --sysconfdir=/etc \ + $CONFIGURE_ARGS && + make LDFLAGS="$LDFLAGS -lrt" && + make DESTDIR=$DESTDIR install-strip +} + +# 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/sbin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib +} diff -r f7c6f56dc45e -r 9c0fdd18095c xournal/receipt --- a/xournal/receipt Thu Nov 18 10:12:29 2021 +0000 +++ b/xournal/receipt Mon Nov 22 10:22:30 2021 +0000 @@ -1,15 +1,16 @@ # SliTaz package receipt. PACKAGE="xournal" -VERSION="0.4.8" +VERSION="0.4.8.2016" CATEGORY="utilities" SHORT_DESC="Notetaking application." MAINTAINER="meshca@clarkson.edu" LICENSE="GPL2" WEB_SITE="http://xournal.sourceforge.net/" -TARBALL="$PACKAGE-$VERSION.2016.tar.gz" +TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +TAGS="annotation pdf" SUGGESTED="ghostscript" DEPENDS="gcc-lib-base gtk+ libgnomecanvas poppler poppler-apps"