rrdtool: marked unmaintained

This commit is contained in:
Tim Biermann 2023-08-06 21:22:06 +02:00
parent fe8f04a39b
commit 8e9289a2a0
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 26 additions and 27 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF392cIrm8tPnpRWS9gxCyk+vBo8Mik8cO7Mu7EJnceQTe8ga8h2wavULQ9VNY7aPWI6B0/Xt0UKPMOUtYYpv4yQo=
SHA256 (Pkgfile) = 385d83514b8978c1734375a5586fdc6c10f5b6833db6c60ae6d05de1d1c36f41
RWSagIOpLGJF39tqhdmPMkxTmyRCCGdOWdIX0XNrV8dsyc2rt+f41cdps2C45Oc9cV4YFY4hpfgWuBHM07yRaFZmLaYLJsLNgQo=
SHA256 (Pkgfile) = f3f5b9e8a5fabb5083c10129bfd26237ba2e4d818fc52059205bf370da4152d0
SHA256 (.footprint) = fffdff06f489c20fdd3475a754584d77525b77eebf915800a7e8d129e923f843
SHA256 (rrdtool-1.8.0.tar.gz) = bd37614137d7a8dc523359648eb2a81631a34fd91a82ed5581916a52c08433f4

View File

@ -1,7 +1,7 @@
# Description: A system to store and display time-series data.
# Description: A system to store and display time-series data
# URL: https://oss.oetiker.ch/rrdtool/index.en.html
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: intltool libxml2 pango python3-setuptools
# Maintainer: unmaintained
# Depends on: intltool libxml2 pango
name=rrdtool
version=1.8.0
@ -9,31 +9,30 @@ release=2
source=(https://github.com/oetiker/rrdtool-1.x/releases/download/v$version/rrdtool-$version.tar.gz)
build() {
cd $name-$version
cd $name-$version
PYTHON=/usr/bin/python3 \
./configure \
--prefix=/usr \
--enable-shared \
--enable-perl-site-install \
--enable-ruby-site-install \
--disable-libwrap \
--disable-rpath
PYTHON=/usr/bin/python3 \
./configure \
--prefix=/usr \
--enable-shared \
--enable-perl-site-install \
--enable-ruby-site-install \
--disable-libwrap \
--disable-rpath
make
make DESTDIR=$PKG install
make
make DESTDIR=$PKG install
rm -r \
$PKG/usr/share/doc \
$PKG/usr/share/locale \
$PKG/usr/share/rrdtool/examples
rm -r $PKG/usr/share/doc \
$PKG/usr/share/locale \
$PKG/usr/share/rrdtool/examples
# Remove perl crap
find $PKG \( \
-name '.packlist' -o \
-name '*.bs' -o \
-name 'perllocal.pod' \) -delete
# Remove perl crap
find $PKG \( \
-name '.packlist' -o \
-name '*.bs' -o \
-name 'perllocal.pod' \) -delete
# Remove empty directories
find $PKG -depth -empty -delete
# Remove empty directories
find $PKG -depth -empty -delete
}