wok rev 24147

Add sysklogd
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 22 10:22:30 2021 +0000 (2021-11-22)
parents f7c6f56dc45e
children fa5c28d5efb7
files sysklogd-dev/receipt sysklogd/receipt xournal/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/sysklogd-dev/receipt	Mon Nov 22 10:22:30 2021 +0000
     1.3 @@ -0,0 +1,21 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="sysklogd-dev"
     1.7 +VERSION="2.2.3"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="BSD syslog daemon and syslog()/syslogp() API for Linux, RFC3164 + RFC5424, development files."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="BSD3"
    1.12 +WEB_SITE="https://troglobit.com/post/2019-11-03-bsd-syslogd-in-linux/"
    1.13 +WANTED="sysklogd"
    1.14 +
    1.15 +DEPENDS="sysklogd pkg-config"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +	mkdir -p $fs/usr/lib
    1.21 +	cp -a $install/usr/include $fs/usr
    1.22 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.23 +	cp -a $install/usr/lib/*a $fs/usr/lib
    1.24 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/sysklogd/receipt	Mon Nov 22 10:22:30 2021 +0000
     2.3 @@ -0,0 +1,38 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="sysklogd"
     2.7 +VERSION="2.2.3"
     2.8 +CATEGORY="network"
     2.9 +SHORT_DESC="BSD syslog daemon and syslog()/syslogp() API for Linux, RFC3164 + RFC5424."
    2.10 +MAINTAINER="pascal.bellard@slitaz.org"
    2.11 +LICENSE="BSD3"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.13 +WEB_SITE="https://troglobit.com/post/2019-11-03-bsd-syslogd-in-linux/"
    2.14 +WGET_URL="https://github.com/troglobit/sysklogd/archive/refs/tags/v$VERSION.tar.gz"
    2.15 +
    2.16 +BUILD_DEPENDS="automake"
    2.17 +
    2.18 +current_version()
    2.19 +{
    2.20 +	wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
    2.21 +	sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
    2.22 +}
    2.23 +
    2.24 +# Rules to configure and make the package.
    2.25 +compile_rules()
    2.26 +{
    2.27 +	./autogen.sh
    2.28 +	./configure --prefix=/usr --sysconfdir=/etc \
    2.29 +		$CONFIGURE_ARGS &&
    2.30 +	make LDFLAGS="$LDFLAGS -lrt" &&
    2.31 +	make DESTDIR=$DESTDIR install-strip
    2.32 +}
    2.33 +
    2.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.35 +genpkg_rules()
    2.36 +{
    2.37 +	mkdir -p $fs/usr/lib
    2.38 +	cp -a $install/usr/bin $fs/usr
    2.39 +	cp -a $install/usr/sbin $fs/usr
    2.40 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.41 +}
     3.1 --- a/xournal/receipt	Thu Nov 18 10:12:29 2021 +0000
     3.2 +++ b/xournal/receipt	Mon Nov 22 10:22:30 2021 +0000
     3.3 @@ -1,15 +1,16 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="xournal"
     3.7 -VERSION="0.4.8"
     3.8 +VERSION="0.4.8.2016"
     3.9  CATEGORY="utilities"
    3.10  SHORT_DESC="Notetaking application."
    3.11  MAINTAINER="meshca@clarkson.edu"
    3.12  LICENSE="GPL2"
    3.13  WEB_SITE="http://xournal.sourceforge.net/"
    3.14  
    3.15 -TARBALL="$PACKAGE-$VERSION.2016.tar.gz"
    3.16 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.17  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    3.18 +TAGS="annotation pdf"
    3.19  
    3.20  SUGGESTED="ghostscript"
    3.21  DEPENDS="gcc-lib-base gtk+ libgnomecanvas poppler poppler-apps"