From ec0efabc6c8591986e80a3f9a1ad8f7b7a627a33 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Wed, 28 Jul 2021 14:59:27 +0200 Subject: [PATCH] sxiv: dropped port --- sxiv/.footprint | 13 ------------- sxiv/.signature | 5 ----- sxiv/Pkgfile | 21 --------------------- sxiv/README | 14 -------------- 4 files changed, 53 deletions(-) delete mode 100644 sxiv/.footprint delete mode 100644 sxiv/.signature delete mode 100644 sxiv/Pkgfile delete mode 100644 sxiv/README diff --git a/sxiv/.footprint b/sxiv/.footprint deleted file mode 100644 index d7a586e2c..000000000 --- a/sxiv/.footprint +++ /dev/null @@ -1,13 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/sxiv -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/sxiv.desktop -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/sxiv.1.gz -drwxr-xr-x root/root usr/share/sxiv/ -drwxr-xr-x root/root usr/share/sxiv/exec/ --rwxr-xr-x root/root usr/share/sxiv/exec/image-info --rwxr-xr-x root/root usr/share/sxiv/exec/key-handler diff --git a/sxiv/.signature b/sxiv/.signature deleted file mode 100644 index d08ac32b1..000000000 --- a/sxiv/.signature +++ /dev/null @@ -1,5 +0,0 @@ -untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF3xwIPhwHmq8ld8PHxQaBK4yxby9C+pUaHGydOY8Ffh8R8I3NtZdiDJLDVBnOqqVBm69u48FvsfmAdK5/rjEU2AQ= -SHA256 (Pkgfile) = 28eadd11a81fcd59cb28859b98b7517198b2e9481c669220eb5a8b33122b0592 -SHA256 (.footprint) = 853f6da864280e80d61e5c577c15a4d891206b9a9dee3cf56c57cae9dce83618 -SHA256 (sxiv-26.tar.gz) = a382ad57734243818e828ba161fc0357b48d8f3a7f8c29cac183492b46b58949 diff --git a/sxiv/Pkgfile b/sxiv/Pkgfile deleted file mode 100644 index 65d72e840..000000000 --- a/sxiv/Pkgfile +++ /dev/null @@ -1,21 +0,0 @@ -# Description: simple/suckless image-viewer -# URL: https://github.com/muennich/sxiv -# Maintainer: Tim Biermann, tbier at posteo dot de -# Depends on: giflib imlib2 libexif xorg-libxft - -name=sxiv -version=26 -release=2 -source=(https://github.com/muennich/$name/archive/v$version/$name-$version.tar.gz) - -build () { - cd $name-$version - - if [ -f $PKGMK_ROOT/config.h ]; then - cp $SRC/config.h . - fi - - make CC=gcc CFLAGS="$CFLAGS" - make DESTDIR=$PKG PREFIX=/usr install - install -Dm644 sxiv.desktop $PKG/usr/share/applications/sxiv.desktop -} diff --git a/sxiv/README b/sxiv/README deleted file mode 100644 index e0d6484d6..000000000 --- a/sxiv/README +++ /dev/null @@ -1,14 +0,0 @@ -The configuration of sxiv is done by creating a custom config.h -and (re)compiling the source code. To create a custom config.h, -unpack the tarball, copy the file sxiv-$version/config.def.h to -sxiv's port directory, and edit to suit your preferences. Then, -when you call pkgmk in the sxiv port directory, the custom -config.h will be detected and copied into the source before -compilation. I recommend that you save a copy your custom config.h -some where other than the sxiv port directory, so that your changes -won't get nuked when updating ports or performing a prtsweep or -prtwash (see opt/prt-utils for more information about those two). - -Another solution for customizing sxiv is to create a custom and -(preferably) private port that contains your custom config and also -might include patches for added features.