diff --git a/base/.buildlist.base b/base/.buildlist.base index 1f5467f..de4c96a 100644 --- a/base/.buildlist.base +++ b/base/.buildlist.base @@ -1,4 +1,3 @@ -initfs which dcron cpio @@ -16,13 +15,13 @@ pkgconf make m4 ccache -musl +musl-fts +musl-obstack libsodium libunistring bzip2 libffi mksh -mdadm mtools lzip lzlib @@ -47,6 +46,7 @@ tree attr acl patch +libnl libpcap smartmontools zlib @@ -62,7 +62,6 @@ tar sysklogd gawk sed -pkgtools zip unzip popt @@ -74,6 +73,7 @@ libpng python3 libxml2 libxslt +docbook xmlto kmod python-setuptools @@ -87,7 +87,6 @@ pyelftools gettext iso-codes libtool -docbook itstool libgpg-error libgcrypt @@ -105,6 +104,7 @@ pax-utils wayland wayland-protocols glib +mdadm eudev libusb usbutils @@ -144,8 +144,6 @@ libssh2 curl libnetfilter-conntrack iptables -libelf-compat -gnu-efi libevent texinfo cmake @@ -158,8 +156,7 @@ libtheora physfs brotli hyphen -fuse2 -fuse3 +fuse p11-kit gnutls libsndfile @@ -193,20 +190,15 @@ pwgen tofrodos i2c-tools sudo -alsa-utils -alsa-plugins libical giflib keyutils -libtirpc lsof -ntfs-3g ca-certificates mpg123 exiv2 chrony libopenal -p7zip x264 libseccomp scons @@ -215,7 +207,6 @@ lm-sensors htop gdbm ruby -syslinux hdparm neon wavpack @@ -243,25 +234,23 @@ libsecret miniupnpc gloox libuv +glslang zsh pm-utils boost -slapt-get pv libgc strace gdb -acpid libdaemon gyp -mozilla-nss c-ares sbc speexdsp lz4 zstd +elfutils lua -lua53 toluapp libkate libminizip @@ -269,7 +258,6 @@ libshout twolame exfat-utils bubblewrap -qpdf libnfs sysstat enet @@ -285,7 +273,6 @@ wireless-regdb crda cython time -signify python-markdown python-pyyaml python-tornado @@ -302,7 +289,7 @@ python-regex python-joblib python-nltk python-mkdocs -kernel-source +python-glad kernel-headers highlight llvm @@ -315,3 +302,5 @@ argon2 qrencode libqalculate protobuf +libptytty +libmilter diff --git a/base/acl/acl.SMBuild b/base/acl/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/acl/acl.SMBuild rename to base/acl/smbuild diff --git a/base/acpid/acpi_handler.sh b/base/acpid/acpi_handler.sh deleted file mode 100644 index 386fa8d..0000000 --- a/base/acpid/acpi_handler.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -# Default acpi script that takes an entry for all actions - -IFS=${IFS}/ -set $@ - -case "$1" in - button) - case "$2" in - power) /sbin/init 0 - ;; - *) logger "ACPI action $2 is not defined" - ;; - esac - ;; - *) - logger "ACPI group $1 / action $2 is not defined" - ;; -esac diff --git a/base/acpid/acpid.SMBuild b/base/acpid/acpid.SMBuild deleted file mode 100755 index 506a66a..0000000 --- a/base/acpid/acpid.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=acpid -version=2.0.32 -build=2sml -homepage="https://sourceforge.net/projects/acpid2" -download="" -desc="Tools and daemon for implementing ACPI standard on Linux" -requires="musl" -apparch="x86_64" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z** - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - install -Dm 755 $srcdir/acpi_handler.sh $pkg/etc/acpi/acpi_handler.sh.new - install -Dm 644 $srcdir/default $pkg/etc/acpi/events/default - install -Dm 755 $srcdir/rc.acpid $pkg/etc/rc.d/rc.acpid - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -6b5ccc5ea460135b07a1ea894d0bc7200e24167669fdcf1aa9a9c49dc1b7c5cb4479ffb854b1d04cb8b25c55f4adf8dc7996d7899d5fe52c015259e7df84f314 acpid-2.0.32.tar.lz -" diff --git a/base/acpid/default b/base/acpid/default deleted file mode 100644 index f902218..0000000 --- a/base/acpid/default +++ /dev/null @@ -1,18 +0,0 @@ -# This is the ACPID default configuration, it takes all -# events and passes them to /etc/acpi/default.sh for further -# processing. - -# event keeps a regular expression matching the event. To get -# power events only, just use something like "event=button power.*" -# to catch it. -# action keeps the command to be executed after an event occurs -# In case of the power event above, your entry may look this way: -#event=button power.* -#action=/bin/init 0 - -# Optionally you can specify the placeholder %e. It will pass -# through the whole kernel event message to the program you've -# specified. - -event=.* -action=/etc/acpi/acpi_handler.sh %e diff --git a/base/acpid/doinst.sh b/base/acpid/doinst.sh deleted file mode 100644 index dfc78d6..0000000 --- a/base/acpid/doinst.sh +++ /dev/null @@ -1,13 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} -config etc/acpi/acpi_handler.sh.new diff --git a/base/acpid/rc.acpid b/base/acpid/rc.acpid deleted file mode 100644 index 3860e2e..0000000 --- a/base/acpid/rc.acpid +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# Start/stop/restart acpid. - -# Start acpid: -acpid_start() { - if [ -x /bin/acpid -a -d /proc/acpi ]; then - echo "Starting ACPI daemon: /bin/acpid" - /bin/acpid - fi -} - -# Stop acpid: -acpid_stop() { - if [ -r /var/run/acpid.pid ]; then - kill $(cat /var/run/acpid.pid) - else - killall acpid - fi -} - -# Restart acpid: -acpid_restart() { - acpid_stop - sleep 1 - acpid_start -} - -case "$1" in -'start') - acpid_start - ;; -'stop') - acpid_stop - ;; -'restart') - acpid_restart - ;; -*) - echo "usage $0 start|stop|restart" -esac diff --git a/base/alsa-lib/alsa-lib.SMBuild b/base/alsa-lib/smbuild similarity index 100% rename from base/alsa-lib/alsa-lib.SMBuild rename to base/alsa-lib/smbuild diff --git a/base/alsa-plugins/alsa-plugins.SMBuild b/base/alsa-plugins/alsa-plugins.SMBuild deleted file mode 100644 index 65df623..0000000 --- a/base/alsa-plugins/alsa-plugins.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=alsa-plugins -version=1.2.2 -build=1sml -homepage="http://www.alsa-project.org" -download="" -desc="Plugins for ALSA" -requires="alsa-lib" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z** - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - cp COPYING* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -f6395a3753fcf2873d8aa54d9dd6f1a772b600de6a9ed9a36d7d64186d526ba1234dd957dd085f4c9ddad9ebf85440ef3c672c646b4e128607649262057b37d7 alsa-plugins-1.2.2.tar.lz -" diff --git a/base/alsa-utils/alsa-utils.SMBuild b/base/alsa-utils/alsa-utils.SMBuild deleted file mode 100644 index b36194b..0000000 --- a/base/alsa-utils/alsa-utils.SMBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: PktSurf -app=alsa-utils -version=1.2.3 -build=2sml -homepage="http://alsa-project.org" -download="" -requires="netbsd-curses alsa-lib" -desc="Userland utilities for ALSA" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z** - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin \ - --with-udev-rules-dir=/lib/udev/rules.d - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -4eea6130a029f7aa323914224c8faa574a9b55ff531876b48b3f9c4016a73ed390c15c17a63e48484cb25119a0f958b746ed4e077bd078bf3c5ee9a2094cddab alsa-utils-1.2.3.tar.lz -" diff --git a/base/argon2/argon2.SMBuild b/base/argon2/smbuild similarity index 100% rename from base/argon2/argon2.SMBuild rename to base/argon2/smbuild diff --git a/base/argp-standalone/argp-standalone.SMBuild b/base/argp-standalone/smbuild similarity index 100% rename from base/argp-standalone/argp-standalone.SMBuild rename to base/argp-standalone/smbuild diff --git a/base/asciidoc/asciidoc.SMBuild b/base/asciidoc/smbuild similarity index 100% rename from base/asciidoc/asciidoc.SMBuild rename to base/asciidoc/smbuild diff --git a/base/aspell/aspell.SMBuild b/base/aspell/smbuild similarity index 100% rename from base/aspell/aspell.SMBuild rename to base/aspell/smbuild diff --git a/base/aspell6/aspell6.SMBuild b/base/aspell6/smbuild similarity index 100% rename from base/aspell6/aspell6.SMBuild rename to base/aspell6/smbuild diff --git a/base/attr/attr.SMBuild b/base/attr/smbuild similarity index 100% rename from base/attr/attr.SMBuild rename to base/attr/smbuild diff --git a/base/autoconf/autoconf.SMBuild b/base/autoconf/smbuild similarity index 100% rename from base/autoconf/autoconf.SMBuild rename to base/autoconf/smbuild diff --git a/base/automake/automake.SMBuild b/base/automake/smbuild similarity index 100% rename from base/automake/automake.SMBuild rename to base/automake/smbuild diff --git a/base/bash-completion/bash-completion.SMBuild b/base/bash-completion/smbuild similarity index 100% rename from base/bash-completion/bash-completion.SMBuild rename to base/bash-completion/smbuild diff --git a/base/bash/bash.SMBuild b/base/bash/smbuild similarity index 100% rename from base/bash/bash.SMBuild rename to base/bash/smbuild diff --git a/base/bc/bc.SMBuild b/base/bc/smbuild similarity index 100% rename from base/bc/bc.SMBuild rename to base/bc/smbuild diff --git a/base/bison/bison.SMBuild b/base/bison/smbuild similarity index 100% rename from base/bison/bison.SMBuild rename to base/bison/smbuild diff --git a/base/boost/boost.SMBuild b/base/boost/smbuild similarity index 100% rename from base/boost/boost.SMBuild rename to base/boost/smbuild diff --git a/base/brotli/brotli.SMBuild b/base/brotli/smbuild similarity index 100% rename from base/brotli/brotli.SMBuild rename to base/brotli/smbuild diff --git a/base/bubblewrap/bubblewrap.SMBuild b/base/bubblewrap/smbuild similarity index 100% rename from base/bubblewrap/bubblewrap.SMBuild rename to base/bubblewrap/smbuild diff --git a/base/busybox/busybox.SMBuild b/base/busybox/smbuild similarity index 100% rename from base/busybox/busybox.SMBuild rename to base/busybox/smbuild diff --git a/base/bzip2/bzip2.SMBuild b/base/bzip2/smbuild similarity index 100% rename from base/bzip2/bzip2.SMBuild rename to base/bzip2/smbuild diff --git a/base/c-ares/c-ares.SMBuild b/base/c-ares/smbuild similarity index 100% rename from base/c-ares/c-ares.SMBuild rename to base/c-ares/smbuild diff --git a/base/ca-certificates/ca-certificates.SMBuild b/base/ca-certificates/smbuild similarity index 100% rename from base/ca-certificates/ca-certificates.SMBuild rename to base/ca-certificates/smbuild diff --git a/base/cbindgen/cbindgen.SMBuild b/base/cbindgen/smbuild similarity index 100% rename from base/cbindgen/cbindgen.SMBuild rename to base/cbindgen/smbuild diff --git a/base/ccache/ccache.SMBuild b/base/ccache/smbuild similarity index 100% rename from base/ccache/ccache.SMBuild rename to base/ccache/smbuild diff --git a/base/chrony/chrony.SMBuild b/base/chrony/smbuild similarity index 100% rename from base/chrony/chrony.SMBuild rename to base/chrony/smbuild diff --git a/base/chrpath/chrpath.SMBuild b/base/chrpath/smbuild similarity index 100% rename from base/chrpath/chrpath.SMBuild rename to base/chrpath/smbuild diff --git a/base/cmake/cmake.SMBuild b/base/cmake/smbuild similarity index 100% rename from base/cmake/cmake.SMBuild rename to base/cmake/smbuild diff --git a/base/coreutils/coreutils.SMBuild b/base/coreutils/smbuild similarity index 100% rename from base/coreutils/coreutils.SMBuild rename to base/coreutils/smbuild diff --git a/base/cpio/cpio.SMBuild b/base/cpio/smbuild similarity index 100% rename from base/cpio/cpio.SMBuild rename to base/cpio/smbuild diff --git a/base/crda/crda.SMBuild b/base/crda/smbuild similarity index 100% rename from base/crda/crda.SMBuild rename to base/crda/smbuild diff --git a/base/cryptsetup/cryptsetup.SMBuild b/base/cryptsetup/smbuild similarity index 100% rename from base/cryptsetup/cryptsetup.SMBuild rename to base/cryptsetup/smbuild diff --git a/base/curl/curl.SMBuild b/base/curl/smbuild similarity index 100% rename from base/curl/curl.SMBuild rename to base/curl/smbuild diff --git a/base/cython/cython.SMBuild b/base/cython/smbuild similarity index 100% rename from base/cython/cython.SMBuild rename to base/cython/smbuild diff --git a/base/db/db.SMBuild b/base/db/smbuild similarity index 100% rename from base/db/db.SMBuild rename to base/db/smbuild diff --git a/base/dcron/dcron.SMBuild b/base/dcron/smbuild similarity index 100% rename from base/dcron/dcron.SMBuild rename to base/dcron/smbuild diff --git a/base/desktop-file-utils/desktop-file-utils.SMBuild b/base/desktop-file-utils/smbuild similarity index 100% rename from base/desktop-file-utils/desktop-file-utils.SMBuild rename to base/desktop-file-utils/smbuild diff --git a/base/dialog/dialog.SMBuild b/base/dialog/smbuild similarity index 100% rename from base/dialog/dialog.SMBuild rename to base/dialog/smbuild diff --git a/base/diffutils/diffutils.SMBuild b/base/diffutils/smbuild similarity index 100% rename from base/diffutils/diffutils.SMBuild rename to base/diffutils/smbuild diff --git a/base/dmidecode/dmidecode.SMBuild b/base/dmidecode/smbuild similarity index 100% rename from base/dmidecode/dmidecode.SMBuild rename to base/dmidecode/smbuild diff --git a/base/docbook/docbook.SMBuild b/base/docbook/smbuild similarity index 100% rename from base/docbook/docbook.SMBuild rename to base/docbook/smbuild diff --git a/base/dosfstools/dosfstools.SMBuild b/base/dosfstools/smbuild similarity index 100% rename from base/dosfstools/dosfstools.SMBuild rename to base/dosfstools/smbuild diff --git a/base/e2fsprogs/e2fsprogs.SMBuild b/base/e2fsprogs/smbuild old mode 100755 new mode 100644 similarity index 66% rename from base/e2fsprogs/e2fsprogs.SMBuild rename to base/e2fsprogs/smbuild index eed7fe0..b7dc010 --- a/base/e2fsprogs/e2fsprogs.SMBuild +++ b/base/e2fsprogs/smbuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=e2fsprogs -version=1.45.3 -build=4sml +version=1.47.1 +build=1sml homepage="http://e2fsprogs.sourceforge.net/" download="https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v$version/e2fsprogs-$version.tar.xz" desc="Utilities for working with ext 2, 3 and 4 filesystems" @@ -17,20 +17,18 @@ prepbuilddir() { } build() { - for i in misc/fsck.c misc/mke2fs.c e2fsck/unix.c ; do - sed -i 's@sbin@bin@g' $i - done - ac_cv_path_mkdir="mkdir -p" \ CFLAGS+=" -D__uint64_t=u_int64_t" \ LDFLAGS="-static" \ ./configure \ - --prefix= \ - --with-root-prefix= \ - --sbindir=/bin \ + --prefix=/usr \ + --sbindir=/usr/bin \ + --sysconfdir=/etc \ --disable-libblkid \ --disable-libuuid \ - --disable-uuidd + --disable-uuidd \ + --disable-fuse2fs \ + --disable-nls make make install DESTDIR=$pkg @@ -41,5 +39,5 @@ build() { } sha512sums=" -aaa6e1ef3bce5935cdca853a91ac596f41a62b5f16f7cd944b3ad572fe5890fce9d08335a46c6fefebeab99ec32b1ef6d2df94e6b7afc19f19d244f000605103 e2fsprogs-1.45.3.tar.lz +7a5ede749329b285b3094164d8e39bd60488a1677ff3e6607520142204c09ea1eaeebd2bf1277b8634e51dbdae4461fc1ff441f56b882623f53b6b6e278cedb4 e2fsprogs-1.47.1.tar.lz " diff --git a/base/ed/ed.SMBuild b/base/ed/smbuild similarity index 100% rename from base/ed/ed.SMBuild rename to base/ed/smbuild diff --git a/base/elfutils/elfutils.SMBuild b/base/elfutils/smbuild similarity index 100% rename from base/elfutils/elfutils.SMBuild rename to base/elfutils/smbuild diff --git a/base/enchant/enchant.SMBuild b/base/enchant/smbuild similarity index 100% rename from base/enchant/enchant.SMBuild rename to base/enchant/smbuild diff --git a/base/enet/enet.SMBuild b/base/enet/smbuild similarity index 100% rename from base/enet/enet.SMBuild rename to base/enet/smbuild diff --git a/base/eudev/eudev.SMBuild b/base/eudev/smbuild similarity index 100% rename from base/eudev/eudev.SMBuild rename to base/eudev/smbuild diff --git a/base/exfat-utils/exfat-utils.SMBuild b/base/exfat-utils/smbuild similarity index 100% rename from base/exfat-utils/exfat-utils.SMBuild rename to base/exfat-utils/smbuild diff --git a/base/exiv2/exiv2.SMBuild b/base/exiv2/smbuild similarity index 100% rename from base/exiv2/exiv2.SMBuild rename to base/exiv2/smbuild diff --git a/base/expat/expat.SMBuild b/base/expat/smbuild similarity index 100% rename from base/expat/expat.SMBuild rename to base/expat/smbuild diff --git a/base/faad2/faad2.SMBuild b/base/faad2/smbuild similarity index 100% rename from base/faad2/faad2.SMBuild rename to base/faad2/smbuild diff --git a/base/fdk-aac/fdk-aac.SMBuild b/base/fdk-aac/smbuild similarity index 100% rename from base/fdk-aac/fdk-aac.SMBuild rename to base/fdk-aac/smbuild diff --git a/base/fftw/fftw.SMBuild b/base/fftw/smbuild similarity index 100% rename from base/fftw/fftw.SMBuild rename to base/fftw/smbuild diff --git a/base/file/file.SMBuild b/base/file/smbuild similarity index 100% rename from base/file/file.SMBuild rename to base/file/smbuild diff --git a/base/findutils/findutils.SMBuild b/base/findutils/smbuild similarity index 100% rename from base/findutils/findutils.SMBuild rename to base/findutils/smbuild diff --git a/base/flac/flac.SMBuild b/base/flac/smbuild similarity index 100% rename from base/flac/flac.SMBuild rename to base/flac/smbuild diff --git a/base/flex/flex.SMBuild b/base/flex/smbuild similarity index 100% rename from base/flex/flex.SMBuild rename to base/flex/smbuild diff --git a/base/fmt/fmt.SMBuild b/base/fmt/smbuild similarity index 100% rename from base/fmt/fmt.SMBuild rename to base/fmt/smbuild diff --git a/base/fribidi/fribidi.SMBuild b/base/fribidi/smbuild similarity index 100% rename from base/fribidi/fribidi.SMBuild rename to base/fribidi/smbuild diff --git a/base/ftjam/ftjam.SMBuild b/base/ftjam/smbuild similarity index 100% rename from base/ftjam/ftjam.SMBuild rename to base/ftjam/smbuild diff --git a/base/fuse/fuse.SMBuild b/base/fuse/smbuild similarity index 100% rename from base/fuse/fuse.SMBuild rename to base/fuse/smbuild diff --git a/base/fuse2/fuse2.SMBuild b/base/fuse2/fuse2.SMBuild deleted file mode 100644 index 71ca168..0000000 --- a/base/fuse2/fuse2.SMBuild +++ /dev/null @@ -1,43 +0,0 @@ -# Maintainer: PktSurf -app=fuse2 -version=2.9.5 -build=2sml -homepage="https://github.com/libfuse/libfuse" -download="https://github.com/libfuse/libfuse/releases/download/fuse-$version/fuse-$version.tar.xz" -desc="Interface to export virtual filesystem in userspace" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf fuse-$version - - tar xf $srcdir/fuse-$version.tar.?z* - cd fuse-$version - fixbuilddirpermissions -} - -build() { - INIT_D_PATH="/etc/rc.d" \ - MOUNT_FUSE_PATH="/bin" \ - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --sbindir=/bin \ - --enable-lib \ - --enable-shared \ - --disable-static - - make - make install DESTDIR=$pkg - - rm -rv $pkg/dev - mv $pkg/etc/rc.d/fuse $pkg/etc/rc.d/rc.fuse2.new - - cp COPYING* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -8d24254a26314a3c2f84108cd3aadc357b9ac943edd279f6fcd86c1821238ac01817880cfc994172b50a07bf74ead1e3bb44faf17eee81cca3baf3a6a960e823 fuse-2.9.5.tar.lz -" diff --git a/base/fuse3/fuse3.SMBuild b/base/fuse3/fuse3.SMBuild deleted file mode 100644 index 662d420..0000000 --- a/base/fuse3/fuse3.SMBuild +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: PktSurf -app=fuse3 -version=3.10.5 -build=1sml -homepage="https://github.com/libfuse/libfuse" -download="https://github.com/libfuse/libfuse/archive/refs/tags/fuse3-$version.tar.gz" -desc="Filesystem in Userspace v3" -requires="udev" - -prepbuilddir() { - mkandenterbuilddir - rm -rf fuse-$version - - tar xf $srcdir/fuse-$version.tar.?z* - cd fuse-$version - fixbuilddirpermissions -} - -build() { - mkdir -p smbuild && cd smbuild - sed -i 's@/etc/init.d/fuse3@/etc/rc.d/rc.fuse.new@g' ../util/install_helper.sh - meson .. \ - --prefix="/" \ - --sbindir=bin \ - -Dexamples=false - - ninja - DESTDIR="$pkg" ninja install - - cp ../LICENSE $pkgdocs - - rm -rv $pkg/dev - - mkfinalpkg -} - -sha512sums=" -d4c397ae6522cc841099e76bb1e11493555e1f2767169cd6980aa64eed6f41a27f19d1282d6f521e1602c533f58ef90af5b1b4bdf86dc032d7316cceba57ead1 fuse-3.10.5.tar.lz -" diff --git a/base/gawk/gawk.SMBuild b/base/gawk/smbuild similarity index 100% rename from base/gawk/gawk.SMBuild rename to base/gawk/smbuild diff --git a/base/gdb/gdb.SMBuild b/base/gdb/smbuild similarity index 100% rename from base/gdb/gdb.SMBuild rename to base/gdb/smbuild diff --git a/base/gdbm/gdbm.SMBuild b/base/gdbm/smbuild similarity index 100% rename from base/gdbm/gdbm.SMBuild rename to base/gdbm/smbuild diff --git a/base/gettext/gettext.SMBuild b/base/gettext/smbuild similarity index 100% rename from base/gettext/gettext.SMBuild rename to base/gettext/smbuild diff --git a/base/giflib/giflib.SMBuild b/base/giflib/smbuild similarity index 100% rename from base/giflib/giflib.SMBuild rename to base/giflib/smbuild diff --git a/base/git/git.SMBuild b/base/git/git.SMBuild deleted file mode 100755 index 7ec8828..0000000 --- a/base/git/git.SMBuild +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: PktSurf -app=git -version=2.30.8 -build=1sml -homepage="https://git-scm.com/" -download="https://mirrors.edge.kernel.org/pub/software/scm/git/git-$version.tar.xz" -desc="Fast, scalable, distributed revision control system" -requires="curl openssl pcre asciidoc" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - make CC="$CC" $MAKEFLAGS CFLAGS="$CFLAGS" \ - prefix="" gitexecdir="/lib/git-core" \ - NO_TCLTK=1 NO_PYTHON=1 NO_EXPAT=1 NO_GETTEXT=1 \ - NO_REGEX=NeedsStartEnd \ - DESTDIR="$pkg" all install install-man - - rm -f $pkg/lib/perl5/core_perl_perllocal.pod - install -Dm 755 gitk-git/gitk $pkg/bin/gitk - install -Dm 664 perl/FromCPAN/Error.pm $pkg/lib/perl5/site_perl/Error.pm - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -a01b3c2a2aab6ad3e7604d3c15de3969249dae114dd5cc0505a534b1142b4342fc8160449d41dd6561b8fd4441a3b1de516d6b6d0cbf07fe0fd97dfcab8de2f9 git-2.30.8.tar.lz -" diff --git a/base/git/smbuild b/base/git/smbuild new file mode 100644 index 0000000..55adeb9 --- /dev/null +++ b/base/git/smbuild @@ -0,0 +1,45 @@ +# Maintainer: PktSurf +app=git +version=2.46.2 +build=1sml +homepage="https://git-scm.com/" +download="https://mirrors.edge.kernel.org/pub/software/scm/git/git-$version.tar.xz" +desc="Fast, scalable, distributed revision control system" +requires="curl openssl pcre asciidoc" + +prepbuilddir() { + mkandenterbuilddir + rm -rf $app-$version + + tar xf $srcdir/$app-$version.tar.?z* + cd $app-$version + fixbuilddirpermissions +} + +build() { + + make CC="$CC" $MAKEFLAGS CFLAGS="$CFLAGS" \ + prefix=/usr gitexecdir="/usr/lib/git-core" \ + libdir=/usr/lib \ + NO_TCLTK=1 NO_PYTHON=1 NO_EXPAT=1 NO_GETTEXT=1 \ + NO_REGEX=NeedsStartEnd \ + DESTDIR="$pkg" all install + + install -Dm 755 gitk-git/gitk $pkg/usr/bin/gitk + install -Dm 664 perl/FromCPAN/Error.pm $pkg/usr/lib/perl5/site_perl/Error.pm + + cp COPYING $pkgdocs/ + + ( + mkdir -p $pkg/usr/share/man + cd $pkg/usr/share/man + tar xf $srcdir/git-manpages-$version.tar.?z* + ) + + mkfinalpkg +} + +sha512sums=" +f61bc1acbcf3653ba8d7d061fe69abd0f093bad6fd73da4a8ee949728ec298c0a66afc010565cf162a2cd191aecb378a429fed02479988ec995dead65951c652 git-2.46.2.tar.lz +4b16f6970db72944d83a8f4b7aa71508bf59b29d1bdff37be7f61ddc40b352f18bfa3665b29f7f1542d3fb589649f642ec61d0815eac65d02b8b2b222e142ad9 git-manpages-2.46.2.tar.lz +" diff --git a/base/glib/glib.SMBuild b/base/glib/smbuild similarity index 100% rename from base/glib/glib.SMBuild rename to base/glib/smbuild diff --git a/base/gloox/gloox.SMBuild b/base/gloox/smbuild similarity index 100% rename from base/gloox/gloox.SMBuild rename to base/gloox/smbuild diff --git a/base/glslang/smbuild b/base/glslang/smbuild new file mode 100644 index 0000000..e219fd9 --- /dev/null +++ b/base/glslang/smbuild @@ -0,0 +1,37 @@ +# Maintainer: SMLinux +app=glslang +version=1.3.216.0 +build=1sml +homepage="https://github.com/KhronosGroup/glslang" +download="https://github.com/KhronosGroup/glslang/archive/sdk-1.3.216.0.tar.gz" +desc="Khronos reference front-end for GLSL" +requires="musl" + +prepbuilddir() { + mkandenterbuilddir + rm -rf $app-$version + + tar xf $srcdir/$app-$version.tar.?z* + cd $app-$version + fixbuilddirpermissions +} + +build() { + mkdir -p smbuild && cd smbuild + cmake .. \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -Wno-dev + + make + make install DESTDIR=$pkg + + cp ../LICENSE* $pkgdocs/ + + mkfinalpkg +} + + +sha512sums=" +8e597e721092c4a6302fef1429057349a361ee3224568b1c1008aa8a57cbdec766cf6f3d4dfc11bb2ad34ea7a04bb8246b0320815371fe3cc78d3a201f4be6d8 glslang-1.3.216.0.tar.lz +" diff --git a/base/gmime/gmime.SMBuild b/base/gmime/smbuild similarity index 100% rename from base/gmime/gmime.SMBuild rename to base/gmime/smbuild diff --git a/base/gmp/gmp.SMBuild b/base/gmp/smbuild similarity index 100% rename from base/gmp/gmp.SMBuild rename to base/gmp/smbuild diff --git a/base/gnu-efi/gnu-efi.SMBuild b/base/gnu-efi/gnu-efi.SMBuild deleted file mode 100755 index 476daeb..0000000 --- a/base/gnu-efi/gnu-efi.SMBuild +++ /dev/null @@ -1,28 +0,0 @@ -# Maintainer: PktSurf -app=gnu-efi -version=3.0.8 -build=1sml -homepage="https://sourceforge.net/projects/gnu-efi/" -download="https://sourceforge.net/projects/gnu-efi/files/gnu-efi-$version.tar.bz2" -desc="library to develop applications using GNU toolchain and EFI dev environment" -requires="libelf-compat" -apparch="x86_64" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - make PREFIX=/ INSTALLROOT="$pkg" -j1 all install - - mkfinalpkg -} - -sha512sums=" -e4e1570bef9b3a3f4e321cd84e2f497a277b3c71e8e1d2321369f5b4c0ffede6c8a8f98bc03507cd436eb247b2e6028bd719e16db5f96a57873e2910bb38be0c gnu-efi-3.0.8.tar.lz -" diff --git a/base/gnupg2/gnupg2.SMBuild b/base/gnupg2/smbuild similarity index 100% rename from base/gnupg2/gnupg2.SMBuild rename to base/gnupg2/smbuild diff --git a/base/gnutls/gnutls.SMBuild b/base/gnutls/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/gnutls/gnutls.SMBuild rename to base/gnutls/smbuild index 5c3829f..e658216 --- a/base/gnutls/gnutls.SMBuild +++ b/base/gnutls/smbuild @@ -19,9 +19,9 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --enable-openssl-compatibility \ - --disable-static + --disable-static \ + --disable-nls make make install DESTDIR=$pkg diff --git a/base/gperf/gperf.SMBuild b/base/gperf/smbuild similarity index 100% rename from base/gperf/gperf.SMBuild rename to base/gperf/smbuild diff --git a/base/gpgme/gpgme.SMBuild b/base/gpgme/smbuild similarity index 100% rename from base/gpgme/gpgme.SMBuild rename to base/gpgme/smbuild diff --git a/base/gptfdisk/gptfdisk.SMBuild b/base/gptfdisk/smbuild similarity index 100% rename from base/gptfdisk/gptfdisk.SMBuild rename to base/gptfdisk/smbuild diff --git a/base/grep/grep.SMBuild b/base/grep/smbuild similarity index 100% rename from base/grep/grep.SMBuild rename to base/grep/smbuild diff --git a/base/groff/groff.SMBuild b/base/groff/smbuild similarity index 100% rename from base/groff/groff.SMBuild rename to base/groff/smbuild diff --git a/base/gsl/gsl.SMBuild b/base/gsl/smbuild similarity index 100% rename from base/gsl/gsl.SMBuild rename to base/gsl/smbuild diff --git a/base/gstreamer/gstreamer.SMBuild b/base/gstreamer/smbuild similarity index 100% rename from base/gstreamer/gstreamer.SMBuild rename to base/gstreamer/smbuild diff --git a/base/gyp/gyp.SMBuild b/base/gyp/smbuild similarity index 100% rename from base/gyp/gyp.SMBuild rename to base/gyp/smbuild diff --git a/base/gzip/gzip.SMBuild b/base/gzip/smbuild similarity index 100% rename from base/gzip/gzip.SMBuild rename to base/gzip/smbuild diff --git a/base/haveged/haveged.SMBuild b/base/haveged/smbuild similarity index 100% rename from base/haveged/haveged.SMBuild rename to base/haveged/smbuild diff --git a/base/hdparm/hdparm.SMBuild b/base/hdparm/smbuild similarity index 100% rename from base/hdparm/hdparm.SMBuild rename to base/hdparm/smbuild diff --git a/base/highlight/highlight.SMBuild b/base/highlight/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/highlight/highlight.SMBuild rename to base/highlight/smbuild diff --git a/base/htop/htop.SMBuild b/base/htop/smbuild similarity index 100% rename from base/htop/htop.SMBuild rename to base/htop/smbuild diff --git a/base/hunspell/hunspell.SMBuild b/base/hunspell/smbuild similarity index 100% rename from base/hunspell/hunspell.SMBuild rename to base/hunspell/smbuild diff --git a/base/hyphen/hyphen.SMBuild b/base/hyphen/smbuild similarity index 100% rename from base/hyphen/hyphen.SMBuild rename to base/hyphen/smbuild diff --git a/base/i2c-tools/i2c-tools.SMBuild b/base/i2c-tools/smbuild similarity index 100% rename from base/i2c-tools/i2c-tools.SMBuild rename to base/i2c-tools/smbuild diff --git a/base/icu/icu.SMBuild b/base/icu/smbuild similarity index 100% rename from base/icu/icu.SMBuild rename to base/icu/smbuild diff --git a/base/id3lib/id3lib.SMBuild b/base/id3lib/smbuild similarity index 100% rename from base/id3lib/id3lib.SMBuild rename to base/id3lib/smbuild diff --git a/base/ijs/ijs.SMBuild b/base/ijs/smbuild similarity index 100% rename from base/ijs/ijs.SMBuild rename to base/ijs/smbuild diff --git a/base/initfs/initfs.SMBuild b/base/initfs/initfs.SMBuild deleted file mode 100644 index 1308b21..0000000 --- a/base/initfs/initfs.SMBuild +++ /dev/null @@ -1,31 +0,0 @@ -# Maintainer: PktSurf -app=initfs -version=0.1 -build=1sml -homepage="http://git.pktsurf.in/smlinux/tree/base/initfs" -download="http://git.pktsurf.in/smlinux/tree/base/initfs" -desc="initfs - initial file system hierarchy creator" -requires="musl" -disablepkgsymlinks=1 - -prepbuilddir() { - arch=noarch - mkandenterbuilddir -} - -build() { - cd $pkg - tar xf $srcdir/$app.tar.lz - - mv initfs/* . - rmdir initfs - - chmod 1777 tmp - chmod 0700 root - - mkfinalpkg -} - -sha512sums=" -85da0195b5e58c2b01f6ab91ed7a15ebff783325b08c5ed10722e6576974c1cedf55767eb30ccf58f41fc6c88171810ee63a0d7c7d09eb925c0572802d7754de initfs.tar.lz -" diff --git a/base/intltool/intltool.SMBuild b/base/intltool/smbuild similarity index 100% rename from base/intltool/intltool.SMBuild rename to base/intltool/smbuild diff --git a/base/iptables/iptables.SMBuild b/base/iptables/smbuild similarity index 100% rename from base/iptables/iptables.SMBuild rename to base/iptables/smbuild diff --git a/base/iso-codes/iso-codes.SMBuild b/base/iso-codes/smbuild similarity index 100% rename from base/iso-codes/iso-codes.SMBuild rename to base/iso-codes/smbuild diff --git a/base/itstool/itstool.SMBuild b/base/itstool/smbuild similarity index 100% rename from base/itstool/itstool.SMBuild rename to base/itstool/smbuild diff --git a/base/jansson/jansson.SMBuild b/base/jansson/smbuild similarity index 100% rename from base/jansson/jansson.SMBuild rename to base/jansson/smbuild diff --git a/base/jbig2dec/jbig2dec.SMBuild b/base/jbig2dec/smbuild similarity index 100% rename from base/jbig2dec/jbig2dec.SMBuild rename to base/jbig2dec/smbuild diff --git a/base/json-c/json-c.SMBuild b/base/json-c/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/json-c/json-c.SMBuild rename to base/json-c/smbuild diff --git a/base/json-glib/json-glib.SMBuild b/base/json-glib/smbuild similarity index 100% rename from base/json-glib/json-glib.SMBuild rename to base/json-glib/smbuild diff --git a/base/kbd/kbd.SMBuild b/base/kbd/smbuild similarity index 100% rename from base/kbd/kbd.SMBuild rename to base/kbd/smbuild diff --git a/base/kernel-headers/kernel-headers.SMBuild b/base/kernel-headers/smbuild old mode 100755 new mode 100644 similarity index 83% rename from base/kernel-headers/kernel-headers.SMBuild rename to base/kernel-headers/smbuild index dc413c7..68f67e5 --- a/base/kernel-headers/kernel-headers.SMBuild +++ b/base/kernel-headers/smbuild @@ -26,6 +26,6 @@ build() { } sha512sums=" -5a975ba49b577869f2338aa80f44efd4e94f76e5b4bda11a6a1761a6d646848fdeaad7c820339b2c1c20d55f9bbf0e686121d621ac1cfa1dfc6cd71a166ade3a linux-headers-4.19.88.tar.xz +702fbc196fb88db79b755a058d166e3fd65ab1c60a7ec91048243fdf2ce23ef4b867def4a1b31941465033bb8139f6c73834fef5afa15303fe38d687bcc2e41b linux-headers-4.19.88.tar.lz 185d627c8704cfdf423e7bcd16d54046d857457fd24ad087d6ad8cd768e5dcb9b8e19e688348afec233d54c5e85106e1d7246cd7cd0413865feb488d2ca64d7b ptrace.h.patch -" +" \ No newline at end of file diff --git a/base/kernel-source/README b/base/kernel-source/README deleted file mode 100644 index a93520b..0000000 --- a/base/kernel-source/README +++ /dev/null @@ -1,24 +0,0 @@ -!!!! THIS SOURCE IS NOT FOR THE RASPBERRY PI KERNEL !!!! - -The kernel configuration file .config was taken from slackware-current -meant for use in 'huge' kernel 5.4.41 as slackware devs term it. - -I've disabled the ORC unwinder and am instead using frame pointer in the below -location using and the kernel builds fine. - -Kernel hacking -> Choose kernel unwinder - -The kernel build generates errors like these if ORC unwinder is chosen and -ultimately fails: - -... -arch/x86/kernel/e820.o: warning: objtool: elf_update: cannot write data to file -kernel/sched/rt.o: warning: objtool: elf_update: cannot write data to file -kernel/trace/trace_seq.o: warning: objtool: elf_update: cannot write data to file -kernel/kallsyms.o: warning: objtool: elf_update: cannot write data to file - -... -ar: warning: arch/x86/kernel/irq_64.o has a corrupt section with a size () larger than the file size -ar: warning: arch/x86/kernel/dumpstack_64.o has a corrupt section with a size () larger than the file size -ar: warning: arch/x86/kernel/time.o has a corrupt section with a size () larger than the file size -ar: built-in.o: invalid operation diff --git a/base/kernel-source/kernel-source.SMBuild b/base/kernel-source/kernel-source.SMBuild deleted file mode 100755 index b3cded7..0000000 --- a/base/kernel-source/kernel-source.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=kernel-source -version=5.4.41 -build=1sml -requires="musl" -homepage="https://www.kernel.org" -desc="source code for the Linux kernel" -aarchversion=5.4.51 - -prepbuilddir() { - mkandenterbuilddir - rm -rf linux-$version - - tar xf $srcdir/linux-$version.tar.?z* - fixbuilddirpermissions -} - -build() { - if [[ $HOSTTYPE = x86_64 ]] ; then - zcat $srcdir/kernelconfig-huge-$version.gz > linux-$version/.config - install -Dm 644 $srcdir/README $pkg/share/doc/$app-$version/README - elif [[ $HOSTTYPE = aarch64 ]] ; then - zcat $srcdir/kernelconfig-$aarchversion.gz > linux-$version/.config - fi - - mkdir -p $pkg/share - cp -a linux-$version $pkg/share/ - - mkfinalpkg -} - -sha512sums=" -711db80661f2e94fd4819991bd69ff7c3124832ffd6c17025bb82daf2177b82d6700454f7cc58f76c9f839fddf1316f49406af3c2572723b3455b2aac689f7a4 linux-5.4.41.tar.xz -" diff --git a/base/keyutils/keyutils.SMBuild b/base/keyutils/smbuild similarity index 100% rename from base/keyutils/keyutils.SMBuild rename to base/keyutils/smbuild diff --git a/base/kmod/kmod.SMBuild b/base/kmod/smbuild similarity index 100% rename from base/kmod/kmod.SMBuild rename to base/kmod/smbuild diff --git a/base/lame/lame.SMBuild b/base/lame/smbuild similarity index 100% rename from base/lame/lame.SMBuild rename to base/lame/smbuild diff --git a/base/less/less.SMBuild b/base/less/smbuild similarity index 100% rename from base/less/less.SMBuild rename to base/less/smbuild diff --git a/base/libaio/libaio.SMBuild b/base/libaio/smbuild similarity index 100% rename from base/libaio/libaio.SMBuild rename to base/libaio/smbuild diff --git a/base/libao/libao.SMBuild b/base/libao/smbuild similarity index 100% rename from base/libao/libao.SMBuild rename to base/libao/smbuild diff --git a/base/libarchive/libarchive.SMBuild b/base/libarchive/smbuild similarity index 100% rename from base/libarchive/libarchive.SMBuild rename to base/libarchive/smbuild diff --git a/base/libasr/libasr.SMBuild b/base/libasr/smbuild similarity index 100% rename from base/libasr/libasr.SMBuild rename to base/libasr/smbuild diff --git a/base/libassuan/libassuan.SMBuild b/base/libassuan/smbuild similarity index 100% rename from base/libassuan/libassuan.SMBuild rename to base/libassuan/smbuild diff --git a/base/libcap-ng/libcap-ng.SMBuild b/base/libcap-ng/smbuild similarity index 100% rename from base/libcap-ng/libcap-ng.SMBuild rename to base/libcap-ng/smbuild diff --git a/base/libcap/libcap.SMBuild b/base/libcap/smbuild similarity index 100% rename from base/libcap/libcap.SMBuild rename to base/libcap/smbuild diff --git a/base/libcddb/libcddb.SMBuild b/base/libcddb/smbuild similarity index 100% rename from base/libcddb/libcddb.SMBuild rename to base/libcddb/smbuild diff --git a/base/libcdio-paranoia/libcdio-paranoia.SMBuild b/base/libcdio-paranoia/smbuild similarity index 100% rename from base/libcdio-paranoia/libcdio-paranoia.SMBuild rename to base/libcdio-paranoia/smbuild diff --git a/base/libcdio/libcdio.SMBuild b/base/libcdio/smbuild similarity index 100% rename from base/libcdio/libcdio.SMBuild rename to base/libcdio/smbuild diff --git a/base/libcroco/libcroco.SMBuild b/base/libcroco/smbuild similarity index 100% rename from base/libcroco/libcroco.SMBuild rename to base/libcroco/smbuild diff --git a/base/libcue/libcue.SMBuild b/base/libcue/smbuild similarity index 100% rename from base/libcue/libcue.SMBuild rename to base/libcue/smbuild diff --git a/base/libdaemon/libdaemon.SMBuild b/base/libdaemon/smbuild similarity index 100% rename from base/libdaemon/libdaemon.SMBuild rename to base/libdaemon/smbuild diff --git a/base/libelf-compat/libelf-compat.SMBuild b/base/libelf-compat/libelf-compat.SMBuild deleted file mode 100644 index 7752ec7..0000000 --- a/base/libelf-compat/libelf-compat.SMBuild +++ /dev/null @@ -1,32 +0,0 @@ -# Maintainer: PktSurf -app=libelf-compat -version=0.152c001 -build=1sml -homepage="https://sourceware.org/elfutils/" -desc="library for manipulating ELF headers" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - echo "CFLAGS += $CFLAGS -fPIC" > config.mak - sed -i 's@HEADERS = src/libelf.h@HEADERS = src/libelf.h src/gelf.h@' Makefile - - make - make prefix= install DESTDIR="$pkg" - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -8e87c4ae5e073dcf88e8b7fbdfc4512de67a49e3288c576b705ac7af3a2023ba994756180c4b817a45f5bffc8915b22f19908fdd48a1412aae62bf1888e74b66 libelf-compat-0.152c001.tar.lz -" diff --git a/base/libetpan/libetpan.SMBuild b/base/libetpan/smbuild similarity index 100% rename from base/libetpan/libetpan.SMBuild rename to base/libetpan/smbuild diff --git a/base/libevent/libevent.SMBuild b/base/libevent/smbuild similarity index 100% rename from base/libevent/libevent.SMBuild rename to base/libevent/smbuild diff --git a/base/libexif/libexif.SMBuild b/base/libexif/smbuild similarity index 100% rename from base/libexif/libexif.SMBuild rename to base/libexif/smbuild diff --git a/base/libffi/libffi.SMBuild b/base/libffi/smbuild similarity index 100% rename from base/libffi/libffi.SMBuild rename to base/libffi/smbuild diff --git a/base/libgc/libgc.SMBuild b/base/libgc/smbuild similarity index 100% rename from base/libgc/libgc.SMBuild rename to base/libgc/smbuild diff --git a/base/libgcrypt/libgcrypt.SMBuild b/base/libgcrypt/smbuild similarity index 100% rename from base/libgcrypt/libgcrypt.SMBuild rename to base/libgcrypt/smbuild diff --git a/base/libgit2/libgit2.SMBuild b/base/libgit2/smbuild similarity index 100% rename from base/libgit2/libgit2.SMBuild rename to base/libgit2/smbuild diff --git a/base/libgpg-error/libgpg-error.SMBuild b/base/libgpg-error/smbuild similarity index 100% rename from base/libgpg-error/libgpg-error.SMBuild rename to base/libgpg-error/smbuild diff --git a/base/libical/libical.SMBuild b/base/libical/smbuild similarity index 100% rename from base/libical/libical.SMBuild rename to base/libical/smbuild diff --git a/base/libid3tag/libid3tag.SMBuild b/base/libid3tag/smbuild similarity index 100% rename from base/libid3tag/libid3tag.SMBuild rename to base/libid3tag/smbuild diff --git a/base/libidn2/libidn2.SMBuild b/base/libidn2/smbuild similarity index 100% rename from base/libidn2/libidn2.SMBuild rename to base/libidn2/smbuild diff --git a/base/libjpeg-turbo/libjpeg-turbo.SMBuild b/base/libjpeg-turbo/smbuild similarity index 100% rename from base/libjpeg-turbo/libjpeg-turbo.SMBuild rename to base/libjpeg-turbo/smbuild diff --git a/base/libkate/libkate.SMBuild b/base/libkate/smbuild similarity index 100% rename from base/libkate/libkate.SMBuild rename to base/libkate/smbuild diff --git a/base/libksba/libksba.SMBuild b/base/libksba/smbuild similarity index 100% rename from base/libksba/libksba.SMBuild rename to base/libksba/smbuild diff --git a/base/libmilter/libmilter.SMBuild b/base/libmilter/smbuild similarity index 100% rename from base/libmilter/libmilter.SMBuild rename to base/libmilter/smbuild diff --git a/base/libminizip/libminizip.SMBuild b/base/libminizip/smbuild similarity index 100% rename from base/libminizip/libminizip.SMBuild rename to base/libminizip/smbuild diff --git a/base/libmms/libmms.SMBuild b/base/libmms/smbuild similarity index 100% rename from base/libmms/libmms.SMBuild rename to base/libmms/smbuild diff --git a/base/libmnl/libmnl.SMBuild b/base/libmnl/smbuild similarity index 100% rename from base/libmnl/libmnl.SMBuild rename to base/libmnl/smbuild diff --git a/base/libmodplug/libmodplug.SMBuild b/base/libmodplug/smbuild similarity index 100% rename from base/libmodplug/libmodplug.SMBuild rename to base/libmodplug/smbuild diff --git a/base/libmtp/libmtp.SMBuild b/base/libmtp/smbuild similarity index 100% rename from base/libmtp/libmtp.SMBuild rename to base/libmtp/smbuild diff --git a/base/libmypaint/libmypaint.SMBuild b/base/libmypaint/smbuild similarity index 100% rename from base/libmypaint/libmypaint.SMBuild rename to base/libmypaint/smbuild diff --git a/base/libnetfilter-conntrack/libnetfilter-conntrack.SMBuild b/base/libnetfilter-conntrack/smbuild similarity index 100% rename from base/libnetfilter-conntrack/libnetfilter-conntrack.SMBuild rename to base/libnetfilter-conntrack/smbuild diff --git a/base/libnfnetlink/libnfnetlink.SMBuild b/base/libnfnetlink/smbuild similarity index 100% rename from base/libnfnetlink/libnfnetlink.SMBuild rename to base/libnfnetlink/smbuild diff --git a/base/libnfs/libnfs.SMBuild b/base/libnfs/smbuild similarity index 100% rename from base/libnfs/libnfs.SMBuild rename to base/libnfs/smbuild diff --git a/base/libnl/libnl.SMBuild b/base/libnl/smbuild similarity index 100% rename from base/libnl/libnl.SMBuild rename to base/libnl/smbuild diff --git a/base/libogg/libogg.SMBuild b/base/libogg/smbuild similarity index 100% rename from base/libogg/libogg.SMBuild rename to base/libogg/smbuild diff --git a/base/libopenal/libopenal.SMBuild b/base/libopenal/smbuild similarity index 100% rename from base/libopenal/libopenal.SMBuild rename to base/libopenal/smbuild diff --git a/base/libpcap/libpcap.SMBuild b/base/libpcap/smbuild similarity index 100% rename from base/libpcap/libpcap.SMBuild rename to base/libpcap/smbuild diff --git a/base/libplist/libplist.SMBuild b/base/libplist/smbuild similarity index 100% rename from base/libplist/libplist.SMBuild rename to base/libplist/smbuild diff --git a/base/libpng/libpng.SMBuild b/base/libpng/smbuild similarity index 100% rename from base/libpng/libpng.SMBuild rename to base/libpng/smbuild diff --git a/base/libpsl/libpsl.SMBuild b/base/libpsl/smbuild similarity index 100% rename from base/libpsl/libpsl.SMBuild rename to base/libpsl/smbuild diff --git a/base/libpthread-stubs/libpthread-stubs.SMBuild b/base/libpthread-stubs/smbuild similarity index 100% rename from base/libpthread-stubs/libpthread-stubs.SMBuild rename to base/libpthread-stubs/smbuild diff --git a/base/libptytty/libptytty.SMBuild b/base/libptytty/smbuild similarity index 100% rename from base/libptytty/libptytty.SMBuild rename to base/libptytty/smbuild diff --git a/base/libqalculate/libqalculate.SMBuild b/base/libqalculate/smbuild similarity index 100% rename from base/libqalculate/libqalculate.SMBuild rename to base/libqalculate/smbuild diff --git a/base/libsamplerate/libsamplerate.SMBuild b/base/libsamplerate/smbuild similarity index 100% rename from base/libsamplerate/libsamplerate.SMBuild rename to base/libsamplerate/smbuild diff --git a/base/libseccomp/libseccomp.SMBuild b/base/libseccomp/smbuild similarity index 100% rename from base/libseccomp/libseccomp.SMBuild rename to base/libseccomp/smbuild diff --git a/base/libsecret/libsecret.SMBuild b/base/libsecret/smbuild similarity index 100% rename from base/libsecret/libsecret.SMBuild rename to base/libsecret/smbuild diff --git a/base/libshout/libshout.SMBuild b/base/libshout/smbuild similarity index 100% rename from base/libshout/libshout.SMBuild rename to base/libshout/smbuild diff --git a/base/libsndfile/libsndfile.SMBuild b/base/libsndfile/smbuild similarity index 100% rename from base/libsndfile/libsndfile.SMBuild rename to base/libsndfile/smbuild diff --git a/base/libsodium/libsodium.SMBuild b/base/libsodium/smbuild similarity index 100% rename from base/libsodium/libsodium.SMBuild rename to base/libsodium/smbuild diff --git a/base/libssh2/libssh2.SMBuild b/base/libssh2/smbuild similarity index 100% rename from base/libssh2/libssh2.SMBuild rename to base/libssh2/smbuild diff --git a/base/libtasn1/libtasn1.SMBuild b/base/libtasn1/smbuild similarity index 100% rename from base/libtasn1/libtasn1.SMBuild rename to base/libtasn1/smbuild diff --git a/base/libtheora/libtheora.SMBuild b/base/libtheora/smbuild similarity index 100% rename from base/libtheora/libtheora.SMBuild rename to base/libtheora/smbuild diff --git a/base/libtirpc/libtirpc.SMBuild b/base/libtirpc/libtirpc.SMBuild deleted file mode 100644 index 24ae040..0000000 --- a/base/libtirpc/libtirpc.SMBuild +++ /dev/null @@ -1,50 +0,0 @@ -# Maintainer: PktSurf -app=libtirpc -version=1.2.6 -build=1sml -homepage="http://sourceforge.net/projects/libtirpc/" -download="https://downloads.sourceforge.net/libtirpc/libtirpc-$version.tar.bz2" -desc="Transport-Independent RPC library" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/soname-suffix.patch -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --disable-static \ - --disable-gssapi - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - # Don't use .3t man page suffix: - if [ -d $pkg/usr/share/man/man3 ]; then - ( cd $pkg/usr/share/man/man3 - for file in *.3t ; do - mv $file $(basename $file .3t).3 - done - ) - fi - - mv $pkg/etc/netconfig $pkg/etc/netconfig.new - - mkfinalpkg -} - -sha512sums=" -b4feea6341828e5bf3f0f69f543a737e91955da20d9e668910ced27fb5ec5fc0761996680c18dd4ff7fff901f4b72da7d15bcddf5084f7eec80ea4308c4398f9 libtirpc-1.2.6.tar.lz -ccb6352c3c3b896765581595b9a0e45a527c34cbc16495d3890f996a2bc077a02ceae0ddd63505b3420a8414b93a267c82a11bc75997de8f9ca0a22e4c4daa5c soname-suffix.patch -" diff --git a/base/libtool/libtool.SMBuild b/base/libtool/smbuild similarity index 100% rename from base/libtool/libtool.SMBuild rename to base/libtool/smbuild diff --git a/base/libtorrent/libtorrent.SMBuild b/base/libtorrent/smbuild similarity index 100% rename from base/libtorrent/libtorrent.SMBuild rename to base/libtorrent/smbuild diff --git a/base/libunistring/libunistring.SMBuild b/base/libunistring/smbuild similarity index 100% rename from base/libunistring/libunistring.SMBuild rename to base/libunistring/smbuild diff --git a/base/libusb/libusb.SMBuild b/base/libusb/smbuild similarity index 100% rename from base/libusb/libusb.SMBuild rename to base/libusb/smbuild diff --git a/base/libuv/libuv.SMBuild b/base/libuv/smbuild similarity index 100% rename from base/libuv/libuv.SMBuild rename to base/libuv/smbuild diff --git a/base/libvncserver/libvncserver.SMBuild b/base/libvncserver/smbuild similarity index 100% rename from base/libvncserver/libvncserver.SMBuild rename to base/libvncserver/smbuild diff --git a/base/libvorbis/libvorbis.SMBuild b/base/libvorbis/smbuild similarity index 100% rename from base/libvorbis/libvorbis.SMBuild rename to base/libvorbis/smbuild diff --git a/base/libvpx/libvpx.SMBuild b/base/libvpx/smbuild similarity index 100% rename from base/libvpx/libvpx.SMBuild rename to base/libvpx/smbuild diff --git a/base/libxml2/libxml2.SMBuild b/base/libxml2/smbuild similarity index 100% rename from base/libxml2/libxml2.SMBuild rename to base/libxml2/smbuild diff --git a/base/libxslt/libxslt.SMBuild b/base/libxslt/smbuild similarity index 100% rename from base/libxslt/libxslt.SMBuild rename to base/libxslt/smbuild diff --git a/base/llvm/llvm.SMBuild b/base/llvm/smbuild old mode 100755 new mode 100644 similarity index 95% rename from base/llvm/llvm.SMBuild rename to base/llvm/smbuild index ce565e7..c2fb5af --- a/base/llvm/llvm.SMBuild +++ b/base/llvm/smbuild @@ -6,8 +6,6 @@ homepage="http://llvm.org/" download="https://github.com/llvm/llvm-project/releases/download/llvmorg-$version/llvm-$version.src.tar.xz" desc="LLVM compiler toolkit" requires="libffi libxml2 perl cmake" -# llvm loves to override any option that alters placement of binaries -ignoreusrbin=1 prepbuilddir() { mkandenterbuilddir @@ -19,7 +17,7 @@ prepbuilddir() { cd $app-$version.src fixbuilddirpermissions - applypatch $srcdir/install-prefix.patch + #applypatch $srcdir/install-prefix.patch buildtargets='X86;AMDGPU;BPF' diff --git a/base/lm-sensors/lm-sensors.SMBuild b/base/lm-sensors/smbuild old mode 100755 new mode 100644 similarity index 83% rename from base/lm-sensors/lm-sensors.SMBuild rename to base/lm-sensors/smbuild index c4f7251..da87da7 --- a/base/lm-sensors/lm-sensors.SMBuild +++ b/base/lm-sensors/smbuild @@ -18,8 +18,8 @@ prepbuilddir() { } build() { - make PREFIX=/usr SBINDIR=/bin BUILD_STATIC_LIB=0 - make install PREFIX=/usr DESTDIR="$pkg" BINDIR=/bin SBINDIR=/bin MANDIR=/usr/share/man BUILD_STATIC_LIB=0 + make PREFIX=/usr SBINDIR=/usr/bin BUILD_STATIC_LIB=0 + make install PREFIX=/usr DESTDIR="$pkg" SBINDIR=/usr/bin MANDIR=/usr/share/man BUILD_STATIC_LIB=0 cp COPYING* $pkgdocs/ diff --git a/base/logrotate/logrotate.SMBuild b/base/logrotate/smbuild old mode 100755 new mode 100644 similarity index 89% rename from base/logrotate/logrotate.SMBuild rename to base/logrotate/smbuild index 0f6d7ce..53a6398 --- a/base/logrotate/logrotate.SMBuild +++ b/base/logrotate/smbuild @@ -27,8 +27,8 @@ build() { make clean make - install -Dm 755 $app $pkg/bin/$app - install -Dm 644 $app.8 $pkg/usr/share/man/man8/$app.8 + install -Dm 755 logrotate $pkg/usr/bin/logrotate + install -Dm 644 logrotate.8 $pkg/usr/share/man/man8/logrotate.8 mkdir -p $pkg/etc/logrotate.d $pkg/var/spool/cron/crontabs cp $srcdir/logrotate.conf.new $pkg/etc/ diff --git a/base/lsof/lsof.SMBuild b/base/lsof/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/lsof/lsof.SMBuild rename to base/lsof/smbuild index 0bd297d..347cdf8 --- a/base/lsof/lsof.SMBuild +++ b/base/lsof/smbuild @@ -22,7 +22,7 @@ build() { make CC="$CC" LDFLAGS="-static" cp 00README $pkgdocs/LICENSE - install -Dm 755 lsof $pkg/bin/lsof + install -Dm 755 lsof $pkg/usr/bin/lsof install -Dm 644 Lsof.8 $pkg/usr/share/man/man8/lsof.8 mkfinalpkg diff --git a/base/lua/lua.SMBuild b/base/lua/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/lua/lua.SMBuild rename to base/lua/smbuild index 76f08c2..08e0672 --- a/base/lua/lua.SMBuild +++ b/base/lua/smbuild @@ -26,7 +26,7 @@ build() { make linux install \ CFLAGS="$CFLAGS" \ - INSTALL_BIN="$pkg/bin" \ + INSTALL_BIN="$pkg/usr/bin" \ INSTALL_MAN="$pkg/usr/share/man/man1" # Build the shared library diff --git a/base/lua53/lua53.SMBuild b/base/lua53/lua53.SMBuild deleted file mode 100755 index b7ae543..0000000 --- a/base/lua53/lua53.SMBuild +++ /dev/null @@ -1,84 +0,0 @@ -# Maintainer: PktSurf -app=lua53 -version=5.3.5 -build=1sml -homepage="https://www.lua.org/home.html" -download="https://www.lua.org/ftp/lua-$version.tar.gz" -desc="powerful, fast, light-weight, embeddable scripting language" -requires="readline" -disableverbosebuild=1 - -prepbuilddir() { - mkandenterbuilddir - rm -rf lua-$version - - tar xf $srcdir/lua-$version.tar.?z* - cd lua-$version - fixbuilddirpermissions - - applypatch $srcdir/CVE-2019-6706-use-after-free-lua_upvaluejoin.patch - - eval $(sed -ne '/^\(V\|R\)= /s, ,,p' Makefile) - - sed -i \ - -e '/^INSTALL_TOP= /s,\(/\).*,\$(DESTDIR)\1,' \ - -e '/^INSTALL_INC= /s,include,&/lua\$V,' \ - -e '/^TO_BIN= /s,luac\?,&\$V,g' \ - -e '/^TO_LIB= /s,liblua,&\$V,' \ - Makefile - - sed -i \ - -e '/^CFLAGS= /s,-O2,'"$CFLAGS"',' \ - -e '/-DLUA_USE_LINUX.*-Wl,-E -ldl -lreadline/s|-lreadline|& -lcurses|' \ - -e '/^LUA_A=/s,liblua,&'"$V"',' \ - -e '/^LUA_T=/s,lua,&'"$V"',' \ - -e '/^LUAC_T=/s,luac,&'"$V"',' \ - src/Makefile -} - -build() { - make linux - make install INSTALL_MAN="$pkg/share/man/man1" DESTDIR=$pkg - - # Now let's build the shared library - mkdir -p shared && cd shared - ar -x $pkg/lib/liblua$V.a - gcc -ldl -lreadline -lncurses -lterminfo -lm -shared *.o -o liblua$V.so.$R - cp -a liblua$V.so.$R $pkg/lib/ - - ( cd $pkg/lib - ln -sf liblua$V.so.$R liblua$V.so.$V - ln -sf liblua$V.so.$R liblua$V.so.${V%??} - ln -sf liblua$V.so.$R liblua$V.so - ) - cd - >/dev/null - - mkdir -p $pkg/lib/pkgconfig - ( - cd $pkg/lib/pkgconfig - sed \ - -e '/^V= /s, .*, '"$V"',' \ - -e '/^R= /s, .*, '"$R"',' \ - -e '/^prefix= /s,\(/\).*,\1,' \ - -e '/^INSTALL_INC= /s,include,&/lua\${V},' \ - -e '/^includedir=/s,/include,&/lua\${V},' \ - $srcdir/lua.pc.in > lua$V.pc - ln -sf lua$V.pc lua-$V.pc - ln -sf lua$V.pc lua${V%.?}${V#?.}.pc - ) - - cd - >/dev/null - ( - cd $pkg/share/man/man1 - mv lua.1 lua$V.1 - mv luac.1 luac$V.1 - cd - >/dev/null - ) - - mkfinalpkg -} - -sha512sums=" -4f9516acc4659dfd0a9e911bfa00c0788f0ad9348e5724fe8fb17aac59e9c0060a64378f82be86f8534e49c6c013e7488ad17321bafcc787831d3d67406bd0f4 lua-5.3.5.tar.gz -fde7f5f5a184cd393665c7c8c7ba3c728e1413df5f63dbe60855af13ddd313d9300720298534f4312638ddf59fa678a38f708bce622dd7a2298b4ed87c068ae7 CVE-2019-6706-use-after-free-lua_upvaluejoin.patch -" diff --git a/base/lvm/lvm.SMBuild b/base/lvm/smbuild old mode 100755 new mode 100644 similarity index 98% rename from base/lvm/lvm.SMBuild rename to base/lvm/smbuild index eb16807..632cef9 --- a/base/lvm/lvm.SMBuild +++ b/base/lvm/smbuild @@ -24,7 +24,7 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --sbindir=/bin \ + --sbindir=/usr/bin \ --disable-readline \ --enable-dmeventd \ --enable-cmdlib \ diff --git a/base/lz4/lz4.SMBuild b/base/lz4/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/lz4/lz4.SMBuild rename to base/lz4/smbuild index 1d08c2a..f3c2c15 --- a/base/lz4/lz4.SMBuild +++ b/base/lz4/smbuild @@ -20,7 +20,6 @@ build() { make -j1 \ CFLAGS="$CFLAGS" \ PREFIX=/usr \ - BINDIR=/bin \ BUILD_STATIC=no \ DESTDIR=$pkg default install diff --git a/base/lzip/lzip.SMBuild b/base/lzip/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/lzip/lzip.SMBuild rename to base/lzip/smbuild index 5a6fd6e..82a0fe0 --- a/base/lzip/lzip.SMBuild +++ b/base/lzip/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ CXXFLAGS="$CXXFLAGS -static" make diff --git a/base/lzlib/lzlib.SMBuild b/base/lzlib/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/lzlib/lzlib.SMBuild rename to base/lzlib/smbuild diff --git a/base/lzo/lzo.SMBuild b/base/lzo/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/lzo/lzo.SMBuild rename to base/lzo/smbuild diff --git a/base/m4/m4.SMBuild b/base/m4/smbuild old mode 100755 new mode 100644 similarity index 96% rename from base/m4/m4.SMBuild rename to base/m4/smbuild index 426e3ae..1ec9a37 --- a/base/m4/m4.SMBuild +++ b/base/m4/smbuild @@ -21,8 +21,7 @@ prepbuilddir() { build() { ./configure \ - --prefix=/usr \ - --bindir=/bin + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/make/make.SMBuild b/base/make/smbuild old mode 100755 new mode 100644 similarity index 98% rename from base/make/make.SMBuild rename to base/make/smbuild index 4a05d4f..48af05f --- a/base/make/make.SMBuild +++ b/base/make/smbuild @@ -22,7 +22,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --without-guile make diff --git a/base/makeself/makeself.SMBuild b/base/makeself/smbuild old mode 100755 new mode 100644 similarity index 89% rename from base/makeself/makeself.SMBuild rename to base/makeself/smbuild index 5ea9368..cbfd93c --- a/base/makeself/makeself.SMBuild +++ b/base/makeself/smbuild @@ -17,8 +17,8 @@ prepbuilddir() { } build() { - mkdir -p $pkg/bin - cp makeself-header.sh makeself.sh makeself.lsm $pkg/bin/ + mkdir -p $pkg/usr/bin + cp makeself-header.sh makeself.sh makeself.lsm $pkg/usr/bin/ install -Dm 644 makeself.1 $pkg/usr/share/man/man1/makeself.1 cp COPYING $pkgdocs/ diff --git a/base/man-pages/man-pages.SMBuild b/base/man-pages/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/man-pages/man-pages.SMBuild rename to base/man-pages/smbuild diff --git a/base/mandoc/configure.local b/base/mandoc/configure.local index 858b8cb..db89166 100644 --- a/base/mandoc/configure.local +++ b/base/mandoc/configure.local @@ -1,7 +1,5 @@ -PREFIX="" -INCLUDEDIR="/usr/include" -LIBDIR="/usr/lib" -SBINDIR="/bin" +PREFIX="/usr" +SBINDIR="/usr/bin" MANDIR="/usr/share/man" MANPATH_DEFAULT="/usr/share:/usr/share/man" MANPATH_BASE="/usr/share" diff --git a/base/mandoc/mandoc.SMBuild b/base/mandoc/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/mandoc/mandoc.SMBuild rename to base/mandoc/smbuild diff --git a/base/mdadm/mdadm.SMBuild b/base/mdadm/smbuild old mode 100755 new mode 100644 similarity index 96% rename from base/mdadm/mdadm.SMBuild rename to base/mdadm/smbuild index 15d21c3..ace513c --- a/base/mdadm/mdadm.SMBuild +++ b/base/mdadm/smbuild @@ -27,7 +27,7 @@ prepbuilddir() { build() { make - make install BINDIR=/bin DESTDIR="$pkg" + make install DESTDIR="$pkg" install -Dm 644 mdadm.conf-example $pkg/etc/mdadm.conf.new cp COPYING $pkgdocs/ diff --git a/base/meson/meson.SMBuild b/base/meson/smbuild old mode 100755 new mode 100644 similarity index 92% rename from base/meson/meson.SMBuild rename to base/meson/smbuild index 1c611e1..fc62aa3 --- a/base/meson/meson.SMBuild +++ b/base/meson/smbuild @@ -23,10 +23,6 @@ build() { cp COPYING $pkgdocs/ - mkdir $pkg/bin - mv $pkg/usr/bin/* $pkg/bin/ - rmdir $pkg/usr/bin - mkfinalpkg } diff --git a/base/miniupnpc/miniupnpc.SMBuild b/base/miniupnpc/smbuild old mode 100755 new mode 100644 similarity index 90% rename from base/miniupnpc/miniupnpc.SMBuild rename to base/miniupnpc/smbuild index 7d51276..f94f643 --- a/base/miniupnpc/miniupnpc.SMBuild +++ b/base/miniupnpc/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { make - make install INSTALLPREFIX=/usr INSTALLDIRBIN=/bin DESTDIR=$pkg LIBDIR=lib + make install INSTALLPREFIX=/usr DESTDIR=$pkg LIBDIR=lib python3 setup.py build python3 setup.py install --root=$pkg diff --git a/base/mksh/mksh.SMBuild b/base/mksh/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/mksh/mksh.SMBuild rename to base/mksh/smbuild index fd60c01..948689e --- a/base/mksh/mksh.SMBuild +++ b/base/mksh/smbuild @@ -22,7 +22,7 @@ build() { CFLAGS+=" -static" ./Build.sh install -Dm 644 mksh.1 $pkg/usr/share/man/man1/mksh.1 - install -Dm 755 mksh $pkg/bin/mksh + install -Dm 755 mksh $pkg/usr/bin/mksh head -n 26 Build.sh > $pkgdocs/LICENSE diff --git a/base/mlocate/mlocate.SMBuild b/base/mlocate/smbuild old mode 100755 new mode 100644 similarity index 98% rename from base/mlocate/mlocate.SMBuild rename to base/mlocate/smbuild index 1a4c187..db5c0bf --- a/base/mlocate/mlocate.SMBuild +++ b/base/mlocate/smbuild @@ -24,7 +24,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --localstatedir=/var make diff --git a/base/mozilla-nss/mozilla-nss.SMBuild b/base/mozilla-nss/mozilla-nss.SMBuild deleted file mode 100755 index cb9fc94..0000000 --- a/base/mozilla-nss/mozilla-nss.SMBuild +++ /dev/null @@ -1,113 +0,0 @@ -# Maintainer: PktSurf -app=mozilla-nss -version=3.87 -nsprversion=4.35 -build=1sml -homepage="https://mozilla.org" -desc="set of cryptographic libraries from Mozilla for use in security-focused applications" -requires="gyp" - -NJOBS="(echo $MAKEFLAGS | sed 's/-j//')" - -prepbuilddir() { - mkandenterbuilddir - rm -rf nss-$version - rm -rf nspr-* - - tar xf $srcdir/nss-$version.tar.?z* - cd nss-$version - tar xf $srcdir/nspr-$nsprversion.tar.?z* - mv nspr*/nspr . - fixbuilddirpermissions -} - -build() { - # NSS doesn't like our ARM64-specific optimization C/CXXFLAGS - if [[ $arch = aarch64 ]] ; then - unset CFLAGS CXXFLAGS - fi - - # Disable Werror - export NSS_ENABLE_WERROR=0 - - # Disable deprecated ciphers - export NSS_DISABLE_DEPRECATED_SEED=1 - export NSS_DISABLE_DEPRECATED_RC2=1 - - cd nss - ./build.sh -v -j 8 --opt --system-sqlite --enable-libpkix --disable-tests - cd - - - # Install all the needed stuff to the package directory - mkdir -p $pkg/{bin,lib,include/{nss,nspr}} - cd dist/Release - cp -pL bin/{certutil,cmsutil,crlutil,modutil,pk12util,shlibsign,signtool,signver,ssltap} $pkg/bin/ - cp -pL lib/*.{so,a} $pkg/lib/ - chmod 755 $pkg/lib/*.so* - cp -rL include/* $pkg/include/ - cp -rpL ../public/nss/*.h $pkg/include/nss/ - - cd - - - cd nss/cmd/smimetools - install -m 755 smime $pkg/bin/smime - sed -i -e 's#/usr/local/bin#/bin#g' $pkg/bin/smime - cd - - - # Install nspr-config - cat nspr/Release/config/nspr-config | sed -e "s,^prefix=.*$,prefix=,g" > $pkg/bin/nspr-config - chmod 755 $pkg/bin/nspr-config - - # Install nss-config - sed -e "s,@prefix@,,g" \ - -e "s,@MOD_MAJOR_VERSION@,$(printf $version | cut -d. -f1),g" \ - -e "s,@MOD_MAJOR_VERSION@,$(printf $version | cut -d. -f2),g" \ - -e "s,@MOD_MAJOR_VERSION@,$(printf $version | cut -d. -f3),g" \ - $srcdir/nss-config.in > $pkg/bin/nss-config - chmod 755 $pkg/bin/nss-config - - # Provide pkg-config files - mkdir -p $pkg/lib/pkgconfig - cat < $pkg/lib/pkgconfig/mozilla-nss.pc -prefix= -exec_prefix=\${prefix} -libdir=/lib -includedir=\${prefix}/include/nss - -Name: NSS -Description: Network Security Services -Version: $version -Requires: nspr >= $nsprversion sqlite3 -Libs: -L\${libdir} -lnss3 -lsmime3 -lssl3 -lsoftokn3 -lnssutil3 -Cflags: -I\${includedir} -EOT - - cat < $pkg/lib/pkgconfig/mozilla-nspr.pc -prefix= -exec_prefix=\${prefix} -libdir=/lib -includedir=\${prefix}/include/nspr - -Name: NSPR -Description: The Netscape Portable Runtime -Version: $nsprversion -Libs: -L\${libdir} -lplds4 -lplc4 -lnspr4 -Cflags: -I\${includedir} -EOT - - # Create pkgconfig symlinks - ( - cd $pkg/lib/pkgconfig - ln -s mozilla-nspr.pc nspr.pc - ln -s mozilla-nss.pc nss.pc - ) - - cp -a $srcdir/{MPL-1.1.txt,gpl-2.0.txt,lgpl-2.1.txt} $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -3f7b322e1b67cc94b2c807b38eb2ce46a0e1a61db755b553a5ba88965226e5db4c79fde5a4396d2740a9e58f1199c40e33cccae42d99b750629a54e190d67e45 nspr-4.35.tar.lz -820b7a4f1853698a8df1bb78a60f956fa5d698cced74527abd7fb1c9b57352f03191668c08403b2cde4597aa20b07277cd63ebf9125d652109f61954520bbdf0 nss-3.87.tar.lz -" diff --git a/base/mpfr/mpfr.SMBuild b/base/mpfr/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/mpfr/mpfr.SMBuild rename to base/mpfr/smbuild diff --git a/base/mpg123/mpg123.SMBuild b/base/mpg123/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/mpg123/mpg123.SMBuild rename to base/mpg123/smbuild index eec9d50..7aefab9 --- a/base/mpg123/mpg123.SMBuild +++ b/base/mpg123/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --disable-static make diff --git a/base/mtools/mtools.SMBuild b/base/mtools/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/mtools/mtools.SMBuild rename to base/mtools/smbuild index 9cf77e4..ac39951 --- a/base/mtools/mtools.SMBuild +++ b/base/mtools/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --without-x make PREFIX= DESTDIR=$pkg -j1 all install diff --git a/base/musl-fts/smbuild b/base/musl-fts/smbuild new file mode 100644 index 0000000..cbdca0a --- /dev/null +++ b/base/musl-fts/smbuild @@ -0,0 +1,37 @@ +# Maintainer: PktSurf +# Generated by mksm SMLinux build file generator version 0.101 +app=musl-fts +version=1.2.7 +build=1sml +homepage="https://github.com/void-linux/musl-fts" +download="https://github.com/void-linux/musl-fts/archive/refs/tags/v$version.tar.gz" +desc="FTS functions for musl C library" +requires="musl" + +prepbuilddir() { + mkandenterbuilddir + rm -rf $app-$version + + tar xf $srcdir/$app-$version.tar.?z* + cd $app-$version + fixbuilddirpermissions + + autoreconf -vif +} + +build() { + ./configure \ + --prefix=/usr + + make + make install DESTDIR=$pkg + + cp COPYING $pkgdocs/ + + mkfinalpkg +} + + +sha512sums=" +949f73b9406b06bd8712c721b4ec89afcb37d4eaef5666cccf3712242d3a57fc0acf3ca994934e0f57c1e92f40521a9370132a21eb6d1957415a83c76bf20feb musl-fts-1.2.7.tar.gz +" diff --git a/base/musl-obstack/smbuild b/base/musl-obstack/smbuild new file mode 100644 index 0000000..002dc69 --- /dev/null +++ b/base/musl-obstack/smbuild @@ -0,0 +1,37 @@ +# Maintainer: PktSurf +# Generated by mksm SMLinux build file generator version 0.101 +app=musl-obstack +version=1.2.3 +build=1sml +homepage="https://github.com/void-linux/musl-fts" +download="https://github.com/void-linux/musl-obstack/archive/refs/tags/v$version.tar.gz" +desc="Obstack functions for musl C library" +requires="musl" + +prepbuilddir() { + mkandenterbuilddir + rm -rf $app-$version + + tar xf $srcdir/$app-$version.tar.?z* + cd $app-$version + fixbuilddirpermissions + + ./bootstrap.sh +} + +build() { + ./configure \ + --prefix=/usr + + make + make install DESTDIR=$pkg + + cp COPYING $pkgdocs/ + + mkfinalpkg +} + + +sha512sums=" +b2bbed19c4ab2714ca794bdcb1a84fad1af964e884d4f3bbe91c9937ca089d92b8472cb05ebe998a9f5c85cb922b9b458db91eff29077bd099942e1ce18e16cc musl-obstack-1.2.3.tar.gz +" diff --git a/base/musl/musl.SMBuild b/base/musl/smbuild old mode 100755 new mode 100644 similarity index 91% rename from base/musl/musl.SMBuild rename to base/musl/smbuild index 29d5c31..d7e534a --- a/base/musl/musl.SMBuild +++ b/base/musl/smbuild @@ -19,17 +19,16 @@ prepbuilddir() { build() { ./configure \ - --prefix=/usr \ - --libdir=/lib + --prefix=/usr make make install DESTDIR=$pkg # Some additional stuff from alpine - mkdir -p $pkg/bin - gcc -o $pkg/bin/getconf $srcdir/getconf.c - gcc -o $pkg/bin/getent $srcdir/getent.c - gcc -o $pkg/bin/iconv $srcdir/iconv.c + mkdir -p $pkg/usr/bin + gcc -o $pkg/usr/bin/getconf $srcdir/getconf.c + gcc -o $pkg/usr/bin/getent $srcdir/getent.c + gcc -o $pkg/usr/bin/iconv $srcdir/iconv.c #( #mkdir -p $pkg/lib diff --git a/base/mypaint-brushes/mypaint-brushes.SMBuild b/base/mypaint-brushes/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/mypaint-brushes/mypaint-brushes.SMBuild rename to base/mypaint-brushes/smbuild diff --git a/base/nano/nano.SMBuild b/base/nano/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/nano/nano.SMBuild rename to base/nano/smbuild index 5483392..b1b7a31 --- a/base/nano/nano.SMBuild +++ b/base/nano/smbuild @@ -18,8 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix=/usr \ - --bindir=/bin + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/nasm/nasm.SMBuild b/base/nasm/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/nasm/nasm.SMBuild rename to base/nasm/smbuild index 1e323ca..bdf0011 --- a/base/nasm/nasm.SMBuild +++ b/base/nasm/smbuild @@ -18,8 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix=/usr \ - --bindir=/bin + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/ncdu/ncdu.SMBuild b/base/ncdu/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/ncdu/ncdu.SMBuild rename to base/ncdu/smbuild index 9a5ea60..b9b4d9f --- a/base/ncdu/ncdu.SMBuild +++ b/base/ncdu/smbuild @@ -18,8 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix=/usr \ - --bindir=/bin + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/neon/neon.SMBuild b/base/neon/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/neon/neon.SMBuild rename to base/neon/smbuild index 4e3cf68..d079993 --- a/base/neon/neon.SMBuild +++ b/base/neon/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --enable-static=no \ --enable-shared=yes \ --with-ssl=openssl \ diff --git a/base/netbsd-curses/netbsd-curses.SMBuild b/base/netbsd-curses/smbuild old mode 100755 new mode 100644 similarity index 98% rename from base/netbsd-curses/netbsd-curses.SMBuild rename to base/netbsd-curses/smbuild index f0cc6bf..9f28c1d --- a/base/netbsd-curses/netbsd-curses.SMBuild +++ b/base/netbsd-curses/smbuild @@ -25,7 +25,7 @@ AR=ar RANLIB=ranlib CFLAGS=$CFLAGS PREFIX=/usr -BINDIR=/bin +BINDIR=/usr/bin DESTDIR=$pkg EOF diff --git a/base/nettle/nettle.SMBuild b/base/nettle/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/nettle/nettle.SMBuild rename to base/nettle/smbuild index 5f5159b..1da8925 --- a/base/nettle/nettle.SMBuild +++ b/base/nettle/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --disable-static make diff --git a/base/nghttp2/nghttp2.SMBuild b/base/nghttp2/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/nghttp2/nghttp2.SMBuild rename to base/nghttp2/smbuild diff --git a/base/ninja/ninja.SMBuild b/base/ninja/smbuild old mode 100755 new mode 100644 similarity index 95% rename from base/ninja/ninja.SMBuild rename to base/ninja/smbuild index a2be0c9..ab66a1c --- a/base/ninja/ninja.SMBuild +++ b/base/ninja/smbuild @@ -21,7 +21,7 @@ prepbuilddir() { build() { python ./configure.py --bootstrap - install -Dm 755 ninja $pkg/bin/ninja + install -Dm 755 ninja $pkg/usr/bin/ninja install -Dm 644 misc/bash-completion $pkg/usr/share/bash-completion/completions/ninja cp COPYING $pkgdocs/ diff --git a/base/nodejs/nodejs.SMBuild b/base/nodejs/smbuild old mode 100755 new mode 100644 similarity index 98% rename from base/nodejs/nodejs.SMBuild rename to base/nodejs/smbuild index 4fadfe8..90d9465 --- a/base/nodejs/nodejs.SMBuild +++ b/base/nodejs/smbuild @@ -5,7 +5,6 @@ build=1sml homepage="https://nodejs.org/en/" desc="Asynchronous event-driven Javascript engine designed to build scalable network applications" requires="openssl gyp" -ignoreusrbin=1 prepbuilddir() { mkandenterbuilddir diff --git a/base/npth/npth.SMBuild b/base/npth/smbuild old mode 100755 new mode 100644 similarity index 95% rename from base/npth/npth.SMBuild rename to base/npth/smbuild index 39c76d3..e1ffc60 --- a/base/npth/npth.SMBuild +++ b/base/npth/smbuild @@ -18,8 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix=/usr \ - --bindir=/bin + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/ntfs-3g/ntfs-3g.SMBuild b/base/ntfs-3g/ntfs-3g.SMBuild deleted file mode 100755 index 3fa9e47..0000000 --- a/base/ntfs-3g/ntfs-3g.SMBuild +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: PktSurf -app=ntfs-3g -version=2021.8.22 -build=2sml -homepage="http://www.tuxera.com/community/open-source-ntfs-3g/" -download="https://tuxera.com/opensource/ntfs-3g_ntfsprogs-$version.tgz" -desc="NTFS read-write filesystem driver" -requires="netbsd-curses util-linux fuse" -noautoconfsite=1 - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app"_ntfsprogs"-$version - - tar xf $srcdir/$app"_ntfsprogs"-$version.tgz - cd $app"_ntfsprogs"-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="/" \ - --docdir="/share/doc/$app-$version" \ - --disable-static \ - --with-fuse=internal - - sed -i 's@/sbin@/bin@g' src/Makefile ntfsprogs/Makefile - - make - make install DESTDIR=$pkg - - cp COPYING* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -e0544df78a6c352999e1206d7b5d71c56e39396b7a0936a261d728c2ac9d61c6b95ef297f8529ac2a5146f31c1c9e43066d3e281064d4f5d781a04eba51f536d ntfs-3g_ntfsprogs-2021.8.22.tgz -" diff --git a/base/oniguruma/oniguruma.SMBuild b/base/oniguruma/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/oniguruma/oniguruma.SMBuild rename to base/oniguruma/smbuild index d214611..fc0605f --- a/base/oniguruma/oniguruma.SMBuild +++ b/base/oniguruma/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --enable-posix-api \ --disable-static diff --git a/base/openssl/openssl.SMBuild b/base/openssl/smbuild old mode 100755 new mode 100644 similarity index 92% rename from base/openssl/openssl.SMBuild rename to base/openssl/smbuild index 9a4cbf1..f7723d1 --- a/base/openssl/openssl.SMBuild +++ b/base/openssl/smbuild @@ -29,10 +29,6 @@ build() { cp LICENSE $pkgdocs/ - mkdir -p $pkg/bin - mv $pkg/usr/bin/* $pkg/bin/ - rmdir $pkg/usr/bin - mkfinalpkg } diff --git a/base/opus/opus.SMBuild b/base/opus/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/opus/opus.SMBuild rename to base/opus/smbuild diff --git a/base/opusfile/opusfile.SMBuild b/base/opusfile/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/opusfile/opusfile.SMBuild rename to base/opusfile/smbuild diff --git a/base/p11-kit/p11-kit.SMBuild b/base/p11-kit/smbuild similarity index 100% rename from base/p11-kit/p11-kit.SMBuild rename to base/p11-kit/smbuild diff --git a/base/p7zip/p7zip.SMBuild b/base/p7zip/p7zip.SMBuild deleted file mode 100755 index 55ad29e..0000000 --- a/base/p7zip/p7zip.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=p7zip -version=16.02 -build=1sml -homepage="https://sourceforge.net/projects/p7zip/" -download="" -desc="file archiver and a port of the 7z windows archive utility" -requires="gcc-libs" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - sed -i -e 's/strip /#strip /' \ - -e 's/chmod 555/chmod 755/' \ - -e 's/chmod 444/chmod 644/' install.sh && make all3 OPTFLAGS="$CXXFLAGS" || true - - make install DEST_HOME="" DEST_MAN="/share/man" DEST_DIR="$pkg" - - cp DOC/License.txt $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -72beac97a0d298d5416a25db6863d7f5033408e979555d1dae61a847e0d9062a4b5eca7e31f47bfeb26eda95b567fea081a13e1a20098a6e57a6de0ab39715ee p7zip-16.02.tar.lz -" diff --git a/base/parted/parted.SMBuild b/base/parted/smbuild similarity index 100% rename from base/parted/parted.SMBuild rename to base/parted/smbuild diff --git a/base/patch/patch.SMBuild b/base/patch/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/patch/patch.SMBuild rename to base/patch/smbuild index 98a8505..210a1c9 --- a/base/patch/patch.SMBuild +++ b/base/patch/smbuild @@ -18,8 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix=/usr \ - --bindir=/bin + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/pax-utils/pax-utils.SMBuild b/base/pax-utils/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/pax-utils/pax-utils.SMBuild rename to base/pax-utils/smbuild index bf847b3..ebe7bc8 --- a/base/pax-utils/pax-utils.SMBuild +++ b/base/pax-utils/smbuild @@ -20,7 +20,6 @@ build() { mkdir -p smbuild && cd smbuild meson .. \ --prefix=/usr \ - --bindir=/bin \ -Dbuild_manpages=enabled ninja diff --git a/base/pciutils/pciutils.SMBuild b/base/pciutils/smbuild old mode 100755 new mode 100644 similarity index 96% rename from base/pciutils/pciutils.SMBuild rename to base/pciutils/smbuild index 28ba12c..e3d6a17 --- a/base/pciutils/pciutils.SMBuild +++ b/base/pciutils/smbuild @@ -24,7 +24,7 @@ build() { LDFLAGS="-llzma" \ PREFIX=/usr \ SHARED=yes \ - SBINDIR=/bin \ + SBINDIR=/usr/bin \ DESTDIR="$pkg" \ STRIP="" all install @@ -32,7 +32,7 @@ build() { LDFLAGS="-llzma" \ PREFIX=/usr \ SHARED=yes \ - SBINDIR=/bin \ + SBINDIR=/usr/bin \ DESTDIR="$pkg" \ STRIP="" install-lib diff --git a/base/pcre/pcre.SMBuild b/base/pcre/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/pcre/pcre.SMBuild rename to base/pcre/smbuild index c1cd02a..d4ba8f8 --- a/base/pcre/pcre.SMBuild +++ b/base/pcre/smbuild @@ -21,7 +21,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --enable-pcre16 \ --enable-pcre32 \ --enable-pcregrep-libbz2 \ diff --git a/base/pcre2/pcre2.SMBuild b/base/pcre2/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/pcre2/pcre2.SMBuild rename to base/pcre2/smbuild index b8d840e..e2d362c --- a/base/pcre2/pcre2.SMBuild +++ b/base/pcre2/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --enable-pcre2-16 \ --enable-pcre2-32 \ --enable-jit \ diff --git a/base/perl-modules/perl-modules.SMBuild b/base/perl-modules/smbuild old mode 100755 new mode 100644 similarity index 98% rename from base/perl-modules/perl-modules.SMBuild rename to base/perl-modules/smbuild index 55b7225..9334362 --- a/base/perl-modules/perl-modules.SMBuild +++ b/base/perl-modules/smbuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=perl-modules version=5.24.3 -build=3sml +build=1sml homepage="https://www.perl.org/" download="https://www.perl.org/" desc="Collection of support addons for default perl installation" @@ -25,6 +25,7 @@ prepbuilddir() { build() { prepperlpackage() { + echo "Building $PWD" fixbuilddirpermissions perl Makefile.PL INSTALLDIRS=vendor make diff --git a/base/perl/perl.SMBuild b/base/perl/smbuild old mode 100755 new mode 100644 similarity index 53% rename from base/perl/perl.SMBuild rename to base/perl/smbuild index af42146..0f79eaa --- a/base/perl/perl.SMBuild +++ b/base/perl/smbuild @@ -1,6 +1,6 @@ # Maintainer: PktSurf app=perl -version=5.24.3 +version=5.38.0 build=1sml homepage="https://www.perl.org/" download="https://www.cpan.org/src/5.0/perl-$version.tar.xz" @@ -17,13 +17,6 @@ prepbuilddir() { } build() { - # /usr/local/include directory, if it contains any headers, - # might interfere with the compile because our GCC toolchain looks into that directory, in which case we abort. - if [ -d /usr/local/include ] ; then - echo "/usr/local/include directory may cause this perl compilation to fail. Kindly remove it. Aborting!" - exit 1 - fi - sed '1i#define PERL_BUILD_DATE "01.01.18 00:00:00"' -i perl.c sed -e 's;myuname=`$u;myuname="linux host" #`$u;' \ @@ -36,17 +29,15 @@ build() { sed -i 's,-fstack-protector,-fnostack-protector,g' ./Configure ./Configure -des \ - -Accflags='$CFLAGS -D_BSD_SOURCE' \ - -Dprefix=/ \ - -Dvendorprefix=/ \ - -Dsitelib="/lib/perl5/site_perl" \ - -Dsitearch="/lib/perl5/site_perl" \ - -Darchlib="/lib/perl5/core_perl" \ - -Dprivlib="/lib/perl5/core_perl" \ - -Dvendorlib="/lib/perl5/vendor_perl" \ - -Dvendorarch="/lib/perl5/vendor_perl" \ - -Dscriptdir='/bin' \ - -Dbin='/bin' \ + -Accflags='$CFLAGS' \ + -Dprefix=/usr \ + -Dvendorprefix=/usr \ + -Dsitelib="/usr/lib/perl5/site_perl" \ + -Dsitearch="/usr/lib/perl5/site_perl" \ + -Darchlib="/usr/lib/perl5/core_perl" \ + -Dprivlib="/usr/lib/perl5/core_perl" \ + -Dvendorlib="/usr/lib/perl5/vendor_perl" \ + -Dvendorarch="/usr/lib/perl5/vendor_perl" \ -Duseshrplib \ -Dusethreads \ -Ubincompat5005 \ @@ -56,7 +47,7 @@ build() { make make install DESTDIR=$pkg - rm -f $pkg/*.0 + find "$pkg" -name "*.0" -exec rm -v {} \; cp Artistic $pkgdocs/LICENSE @@ -64,5 +55,5 @@ build() { } sha512sums=" -330bbcd4bc8fc25dd84f9170f8b56450fa3ab4cdd6f39ab85fbfc4b9b8b47c130f312839189f45e6e2d7ca557524a3ee2cbd06f4aeb3ac96b4dd4f70b466cec6 perl-5.24.3.tar.lz +71beff7f6daa22a967972f5805daf2d4ff837a17e5ab808780f815d5914a67acf4f2e92acac0f2d8b24bdde4ceec0c2f7cb3029b5eadeeb30191f757e1bf0f9d perl-5.38.0.tar.xz " diff --git a/base/physfs/physfs.SMBuild b/base/physfs/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/physfs/physfs.SMBuild rename to base/physfs/smbuild diff --git a/base/pigz/pigz.SMBuild b/base/pigz/smbuild old mode 100755 new mode 100644 similarity index 90% rename from base/pigz/pigz.SMBuild rename to base/pigz/smbuild index d529ac8..09e880c --- a/base/pigz/pigz.SMBuild +++ b/base/pigz/smbuild @@ -19,8 +19,8 @@ prepbuilddir() { build() { make CFLAGS="$CFLAGS" - install -Dm 755 pigz $pkg/bin/pigz - install -Dm 755 unpigz $pkg/bin/unpigz + install -Dm 755 pigz $pkg/usr/bin/pigz + install -Dm 755 unpigz $pkg/usr/bin/unpigz install -Dm 644 pigz.1 $pkg/usr/share/man/man1/pigz.1 cp README $pkgdocs/ diff --git a/base/pkgconf/pkgconf.SMBuild b/base/pkgconf/smbuild old mode 100755 new mode 100644 similarity index 92% rename from base/pkgconf/pkgconf.SMBuild rename to base/pkgconf/smbuild index da6403c..23eb99f --- a/base/pkgconf/pkgconf.SMBuild +++ b/base/pkgconf/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --docdir="/usr/share/doc/$app-$version" \ --disable-static \ --with-pkg-config-dir="/lib/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig" @@ -29,7 +28,7 @@ build() { cp COPYING $pkgdocs/ - ( cd $pkg/bin ; ln -sf pkgconf pkg-config ) + ( cd $pkg/usr/bin ; ln -sf pkgconf pkg-config ) mkfinalpkg } diff --git a/base/pkgtools/pkgtools.SMBuild b/base/pkgtools/pkgtools.SMBuild deleted file mode 100755 index b7d7a7c..0000000 --- a/base/pkgtools/pkgtools.SMBuild +++ /dev/null @@ -1,29 +0,0 @@ -# Maintainer: PktSurf -app=pkgtools -version=14.2 -build=1sml -homepage="https://slackware.uk/slackware/slackware-14.2/source/a/pkgtools/" -download="https://slackware.uk/slackware/slackware-14.2/source/a/pkgtools/" -desc="The Slackware package maintenance system, modified for SMLinux" -requires="tar grep gawk sed bash util-linux coreutils" - -prepbuilddir() { - ARCH=noarch - mkandenterbuilddir - rm -rf $app-$version -} - -build() { - # Install Slackware script manpages: - mkdir -p $pkg/bin $pkg/usr/share/man/man8 - cp $srcdir/manpages/* $pkg/usr/share/man/man8/ - cp $srcdir/scripts/* $pkg/bin/ - - chown root:root $pkg/bin/* - chmod 755 $pkg/bin/* - - mkfinalpkg -} - -sha512sums=" -" diff --git a/base/plzip/plzip.SMBuild b/base/plzip/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/plzip/plzip.SMBuild rename to base/plzip/smbuild index dffa974..dcb2abc --- a/base/plzip/plzip.SMBuild +++ b/base/plzip/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ CXXFLAGS="$CXXFLAGS" make diff --git a/base/pm-utils/pm-utils.SMBuild b/base/pm-utils/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/pm-utils/pm-utils.SMBuild rename to base/pm-utils/smbuild index cb953a7..b963d61 --- a/base/pm-utils/pm-utils.SMBuild +++ b/base/pm-utils/smbuild @@ -19,8 +19,7 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ - --sbindir=/bin + --sbindir=/usr/bin make make install DESTDIR=$pkg diff --git a/base/popt/popt.SMBuild b/base/popt/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/popt/popt.SMBuild rename to base/popt/smbuild diff --git a/base/portaudio/portaudio.SMBuild b/base/portaudio/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/portaudio/portaudio.SMBuild rename to base/portaudio/smbuild diff --git a/base/procps-ng/procps-ng.SMBuild b/base/procps-ng/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/procps-ng/procps-ng.SMBuild rename to base/procps-ng/smbuild index 879786c..6b734ab --- a/base/procps-ng/procps-ng.SMBuild +++ b/base/procps-ng/smbuild @@ -28,8 +28,7 @@ build() { CPPFLAGS="$CFLAGS -DGLOB_TILDE=0 -DAF_INET6=10 -DAF_INET=2" \ ./configure \ --prefix=/usr \ - --bindir=/bin \ - --sbindir=/bin \ + --sbindir=/usr/bin \ --disable-nls make V=1 LDFLAGS="-all-static" @@ -41,8 +40,7 @@ build() { LDFLAGS="-static" \ ./configure \ - --prefix=/usr \ - --bindir=/bin + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/protobuf/protobuf.SMBuild b/base/protobuf/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/protobuf/protobuf.SMBuild rename to base/protobuf/smbuild diff --git a/base/pv/pv.SMBuild b/base/pv/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/pv/pv.SMBuild rename to base/pv/smbuild index c789e86..406eea5 --- a/base/pv/pv.SMBuild +++ b/base/pv/smbuild @@ -18,8 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix=/usr \ - --bindir=/bin + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/pwgen/pwgen.SMBuild b/base/pwgen/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/pwgen/pwgen.SMBuild rename to base/pwgen/smbuild index 999b7e7..842b9c2 --- a/base/pwgen/pwgen.SMBuild +++ b/base/pwgen/smbuild @@ -17,7 +17,7 @@ prepbuilddir() { build() { ./configure \ - --prefix=/ \ + --prefix=/usr \ --mandir=/usr/share/man make diff --git a/base/pyelftools/pyelftools.SMBuild b/base/pyelftools/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/pyelftools/pyelftools.SMBuild rename to base/pyelftools/smbuild diff --git a/base/python-cheetah/python-cheetah.SMBuild b/base/python-cheetah/smbuild similarity index 100% rename from base/python-cheetah/python-cheetah.SMBuild rename to base/python-cheetah/smbuild diff --git a/base/python-click/python-click.SMBuild b/base/python-click/smbuild similarity index 100% rename from base/python-click/python-click.SMBuild rename to base/python-click/smbuild diff --git a/base/python-future/python-future.SMBuild b/base/python-future/smbuild similarity index 100% rename from base/python-future/python-future.SMBuild rename to base/python-future/smbuild diff --git a/base/python-glad/python-glad.SMBuild b/base/python-glad/smbuild similarity index 100% rename from base/python-glad/python-glad.SMBuild rename to base/python-glad/smbuild diff --git a/base/python-importlib-metadata/python-importlib-metadata.SMBuild b/base/python-importlib-metadata/smbuild similarity index 100% rename from base/python-importlib-metadata/python-importlib-metadata.SMBuild rename to base/python-importlib-metadata/smbuild diff --git a/base/python-jinja2/python-jinja2.SMBuild b/base/python-jinja2/smbuild similarity index 100% rename from base/python-jinja2/python-jinja2.SMBuild rename to base/python-jinja2/smbuild diff --git a/base/python-joblib/python-joblib.SMBuild b/base/python-joblib/smbuild similarity index 100% rename from base/python-joblib/python-joblib.SMBuild rename to base/python-joblib/smbuild diff --git a/base/python-livereload/python-livereload.SMBuild b/base/python-livereload/smbuild similarity index 100% rename from base/python-livereload/python-livereload.SMBuild rename to base/python-livereload/smbuild diff --git a/base/python-lunr/python-lunr.SMBuild b/base/python-lunr/smbuild similarity index 100% rename from base/python-lunr/python-lunr.SMBuild rename to base/python-lunr/smbuild diff --git a/base/python-lxml/python-lxml.SMBuild b/base/python-lxml/smbuild similarity index 100% rename from base/python-lxml/python-lxml.SMBuild rename to base/python-lxml/smbuild diff --git a/base/python-m2crypto/python-m2crypto.SMBuild b/base/python-m2crypto/smbuild similarity index 100% rename from base/python-m2crypto/python-m2crypto.SMBuild rename to base/python-m2crypto/smbuild diff --git a/base/python-mako/python-mako.SMBuild b/base/python-mako/smbuild similarity index 100% rename from base/python-mako/python-mako.SMBuild rename to base/python-mako/smbuild diff --git a/base/python-markdown/python-markdown.SMBuild b/base/python-markdown/smbuild similarity index 100% rename from base/python-markdown/python-markdown.SMBuild rename to base/python-markdown/smbuild diff --git a/base/python-markupsafe/python-markupsafe.SMBuild b/base/python-markupsafe/smbuild similarity index 100% rename from base/python-markupsafe/python-markupsafe.SMBuild rename to base/python-markupsafe/smbuild diff --git a/base/python-mkdocs/python-mkdocs.SMBuild b/base/python-mkdocs/smbuild similarity index 100% rename from base/python-mkdocs/python-mkdocs.SMBuild rename to base/python-mkdocs/smbuild diff --git a/base/python-nltk/python-nltk.SMBuild b/base/python-nltk/smbuild similarity index 100% rename from base/python-nltk/python-nltk.SMBuild rename to base/python-nltk/smbuild diff --git a/base/python-pip/python-pip.SMBuild b/base/python-pip/smbuild similarity index 100% rename from base/python-pip/python-pip.SMBuild rename to base/python-pip/smbuild diff --git a/base/python-pyyaml/python-pyyaml.SMBuild b/base/python-pyyaml/smbuild similarity index 100% rename from base/python-pyyaml/python-pyyaml.SMBuild rename to base/python-pyyaml/smbuild diff --git a/base/python-regex/python-regex.SMBuild b/base/python-regex/smbuild similarity index 100% rename from base/python-regex/python-regex.SMBuild rename to base/python-regex/smbuild diff --git a/base/python-setuptools/python-setuptools.SMBuild b/base/python-setuptools/smbuild similarity index 100% rename from base/python-setuptools/python-setuptools.SMBuild rename to base/python-setuptools/smbuild diff --git a/base/python-six/python-six.SMBuild b/base/python-six/smbuild similarity index 100% rename from base/python-six/python-six.SMBuild rename to base/python-six/smbuild diff --git a/base/python-tornado/python-tornado.SMBuild b/base/python-tornado/smbuild similarity index 100% rename from base/python-tornado/python-tornado.SMBuild rename to base/python-tornado/smbuild diff --git a/base/python-tqdm/python-tqdm.SMBuild b/base/python-tqdm/smbuild similarity index 100% rename from base/python-tqdm/python-tqdm.SMBuild rename to base/python-tqdm/smbuild diff --git a/base/python-typing-extensions/python-typing-extensions.SMBuild b/base/python-typing-extensions/smbuild similarity index 100% rename from base/python-typing-extensions/python-typing-extensions.SMBuild rename to base/python-typing-extensions/smbuild diff --git a/base/python-typing/python-typing.SMBuild b/base/python-typing/smbuild similarity index 100% rename from base/python-typing/python-typing.SMBuild rename to base/python-typing/smbuild diff --git a/base/python-wheel/python-wheel.SMBuild b/base/python-wheel/smbuild similarity index 100% rename from base/python-wheel/python-wheel.SMBuild rename to base/python-wheel/smbuild diff --git a/base/python-zipp/python-zipp.SMBuild b/base/python-zipp/smbuild similarity index 100% rename from base/python-zipp/python-zipp.SMBuild rename to base/python-zipp/smbuild diff --git a/base/python3/python3.SMBuild b/base/python3/smbuild similarity index 100% rename from base/python3/python3.SMBuild rename to base/python3/smbuild diff --git a/base/qpdf/qpdf.SMBuild b/base/qpdf/qpdf.SMBuild deleted file mode 100755 index df33eb1..0000000 --- a/base/qpdf/qpdf.SMBuild +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: PktSurf -app=qpdf -version=11.4.0 -build=1sml -homepage="https://github.com/qpdf/qpdf" -download="https://github.com/qpdf/qpdf/releases/download/v$version/qpdf-$version.tar.gz" -desc="Command-line tools and library for transforming PDF files" -requires="gcc-libs pcre" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - unset CFLAGS CXXFLAGS - mkdir -p smbuild && cd smbuild - cmake .. \ - -DCMAKE_INSTALL_PREFIX="" \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -DCMAKE_BUILD_TYPE=MinSizeRel \ - -DBUILD_STATIC_LIBS=OFF \ - -DINSTALL_EXAMPLES=OFF - - make - make install DESTDIR=$pkg - - cp ../LICENSE.txt $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -6f31a37a9a52752c89d319e0d29d8e6c1e4885ca494de47a65f9374cdb5672497ab93f754481300c8e6c68fc2874860997b778dc05386b6f3e6a5a70a3f9f754 qpdf-11.4.0.tar.gz -" diff --git a/base/qrencode/qrencode.SMBuild b/base/qrencode/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/qrencode/qrencode.SMBuild rename to base/qrencode/smbuild index 03b1c68..8333e3c --- a/base/qrencode/qrencode.SMBuild +++ b/base/qrencode/smbuild @@ -18,8 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix=/usr \ - --bindir=/bin + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/readline/readline.SMBuild b/base/readline/smbuild old mode 100755 new mode 100644 similarity index 99% rename from base/readline/readline.SMBuild rename to base/readline/smbuild index 744a7b5..7205fd2 --- a/base/readline/readline.SMBuild +++ b/base/readline/smbuild @@ -23,7 +23,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --with-curses \ --enable-multibyte \ --disable-static diff --git a/base/ruby/ruby.SMBuild b/base/ruby/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/ruby/ruby.SMBuild rename to base/ruby/smbuild index ad2010e..56ab9e3 --- a/base/ruby/ruby.SMBuild +++ b/base/ruby/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --enable-shared \ --enable-pthread \ --without-jemalloc \ diff --git a/base/rust/alpine-move-py-scripts-to-share.patch b/base/rust/alpine-move-py-scripts-to-share.patch new file mode 100644 index 0000000..a51d9b8 --- /dev/null +++ b/base/rust/alpine-move-py-scripts-to-share.patch @@ -0,0 +1,26 @@ +diff --git a/src/etc/rust-gdb b/src/etc/rust-gdb +index 9abed30..c5326ae 100755 +--- a/src/etc/rust-gdb ++++ b/src/etc/rust-gdb +@@ -12,7 +12,7 @@ fi + + # Find out where the pretty printer Python module is + RUSTC_SYSROOT="$("$RUSTC" --print=sysroot)" +-GDB_PYTHON_MODULE_DIRECTORY="$RUSTC_SYSROOT/lib/rustlib/etc" ++GDB_PYTHON_MODULE_DIRECTORY="$RUSTC_SYSROOT/share/rust/etc" + # Get the commit hash for path remapping + RUSTC_COMMIT_HASH="$("$RUSTC" -vV | sed -n 's/commit-hash: \([a-zA-Z0-9_]*\)/\1/p')" + +diff --git a/src/etc/rust-lldb b/src/etc/rust-lldb +index bce72f1..ecac488 100755 +--- a/src/etc/rust-lldb ++++ b/src/etc/rust-lldb +@@ -8,7 +8,7 @@ host=$(rustc -vV | sed -n -e 's/^host: //p') + + # Find out where to look for the pretty printer Python module + RUSTC_SYSROOT=$(rustc --print sysroot) +-RUST_LLDB="$RUSTC_SYSROOT/lib/rustlib/$host/bin/lldb" ++RUST_LLDB="$RUSTC_SYSROOT/share/rust/etc" + + lldb=lldb + if [ -f "$RUST_LLDB" ]; then diff --git a/base/rust/config.toml b/base/rust/config.toml index 0d7432e..d420b46 100644 --- a/base/rust/config.toml +++ b/base/rust/config.toml @@ -3,9 +3,9 @@ ccache = "/bin/ccache" link-shared = true [build] -build = "ARCH-unknown-linux-musl" -host = ["ARCH-unknown-linux-musl"] -target = ["ARCH-unknown-linux-musl"] +build = "x86_64-unknown-linux-musl" +host = ["x86_64-unknown-linux-musl"] +target = ["x86_64-unknown-linux-musl"] tools = ["analysis", "cargo", "src"] submodules = false extended = true @@ -16,16 +16,16 @@ locked-deps = true docs = false [install] -prefix = "/" -libdir = "/lib" -mandir = "/share/man" +prefix = "/usr" +bindir = "/usr/bin" +libdir = "/usr/lib" +mandir = "/usr/share/man" [rust] codegen-units = 0 channel = "stable" rpath = false codegen-tests = false -ignore-git = true debug-assertions = false backtrace = true incremental = false @@ -34,8 +34,8 @@ dist-src = false jemalloc = false llvm-libunwind = "no" -[target.ARCH-unknown-linux-musl] -llvm-config = "/bin/llvm-config" +[target.x86_64-unknown-linux-musl] +llvm-config = "/usr/bin/llvm-config" crt-static = false cc = "gcc" cxx = "c++" diff --git a/base/rust/do-not-install-libunwind-source.patch b/base/rust/do-not-install-libunwind-source.patch new file mode 100644 index 0000000..8b97d43 --- /dev/null +++ b/base/rust/do-not-install-libunwind-source.patch @@ -0,0 +1,19 @@ +From: Dominic Meiser +Date: Tue, 22 Dec 2020 23:31:28 +0100 +Subject: [PATCH] Do not install libunwind source + +This was added in rustc 1.48, but is incompatible with the Alpine Linux package since it removes all bundled +dependencies prior to building. + +diff -Naur rustc-1.48.0-src.orig/src/bootstrap/dist.rs rustc-1.48.0-src/src/bootstrap/dist.rs +--- a/src/bootstrap/src/core/build_steps/dist.rs ++++ b/src/bootstrap/src/core/build_steps/dist.rs +@@ -910,7 +910,7 @@ + copy_src_dirs( + builder, + &builder.src, +- &["library", "src/llvm-project/libunwind"], ++ &["library"], + &[ + // not needed and contains symlinks which rustup currently + // chokes on when unpacking. diff --git a/base/rust/gcc-eh-libunwind.patch b/base/rust/gcc-eh-libunwind.patch new file mode 100644 index 0000000..10d12dd --- /dev/null +++ b/base/rust/gcc-eh-libunwind.patch @@ -0,0 +1,37 @@ +From 88526c161aa3d0f0489639ee0c21c1c086ed13ea Mon Sep 17 00:00:00 2001 +From: Aleksei Nikiforov +Date: Thu, 28 Apr 2022 16:48:55 +0200 +Subject: [PATCH 1/2] When linking statically on musl-based system, also link + libc when gcc_eh is used instead of libunwind. + +Otherwise following errors are possible: + +$ rustc -C target-feature=+crt-static hello_world.rs +error: linking with `cc` failed: exit status: 1 + | + = note: "cc" "hello_world.hello_world.85b1eb1f-cgu.0.rcgu.o" "hello_world.hello_world.85b1eb1f-cgu.1.rcgu.o" "hello_world.hello_world.85b1eb1f-cgu.2.rcgu.o" "hello_world.hello_world.85b1eb1f-cgu.3.rcgu.o" "hello_world.hello_world.85b1eb1f-cgu.4.rcgu.o" "hello_world.hello_world.85b1eb1f-cgu.5.rcgu.o" "hello_world.hello_world.85b1eb1f-cgu.6.rcgu.o" "hello_world.hello_world.85b1eb1f-cgu.7.rcgu.o" "hello_world.p360wm7isvrz3vl.rcgu.o" "-Wl,--as-needed" "-L" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib" "-Wl,--start-group" "-Wl,-Bstatic" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libstd-290453869c457fa2.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libpanic_unwind-cbf6379a7da8bab0.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libminiz_oxide-a92dd9c70c39c672.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libadler-d4dbc2eb60b8d045.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libobject-e23cb707e37f1c09.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libmemchr-70d429b287cab148.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libaddr2line-ad67e2e2488bac33.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libgimli-af4695e3f837f020.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/librustc_demangle-af414388b3a5e049.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libstd_detect-0cbfc57a1d48d386.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libhashbrown-542ee322b311bdfb.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/librustc_std_workspace_alloc-f412568a9ae32e92.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libunwind-624d853e4eabb73e.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libcfg_if-3afcf6ee80435613.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/liblibc-db67086a5554dc7a.rlib" "-lc" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/liballoc-55707620a5208b22.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/librustc_std_workspace_core-dbebf5ac373a4d82.rlib" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libcore-8f983ad6f90a3ca2.rlib" "-Wl,--end-group" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib/libcompiler_builtins-8976cae3a94d0248.rlib" "-Wl,-Bdynamic" "-lssp_nonshared" "-lgcc_eh" "-Wl,--eh-frame-hdr" "-Wl,-znoexecstack" "-L" "/usr/lib/rustlib/s390x-alpine-linux-musl/lib" "-o" "hello_world" "-Wl,--gc-sections" "-static-pie" "-Wl,-zrelro,-znow" "-nodefaultlibs" + = note: /usr/lib/gcc/s390x-alpine-linux-musl/11.2.1/../../../../s390x-alpine-linux-musl/bin/ld: /usr/lib/gcc/s390x-alpine-linux-musl/11.2.1/libgcc_eh.a(unwind-dw2.o): in function `__gthread_once': + /home/buildozer/aports/main/gcc/src/build/s390x-alpine-linux-musl/libgcc/./gthr-default.h:700: undefined reference to `pthread_once' + collect2: error: ld returned 1 exit status + + = help: some `extern` functions couldn't be found; some native libraries may need to be installed or have their path specified + = note: use the `-l` flag to specify native libraries to link + = note: use the `cargo:rustc-link-lib` directive to specify the native libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#cargorustc-link-libkindname) + +error: aborting due to previous error +--- + +--- a/library/unwind/src/lib.rs ++++ b/library/unwind/src/lib.rs +@@ -59,7 +59,10 @@ + #[link(name = "unwind", cfg(not(target_feature = "crt-static")))] + extern "C" {} + } else { +- #[link(name = "unwind", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))] ++ // on musl gcc_eh needs pthread_once from libc ++ #[link(name = "gcc_eh", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))] ++ #[link(name = "c", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))] ++ extern "C" {} + #[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))] + extern "C" {} + } diff --git a/base/rust/musl-fix-linux_musl_base.patch b/base/rust/musl-fix-linux_musl_base.patch new file mode 100644 index 0000000..4ddb919 --- /dev/null +++ b/base/rust/musl-fix-linux_musl_base.patch @@ -0,0 +1,58 @@ +From: Jakub Jirutka +Date: Sat, 08 Aug 2016 15:06:00 +0200 +Subject: [PATCH] Fix linux_musl_base for native musl host + +See https://github.com/rust-lang/rust/pull/40113 + +--- a/compiler/rustc_target/src/spec/base/linux_musl.rs ++++ b/compiler/rustc_target/src/spec/base/linux_musl.rs +@@ -1,16 +1,12 @@ +-use crate::spec::crt_objects; +-use crate::spec::{base, LinkSelfContainedDefault, TargetOptions}; ++use crate::spec::{base, TargetOptions}; + + pub fn opts() -> TargetOptions { + let mut base = base::linux::opts(); + + base.env = "musl".into(); +- base.pre_link_objects_self_contained = crt_objects::pre_musl_self_contained(); +- base.post_link_objects_self_contained = crt_objects::post_musl_self_contained(); +- base.link_self_contained = LinkSelfContainedDefault::InferredForMusl; + + // These targets statically link libc by default +- base.crt_static_default = true; ++ base.crt_static_default = false; + + base + } +--- a/compiler/rustc_target/src/spec/crt_objects.rs ++++ b/compiler/rustc_target/src/spec/crt_objects.rs +@@ -58,28 +61,6 @@ + (LinkOutputKind::StaticPicExe, &[obj]), + (LinkOutputKind::DynamicDylib, &[obj]), + (LinkOutputKind::StaticDylib, &[obj]), +- ]) +-} +- +-pub(super) fn pre_musl_self_contained() -> CrtObjects { +- new(&[ +- (LinkOutputKind::DynamicNoPicExe, &["crt1.o", "crti.o", "crtbegin.o"]), +- (LinkOutputKind::DynamicPicExe, &["Scrt1.o", "crti.o", "crtbeginS.o"]), +- (LinkOutputKind::StaticNoPicExe, &["crt1.o", "crti.o", "crtbegin.o"]), +- (LinkOutputKind::StaticPicExe, &["rcrt1.o", "crti.o", "crtbeginS.o"]), +- (LinkOutputKind::DynamicDylib, &["crti.o", "crtbeginS.o"]), +- (LinkOutputKind::StaticDylib, &["crti.o", "crtbeginS.o"]), +- ]) +-} +- +-pub(super) fn post_musl_self_contained() -> CrtObjects { +- new(&[ +- (LinkOutputKind::DynamicNoPicExe, &["crtend.o", "crtn.o"]), +- (LinkOutputKind::DynamicPicExe, &["crtendS.o", "crtn.o"]), +- (LinkOutputKind::StaticNoPicExe, &["crtend.o", "crtn.o"]), +- (LinkOutputKind::StaticPicExe, &["crtendS.o", "crtn.o"]), +- (LinkOutputKind::DynamicDylib, &["crtendS.o", "crtn.o"]), +- (LinkOutputKind::StaticDylib, &["crtendS.o", "crtn.o"]), + ]) + } + diff --git a/base/rust/need-rpath.patch b/base/rust/need-rpath.patch new file mode 100644 index 0000000..b297bbe --- /dev/null +++ b/base/rust/need-rpath.patch @@ -0,0 +1,62 @@ +From: Shiz +Date: Thu, 20 Aug 2017 01:48:22 +0200 +Subject: [PATCH] Add need_rpath target option to force RPATH generation + +This adds a `need_rpath` option to the target options in order to implicitly +have the equivalent of `-C rpath` specified by default for final products +(executables and dynamic libraries), so that RPATHs are always added. + +We have to skip this step in the bootstrap phase as it does its own manual +RPATH additions, but unfortunately there's no clean way to detect this. +As such, we have to resort to checking the `RUSTC_BOOTSTRAP` variable. +Hacky hacky! + +--- a/compiler/rustc_target/src/spec/mod.rs ++++ b/compiler/rustc_target/src/spec/mod.rs +@@ -2028,6 +2028,8 @@ pub struct TargetOptions { + pub allows_weak_linkage: bool, + /// Whether the linker support rpaths or not. Defaults to false. + pub has_rpath: bool, ++ /// Whether to force rpath support on by default. Defaults to false. ++ pub need_rpath: bool, + /// Whether to disable linking to the default libraries, typically corresponds + /// to `-nodefaultlibs`. Defaults to true. + pub no_default_libraries: bool, +@@ -2372,6 +2374,7 @@ impl Default for TargetOptions { + default_dwarf_version: 4, + allows_weak_linkage: true, + has_rpath: false, ++ need_rpath: false, + no_default_libraries: true, + position_independent_executables: false, + static_position_independent_executables: false, +@@ -3122,6 +3125,7 @@ impl Target { + key!(default_dwarf_version, u32); + key!(allows_weak_linkage, bool); + key!(has_rpath, bool); ++ key!(need_rpath, bool); + key!(no_default_libraries, bool); + key!(position_independent_executables, bool); + key!(static_position_independent_executables, bool); +@@ -3379,6 +3383,7 @@ impl ToJson for Target { + target_option_val!(default_dwarf_version); + target_option_val!(allows_weak_linkage); + target_option_val!(has_rpath); ++ target_option_val!(need_rpath); + target_option_val!(no_default_libraries); + target_option_val!(position_independent_executables); + target_option_val!(static_position_independent_executables); +--- a/compiler/rustc_codegen_ssa/src/back/link.rs.orig ++++ b/compiler/rustc_codegen_ssa/src/back/link.rs +@@ -2072,7 +2072,10 @@ + // FIXME (#2397): At some point we want to rpath our guesses as to + // where extern libraries might live, based on the + // add_lib_search_paths +- if sess.opts.cg.rpath { ++ // XXX: hacky hacky ++ let bootstrap = env::var("RUSTC_BOOTSTRAP").is_ok(); ++ if !bootstrap && !sess.crt_static(None) && ++ (sess.opts.cg.rpath || sess.target.options.need_rpath) { + let libs = codegen_results + .crate_info + .used_crates diff --git a/base/rust/need-ssp_nonshared.patch b/base/rust/need-ssp_nonshared.patch new file mode 100644 index 0000000..184f8a3 --- /dev/null +++ b/base/rust/need-ssp_nonshared.patch @@ -0,0 +1,29 @@ +this is needed for libssp-less __stack_chk_fail_local (on x86), +the other Bdynamic patch seems to break the top hunk, +so we need the bottom hack +-- +diff --git a/library/std/src/sys/unix/mod.rs b/library/std/src/sys/unix/mod.rs +index 68c9520..63f8a48 100644 +--- a/library/std/src/sys/pal/unix/mod.rs ++++ b/library/std/src/sys/pal/unix/mod.rs +@@ -376,6 +376,9 @@ cfg_if::cfg_if! { + #[link(name = "dl", cfg(not(target_feature = "crt-static")))] + #[link(name = "log", cfg(not(target_feature = "crt-static")))] + extern "C" {} ++ } else if #[cfg(all(target_os = "linux", target_env = "musl"))] { ++ #[link(name = "ssp_nonshared", kind = "static")] ++ extern "C" {} + } else if #[cfg(target_os = "freebsd")] { + #[link(name = "execinfo")] + #[link(name = "pthread")] +--- a/compiler/rustc_llvm/build.rs ++++ b/compiler/rustc_llvm/build.rs +@@ -110,6 +110,8 @@ + return; + } + ++ println!("cargo:rustc-link-lib=ssp_nonshared"); ++ + restore_library_path(); + + let target = env::var("TARGET").expect("TARGET was not set"); diff --git a/base/rust/no-export-ld-library-path.patch b/base/rust/no-export-ld-library-path.patch new file mode 100644 index 0000000..86cc3fe --- /dev/null +++ b/base/rust/no-export-ld-library-path.patch @@ -0,0 +1,30 @@ +Patch-Source: https://github.com/chimera-linux/cports/blob/3dc313d1c83d20cc9ac221e6fe2992d80c64c071/main/rust/patches/0010-do-not-export-LD_LIBRARY_PATH.patch +From 6f363ca048383740bdbebd63013bcedbb10f814a Mon Sep 17 00:00:00 2001 +From: Daniel Kolesa +Date: Fri, 25 Feb 2022 00:39:21 +0100 +Subject: [PATCH 10/11] do not export LD_LIBRARY_PATH + +--- + src/bootstrap/bootstrap.py | 6 ------ + 1 file changed, 6 deletions(-) + +diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py +index 7c36bb264..b4f9b7066 100644 +--- a/src/bootstrap/bootstrap.py ++++ b/src/bootstrap/bootstrap.py +@@ -895,12 +895,6 @@ class RustBuild(object): + del env["CARGO_BUILD_TARGET"] + env["CARGO_TARGET_DIR"] = build_dir + env["RUSTC"] = self.rustc() +- env["LD_LIBRARY_PATH"] = os.path.join(self.bin_root(), "lib") + \ +- (os.pathsep + env["LD_LIBRARY_PATH"]) \ +- if "LD_LIBRARY_PATH" in env else "" +- env["DYLD_LIBRARY_PATH"] = os.path.join(self.bin_root(), "lib") + \ +- (os.pathsep + env["DYLD_LIBRARY_PATH"]) \ +- if "DYLD_LIBRARY_PATH" in env else "" + env["LIBRARY_PATH"] = os.path.join(self.bin_root(), "lib") + \ + (os.pathsep + env["LIBRARY_PATH"]) \ + if "LIBRARY_PATH" in env else "" +-- +2.35.1 + diff --git a/base/rust/revert-rustc_codegen_ssa-use-try_canonicalize-in-rpath.patch b/base/rust/revert-rustc_codegen_ssa-use-try_canonicalize-in-rpath.patch new file mode 100644 index 0000000..5d57940 --- /dev/null +++ b/base/rust/revert-rustc_codegen_ssa-use-try_canonicalize-in-rpath.patch @@ -0,0 +1,39 @@ +This reverts upstream 5aeb6a326f2fa941061b60c9286665847fe0401e that is +part of https://github.com/rust-lang/rust/pull/116487 + +Since we always enable `-Crpath` with need-rpath.patch things like running +`rustc hello_world.rs` would break, as we noticed with our check-rustc +test. + +Related issue: https://github.com/rust-lang/rust/issues/119571 + +--- a/compiler/rustc_codegen_ssa/src/back/rpath.rs ++++ b/compiler/rustc_codegen_ssa/src/back/rpath.rs +@@ -1,7 +1,8 @@ + use pathdiff::diff_paths; + use rustc_data_structures::fx::FxHashSet; +-use rustc_fs_util::try_canonicalize; ++use std::env; + use std::ffi::OsString; ++use std::fs; + use std::path::{Path, PathBuf}; + + pub struct RPathConfig<'a> { +@@ -81,11 +82,12 @@ fn get_rpath_relative_to_output(config: + // Mac doesn't appear to support $ORIGIN + let prefix = if config.is_like_osx { "@loader_path" } else { "$ORIGIN" }; + +- // Strip filenames +- let lib = lib.parent().unwrap(); +- let output = config.out_filename.parent().unwrap(); +- let lib = try_canonicalize(lib).unwrap(); +- let output = try_canonicalize(output).unwrap(); ++ let cwd = env::current_dir().unwrap(); ++ let mut lib = fs::canonicalize(&cwd.join(lib)).unwrap_or_else(|_| cwd.join(lib)); ++ lib.pop(); // strip filename ++ let mut output = cwd.join(&config.out_filename); ++ output.pop(); // strip filename ++ let output = fs::canonicalize(&output).unwrap_or(output); + let relative = path_relative_from(&lib, &output) + .unwrap_or_else(|| panic!("couldn't create relative path from {output:?} to {lib:?}")); + diff --git a/base/rust/rust.SMBuild b/base/rust/rust.SMBuild deleted file mode 100755 index 7a37c9f..0000000 --- a/base/rust/rust.SMBuild +++ /dev/null @@ -1,101 +0,0 @@ -# Maintainer: PktSurf -app=rust -version=1.69.0 -build=1sml -homepage="https://rust-lang.org" -download="https://static.rust-lang.org/dist/rustc-$version-src.tar.xz" -desc="A safe, concurrent, practical language" -requires="gcc-libs bash llvm clang gdb" -# We don't want .rlib files to be removed -preservestaticlibs=1 - -prepbuilddir() { - arch="$HOSTTYPE" - export arch - mkandenterbuilddir - rm -rf rustc-$version-src - - tar xf $srcdir/rustc-$version-src.tar.?z* - cd rustc-$version-src - fixbuilddirpermissions - - # If a rust toolchain does not already exist, extract and install one of the provided ready-to-use toolchains - if [ ! -x /bin/rustc ] ; then - # Create a temporary directory that will house a prebuilt architecture-specific rust toolchain provided by rust developers for bootstrapping - mkdir -p temp-toolchain - cd temp-toolchain - - # Extract the toolchain into it - tar xf $srcdir/$app-$version-$arch-unknown-linux-musl.tar.?z - cd $app-$version-$arch-unknown-linux-musl - - # Now install the toolchain - ./install.sh --prefix="/" || true - - # Go back to the temporary build directory - cd ../../ - fi - - applypatch $srcdir/0001-Fix-LLVM-build.patch - applypatch $srcdir/0002-Remove-nostdlib-and-musl_root-from-musl-targets.patch - applypatch $srcdir/0003-move-debugger-scripts-to-usr-share-rust.patch - applypatch $srcdir/0005-do-not-install-libunwind-source-removed.patch - applypatch $srcdir/0007-link-stage-2-tools-dynamically-to-libstd.patch - applypatch $srcdir/0009-do-not-export-LD_LIBRARY_PATH.patch - applypatch $srcdir/0010-Fix-dynamic-linkage-of-musl-libc-for-the-libc-crate.patch - applypatch $srcdir/0013-allow-specifying-native-sysroot-to-use-for-linkage.patch - - clear_vendor_checksums() { - sed -i 's/\("files":{\)[^}]*/\1/' vendor/$1/.cargo-checksum.json - } - - sed -i /LD_LIBRARY_PATH/d src/bootstrap/bootstrap.py - - clear_vendor_checksums libc - - # We use our system's LLVM. Discard rust's own bundled LLVM directory - rm -Rf src/llvm-project/ - - cp $srcdir/config.toml . - - if [[ $arch = aarch64 ]] ; then - sed -i 's@ARCH@aarch64@g' config.toml - elif [[ $arch = x86_64 ]] ; then - sed -i 's@ARCH@x86_64@g' config.toml - fi -} - -build() { - export RUST_BACKTRACE=1 - - # Go easy on the pi - unset MAKEFLAGS - python3 ./x.py dist -v -j4 - DESTDIR="$pkg" python3 ./x.py install - - cp LICENSE* COPYRIGHT $pkgdocs/ - - find $pkg/lib -name "*.so" -exec chmod 755 "{}" \+ - - if [[ -x /bin/rustc ]] && [[ -d temp-toolchain ]]; then - # Remove the temporary toolchain - cd temp-toolchain/$app-$version-$arch-unknown-linux-musl - ./install.sh --uninstall --prefix="/" - fi - - mkfinalpkg -} - -sha512sums=" -c5ee5bba97b48e1a5d313d88eed8df8f492b4a8b962b91516cb883af16d359150db6727f01dcc933d19e8bba0cb75a2015a09cb26d4d03afd54c13a52d454003 rust-1.69.0-aarch64-unknown-linux-musl.tar.xz -8879f9031a98169880433c18f71ec08ea1770e59e27279b0d96dcf8aafa67594b2c50f322a5d9b5eb766d6b4da00c969111142e9d4ddd000daf4b3b2ac0b848a rust-1.69.0-x86_64-unknown-linux-musl.tar.xz -724398fc208ec18adbd8ba81a445e23d1001b746990f36b869126be8a45f1cdfa75f5b9cbdd0abbab506f91a56d3736ab247677699ebd69525245558cfc01a60 rustc-1.69.0-src.tar.xz -e4683f00c6c273dfd915bd4a3aa3e00ceb37633f8869f29faccee93b2e40def1b9733b67e1e57a632cc6aaf069fe36297109ab708122bffc432cfd34560854bb 0001-Fix-LLVM-build.patch -7658be28ad7543863a2e6599cf1553854efc5796edfd3f630ea491376e141f27f0d2bc005ca1c23534b8d12d40dcfa0d2de3a3b729f6bcefd90b1dd54618730c 0002-Remove-nostdlib-and-musl_root-from-musl-targets.patch -efe1db25508e469379be6b6eef9328e3f7becc48f42451df9e54ea915c1f5dbf5e03524d0acc7aa2720f9f073325bd43b143c441e8900b4dd5b027c030346139 0003-move-debugger-scripts-to-usr-share-rust.patch -47dd902d06e10f39648e73098b01c5db7ff3f842c449e1b5bff5a403f75d6295144875e4b27af38746441e093906494e990da0242a6a8d245e7d83973bba62cd 0005-do-not-install-libunwind-source-removed.patch -0b07980a5172178ae9249eb1ff3afe3ca62065049763eef14a8404d3c0c02a539f4b0f3c38eca07f631e9bafc4252da8241e0d0223e54213ac27573bb2ddc1c9 0007-link-stage-2-tools-dynamically-to-libstd.patch -bae78b62536a13d7ab3396bd69d162013a863ff86dee0e6be8d0b4d18dc5812812e15ac208b6ce5ceb5d71482e70befe13589cb92361daac49f718226bc3480f 0009-do-not-export-LD_LIBRARY_PATH.patch -a38344aa316e4d459e4887b1f0bdfd7378930b3cc1209b36fdf8f4196352f5e7499c1ff03223d23567089e0485968cbc688ec82640ce34d4a3ff9240b4948074 0010-Fix-dynamic-linkage-of-musl-libc-for-the-libc-crate.patch -3c7e7cb9a3a1b483455096e31c071a746207e638dd9e7d6445c0a128d003a35fdfe974c5978e0fcefe3e7a2a13c8cc351b2c809d8b026ad7116a69a68285e02f 0013-allow-specifying-native-sysroot-to-use-for-linkage.patch -" diff --git a/base/rust/smbuild b/base/rust/smbuild new file mode 100644 index 0000000..7b4a7f9 --- /dev/null +++ b/base/rust/smbuild @@ -0,0 +1,92 @@ +# Maintainer: PktSurf +app=rust +version=1.79.0 +build=1sml +homepage="https://rust-lang.org" +download="https://static.rust-lang.org/dist/rustc-$version-src.tar.xz" +desc="A safe, concurrent, practical language" +requires="gcc-libs bash llvm clang gdb" +# We don't want .rlib files to be removed +preservestaticlibs=1 + +prepbuilddir() { + arch="$HOSTTYPE" + export arch + mkandenterbuilddir + rm -rf rustc-$version-src + + tar xf $srcdir/rustc-$version-src.tar.?z* + cd rustc-$version-src + fixbuilddirpermissions + + # If a rust toolchain does not already exist, extract and install one of the provided ready-to-use toolchains + if [ ! -x /usr/bin/rustc ] ; then + # Create a temporary directory that will house a prebuilt architecture-specific rust toolchain provided by rust developers for bootstrapping + mkdir -p temp-toolchain + cd temp-toolchain + + # Extract the toolchain into it + tar xf $srcdir/$app-$version-$arch-unknown-linux-musl.tar.?z + cd $app-$version-$arch-unknown-linux-musl + + # Now install the toolchain + ./install.sh --prefix=/usr || true + + # Go back to the temporary build directory + cd ../../ + fi + + applypatch $srcdir/alpine-move-py-scripts-to-share.patch + applypatch $srcdir/do-not-install-libunwind-source.patch + applypatch $srcdir/gcc-eh-libunwind.patch + applypatch $srcdir/musl-fix-linux_musl_base.patch + applypatch $srcdir/need-rpath.patch + applypatch $srcdir/need-ssp_nonshared.patch + applypatch $srcdir/no-export-ld-library-path.patch + applypatch $srcdir/revert-rustc_codegen_ssa-use-try_canonicalize-in-rpath.patch + + clear_vendor_checksums() { + sed -i 's/\("files":{\)[^}]*/\1/' vendor/$1/.cargo-checksum.json + } + + clear_vendor_checksums openssl-src-111.28.1+1.1.1w + + # We use our system's LLVM. Discard rust's own bundled LLVM directory + #rm -Rf src/llvm-project/ + + cp $srcdir/config.toml . +} + +build() { + export RUST_BACKTRACE=1 + export OPENSSL_NO_VENDOR=1 + + unset MAKEFLAGS + python3 ./x.py dist -v -j4 + DESTDIR="$pkg" python3 ./x.py install + + cp LICENSE* COPYRIGHT $pkgdocs/ + + find $pkg/usr/lib -name "*.so" -exec chmod 755 "{}" \+ + + if [[ -x /usr/bin/rustc ]] && [[ -d temp-toolchain ]]; then + # Remove the temporary toolchain + cd temp-toolchain/$app-$version-$arch-unknown-linux-musl + ./install.sh --uninstall --prefix=/usr + fi + + mkfinalpkg +} + +sha512sums=" +02e5c2a67f5470f3320b04e7c4f0a6f5dbd361d5a97aee7e5860d04224683166b21375794c94ae040a2cc6fc119380be9d3465b8c5e1798abd4142d621cf9f99 rust-1.79.0-x86_64-unknown-linux-musl.tar.xz +99d7f276292e5c270648473ff73e9888413a3325ef3a4d7a45f8ce77a42ac87996905f1d875888ce084b621f642017bc9e31a00da1439108dbe19b85d0eab085 rustc-1.79.0-src.tar.xz +9de9d7ad05584e3cafddedcac409a4605a1d67e82260220deb3efd965603ee3148062b081c0cd736e50d82daad3a723fb6a7493fdf4dddfe36288645425a7946 alpine-move-py-scripts-to-share.patch +0d9e5ee4ebf647d3c44dc59b8991d330f2eb0cfa788768c5c9c5f5b57327c3a46b26e93641753a32335d0e3e76a0ab95bb6ad8279913b0c76c752624b139c5c1 do-not-install-libunwind-source.patch +cfdb3499fa6b3dea5ff7d3fd266ab0e34571fd48fa17c5e0f1467b8896087979555209dd256c50d357fdca1859feade9bf4c8f7b5cf003a16891350d0a34d00b gcc-eh-libunwind.patch +a32f3a9bcab771cce6be2ad936cd4edad3bb638f38da02e79c29cfed967eb0edcdf47ae892bbdd2959cebb5c74dee3fcc752dc2405f761d5c8ecc0021abb24a0 musl-fix-linux_musl_base.patch +f3051a7d67cf7937867d50a3169d391718d1d8a33f69066f08020df45e131076a811e9b9429e448460ff129bb2ebbf429b3cb5a4d05e188dace18f576a33562c need-rpath.patch +c5a94cc3518f3dbefb2011d1c4267530062843262133332cff96db2e779d7f9b57bdab336c50b927b1c84855db4fa1ab8eb62098286746c8dcf50a779ce0202b need-ssp_nonshared.patch +0688d21b59aa47867cf2a307bf997a996f14435a2931cdbbddcfe52c899f00d2676cdc67aeff2c4fbbc220fdb21d8405ec206e96aece93904a6541ba7438f649 no-export-ld-library-path.patch +74c0d14a68c2d7355f15ec3704d387556ad337e4991831e94951906d17aeb60387d20586a63cf6cdc62b46c60e1874340a250196ec2b3e75c268af1c41fae7e9 revert-rustc_codegen_ssa-use-try_canonicalize-in-rpath.patch +" diff --git a/base/sbc/sbc.SMBuild b/base/sbc/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/sbc/sbc.SMBuild rename to base/sbc/smbuild index 5c7b5dc..022a21a --- a/base/sbc/sbc.SMBuild +++ b/base/sbc/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --disable-static \ --disable-tester diff --git a/base/scons/scons.SMBuild b/base/scons/smbuild old mode 100755 new mode 100644 similarity index 90% rename from base/scons/scons.SMBuild rename to base/scons/smbuild index abbab07..0bf97d0 --- a/base/scons/scons.SMBuild +++ b/base/scons/smbuild @@ -6,7 +6,6 @@ homepage="http://www.scons.org/" download="https://sourceforge.net/projects/scons/files/scons/$version/scons-$version.tar.gz" desc="A software construction tool based on python" requires="python3" -ignoreusr=1 prepbuilddir() { mkandenterbuilddir @@ -21,10 +20,6 @@ build() { python3 setup.py build python3 setup.py install --root=$pkg - mkdir $pkg/bin - mv $pkg/usr/bin/* $pkg/bin/ - rmdir $pkg/usr/bin - mv $pkg/usr/man $pkg/usr/share/ cp LICENSE.txt $pkgdocs/ diff --git a/base/sed/sed.SMBuild b/base/sed/smbuild old mode 100755 new mode 100644 similarity index 94% rename from base/sed/sed.SMBuild rename to base/sed/smbuild index dcbc243..aca3b77 --- a/base/sed/sed.SMBuild +++ b/base/sed/smbuild @@ -19,8 +19,7 @@ prepbuilddir() { build() { LDFLAGS="-static" \ ./configure \ - --prefix=/usr \ - --bindir=/bin + --prefix=/usr make make install DESTDIR=$pkg diff --git a/base/shellcheck-bin/shellcheck-bin.SMBuild b/base/shellcheck-bin/smbuild old mode 100755 new mode 100644 similarity index 92% rename from base/shellcheck-bin/shellcheck-bin.SMBuild rename to base/shellcheck-bin/smbuild index 447e07e..9dcdbb4 --- a/base/shellcheck-bin/shellcheck-bin.SMBuild +++ b/base/shellcheck-bin/smbuild @@ -17,7 +17,7 @@ prepbuilddir() { } build() { - install -Dm 755 shellcheck.$arch $pkg/bin/shellcheck + install -Dm 755 shellcheck.$arch $pkg/usr/bin/shellcheck cp LICENSE.txt $pkgdocs/ diff --git a/base/signify/sha2.h.patch b/base/signify/sha2.h.patch deleted file mode 100644 index c5c2b2b..0000000 --- a/base/signify/sha2.h.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/sha2.h 2019-11-19 18:14:53.014674974 +0530 -+++ b/sha2.h 2019-11-19 18:15:07.824476042 +0530 -@@ -36,7 +36,7 @@ - - #ifndef _SHA2_H - #define _SHA2_H -- -+#include - - /*** SHA-256/384/512 Various Length Definitions ***********************/ - #define SHA224_BLOCK_LENGTH 64 diff --git a/base/signify/signify.SMBuild b/base/signify/signify.SMBuild deleted file mode 100755 index dcfe192..0000000 --- a/base/signify/signify.SMBuild +++ /dev/null @@ -1,52 +0,0 @@ -# Maintainer: PktSurf -app=signify -version=30 -build=2sml -libbsdversion=0.10.0 -homepage="https://github.com/aperezdc/signify" -download="https://github.com/aperezdc/signify/releases/download/v$version/signify-$version.tar.xz" -desc="Tools to cryptographically sign and verify files from OpenBSD folks" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - # We don't need a system-wide libbsd install because it would then get sucked - # in by xorg and qt5-based applications. We'll keep it contained to the - # signify source directory by modifying the pkgconfig path and CFLAGS and LDFLAGS. - - mkdir -p libbsd && cd libbsd - - ( - tar xf "$srcdir"/libbsd-$libbsdversion.tar.?z - cd libbsd-$libbsdversion - ./configure --prefix="$PWD"/../ - make && make install - ) - - LIBBSDPATH="$PWD" - cd .. - - PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$LIBBSDPATH/lib/pkgconfig" - applypatch $srcdir/sha2.h.patch - make CC+=" -static" \ - CFLAGS="-I$LIBBSDPATH/include" LDFLAGS="-L$LIBBSDPATH/lib" - make install PREFIX="" DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -b75529785b16c93d31401187f8a58258fbebe565dac071c8311775c913af989f62cd29d5ce2651af3ea6221cffd31cf04826577d3e546ab9ca14340f297777b9 libbsd-0.10.0.tar.xz -1bc9bb5eff5575af046978df34693a2e0a1d3c275d8cb88b38d42264a2b550e25cce4951b76ced97ac65ff7d32ccac52541dc05d75fae28907ab798aec73e58f signify-30.tar.lz -15d8eaa27c6e46862d8957341501c9f0dab254ed9652aca130c47b7478c025796d90b7ded10a74b69020c8da550b167a65b471b1c01d207abe0d281a785e6ffe sha2.h.patch -" diff --git a/base/slapt-get/slapt-get.SMBuild b/base/slapt-get/slapt-get.SMBuild deleted file mode 100755 index bd20ef9..0000000 --- a/base/slapt-get/slapt-get.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=slapt-get -version=0.11.1 -build=2sml -homepage="https://github.com/jaos/slapt-get" -desc="An apt-like front-end to Slackware's pkgtools" -requires="curl libassuan" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - make - install -Dm 644 src/slapt.h $pkg/include/slapt.h - - install -Dm 755 src/libslapt.so.0.11.1 $pkg/lib/libslapt.so.0.11.1 - (cd $pkg/lib ; ln -s libslapt.so.0.11.1 libslapt.so) - - install -Dm 755 slapt-get $pkg/bin/slapt-get - install -Dm 644 doc/libslapt.3 $pkg/share/man/man3/libslapt.3 - install -Dm 644 doc/slapt-get.8 $pkg/share/man/man8/slapt-get.8 - install -Dm 644 $srcdir/example.slapt-getrc $pkg/etc/slapt-get/slapt-getrc - mkdir -p $pkg/var/cache/slapt-get - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -da067237bfae0eb15edd0af96b366e044871d4c5b6a7d0839baaafc2ff9b0390df81c9ac414db93db15257c8331932dde6d9eb4340d281d04da6d55dbe682621 slapt-get-0.11.1.tar.lz -" diff --git a/base/smartmontools/smartd.run b/base/smartmontools/smartd.run index 44833c1..fee6ed4 100644 --- a/base/smartmontools/smartd.run +++ b/base/smartmontools/smartd.run @@ -1,2 +1,2 @@ #!/bin/sh -exec /bin/smartd -n > /dev/null 2>&1 +exec /usr/bin/smartd -n > /dev/null 2>&1 diff --git a/base/smartmontools/smartmontools.SMBuild b/base/smartmontools/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/smartmontools/smartmontools.SMBuild rename to base/smartmontools/smbuild index 6e6bbf8..ab78bf2 --- a/base/smartmontools/smartmontools.SMBuild +++ b/base/smartmontools/smbuild @@ -20,7 +20,7 @@ build() { ./configure \ --prefix=/usr \ --sysconfdir=/etc \ - --sbindir=/bin \ + --sbindir=/usr/bin \ --with-initscriptdir=no make diff --git a/base/soxr/soxr.SMBuild b/base/soxr/smbuild old mode 100755 new mode 100644 similarity index 96% rename from base/soxr/soxr.SMBuild rename to base/soxr/smbuild index f0eabbb..b4841eb --- a/base/soxr/soxr.SMBuild +++ b/base/soxr/smbuild @@ -21,7 +21,6 @@ build() { cmake .. \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_BINDIR=/bin \ -DBUILD_EXAMPLES='OFF' \ -DBUILD_TESTS='OFF' \ -DDOC_INSTALL_DIR="/usr/share/doc/$app-$version" \ diff --git a/base/speexdsp/speexdsp.SMBuild b/base/speexdsp/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/speexdsp/speexdsp.SMBuild rename to base/speexdsp/smbuild diff --git a/base/sqlite/sqlite.SMBuild b/base/sqlite/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/sqlite/sqlite.SMBuild rename to base/sqlite/smbuild index 27bcdef..b8e9875 --- a/base/sqlite/sqlite.SMBuild +++ b/base/sqlite/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --disable-static make diff --git a/base/strace/strace.SMBuild b/base/strace/smbuild old mode 100755 new mode 100644 similarity index 97% rename from base/strace/strace.SMBuild rename to base/strace/smbuild index 00d64c1..55ba9e4 --- a/base/strace/strace.SMBuild +++ b/base/strace/smbuild @@ -20,7 +20,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --enable-mpers=no make diff --git a/base/sudo/sudo.SMBuild b/base/sudo/smbuild old mode 100755 new mode 100644 similarity index 95% rename from base/sudo/sudo.SMBuild rename to base/sudo/smbuild index 9a720a3..d7252d7 --- a/base/sudo/sudo.SMBuild +++ b/base/sudo/smbuild @@ -21,8 +21,7 @@ build() { ./configure \ --prefix=/usr \ --sysconfdir=/etc \ - --bindir=/bin \ - --sbindir=/bin \ + --sbindir=/usr/bin \ --docdir="/usr/share/doc/$app-$version" \ --with-env-editor \ --disable-pam-session \ diff --git a/base/swig/swig.SMBuild b/base/swig/smbuild similarity index 100% rename from base/swig/swig.SMBuild rename to base/swig/smbuild diff --git a/base/sysfsutils/sysfsutils.SMBuild b/base/sysfsutils/smbuild similarity index 100% rename from base/sysfsutils/sysfsutils.SMBuild rename to base/sysfsutils/smbuild diff --git a/base/sysklogd/sysklogd.SMBuild b/base/sysklogd/smbuild old mode 100755 new mode 100644 similarity index 92% rename from base/sysklogd/sysklogd.SMBuild rename to base/sysklogd/smbuild index 78811c0..84fb236 --- a/base/sysklogd/sysklogd.SMBuild +++ b/base/sysklogd/smbuild @@ -24,9 +24,9 @@ build() { make all syslog_tst CC+=" -static" # install binaries - install -Dm 755 klogd $pkg/bin/klogd - install -Dm 755 syslog_tst $pkg/bin/syslog_tst - install -Dm 755 syslogd $pkg/bin/syslogd + install -Dm 755 klogd $pkg/usr/bin/klogd + install -Dm 755 syslog_tst $pkg/usr/bin/syslog_tst + install -Dm 755 syslogd $pkg/usr/bin/syslogd # install man pages install -Dm 644 syslog.conf.5 $pkg/usr/share/man/man5/syslog.conf.5 diff --git a/base/syslinux/extlinux.conf.smlinux b/base/syslinux/extlinux.conf.smlinux deleted file mode 100644 index 2825dd0..0000000 --- a/base/syslinux/extlinux.conf.smlinux +++ /dev/null @@ -1,16 +0,0 @@ -UI menu.c32 - -PROMPT 1 -MENU TITLE SMLinux Boot Menu - -TIMEOUT 30 - -LABEL SMLinux LTS 5.X - LINUX vmlinuz-5.4.41 - INITRD initrd.img-5.4.41 - APPEND root="UUID=<>" ro quiet consoleblank=0 - -LABEL SMLinux LTS 5.X rescue - LINUX vmlinuz-5.4.41 - INITRD initrd.img-5.4.41 - APPEND root=/dev/sda2 ro quiet consoleblank=0 nomodeset rescue diff --git a/base/syslinux/syslinux.SMBuild b/base/syslinux/syslinux.SMBuild deleted file mode 100755 index 07c2dae..0000000 --- a/base/syslinux/syslinux.SMBuild +++ /dev/null @@ -1,88 +0,0 @@ -# Maintainer: PktSurf -app=syslinux -version=6.03 -build=1sml -homepage="https://wiki.syslinux.org/wiki/index.php?title=The_Syslinux_Project" -desc="Boot loader for the linux operating system which boots off of MS-DOS Windows FAT filesystem" -requires="musl" -apparch="x86_64" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - - applypatch $srcdir/syslinux6-ext4_fix_64bit_feature.patch - - # We don't use sbin - sed -i 's,/sbin,/bin,' syslinux.spec mk/syslinux.mk - - # Exclude windows stuff and mtools and others - sed 's|INSTALLSUBDIRS = com32 utils dosutil|INSTALLSUBDIRS = com32 utils|g' -i Makefile - sed '/DIAGDIR/d' -i Makefile - - # Windows stuff not needed. - sed 's|diag libinstaller dos win32 win64 dosutil txt|libinstaller txt|g' -i Makefile - sed 's|win32/syslinux.exe win64/syslinux64.exe||g' -i Makefile - sed 's|dosutil/\*.com dosutil/\*.sys||g' -i Makefile - sed 's|dos/syslinux.com||g' -i Makefile - sed 's|gpxe/gpxelinuxk*\.0||g' -i Makefile - - # We dont want the perl-based utils - # They also pull in the isohybrid mbrs - sed "s|utils/[a-z]*||g" -i Makefile - - # rarely used COM32 Modules - sed "s,com32/modules/\*.c32,," -i Makefile - sed "s,com32/hdt/\*.c32,," -i Makefile - sed "s,com32/rosh/\*.c32,," -i Makefile - sed "s,com32/gfxboot/\*.c32,," -i Makefile - sed "s,com32/sysdump/\*.c32,," -i Makefile - sed "s,com32/lua/src/\*.c32,," -i Makefile - sed "s,com32/gpllib/\*.c32,," -i Makefile - sed "s,com32/cmenu/libmenu/\*.c32,," -i Makefile - - # Exclude perl utils from being installed - sed '/DIRS/ s/utils//' -i Makefile - - sed -i 's,#include ,#include "include/getkey.h",' com32/libutil/keyname.c - sed -i 's,#include ,#include "include/libutil.h",' com32/libutil/keyname.c - sed -i 's,#include "sha1.h",#include "include/sha1.h",' com32/libutil/sha1hash.c - sed -i 's,#include ,#include "include/base64.h",' com32/libutil/unbase64.c - sed -i 's,#include ,#include "include/md5.h",' com32/libutil/md5.c - sed -i 's,#include ,#include "include/md5.h",' com32/libutil/crypt-md5.c - sed -i 's,#include ,#include "include/minmax.h",' com32/libutil/sha256crypt.c - sed -i 's,#include "xcrypt.h",#include "include/xcrypt.h",' com32/libutil/sha256crypt.c - sed -i 's,#include ,#include "include/minmax.h",' com32/libutil/sha512crypt.c - sed -i 's,#include "xcrypt.h",#include "include/xcrypt.h",' com32/libutil/sha512crypt.c - sed -i 's,#include ,#include "include/base64.h",' com32/libutil/base64.c - sed -i '/herror.*/d' utils/gethostip.c - sed -ri 's,__uint([0-9]+)_t,uint\1_t,g' efi/wrapper.c - sed -ri 's,__uint([0-9]+)_t,uint\1_t,g' efi/wrapper.h - - PREFIXED_PATHS="BINDIR='/bin' LIBDIR='/lib' DATADIR='/share' MANDIR='/share/man' INCDIR='/include'" - - make CC="gcc -I/include -include sys/sysmacros.h" $PREFIXED_PATHS AUXDIR="/lib/syslinux/bios" INSTALLROOT="$pkg" -j1 bios installer - make $PREFIXED_PATHS AUXDIR="/lib/syslinux/bios" INSTALLROOT="$pkg" -j1 bios install - - make CC="gcc -I/include -include sys/sysmacros.h" $PREFIXED_PATHS AUXDIR="/lib/syslinux/bios" INSTALLROOT="$pkg" efi64 installer - make CC="gcc -I/include -include sys/sysmacros.h" $PREFIXED_PATHS AUXDIR="/lib/syslinux/bios" INSTALLROOT="$pkg" -j1 efi64 install - - # copy the smlinux bootloader configuration - install -Dm 0644 $srcdir/extlinux.conf.smlinux $pkg/boot/extlinux.conf.sample - - cp COPYING $pkgdocs/LICENSE - - mkfinalpkg -} - -sha512sums=" -5740536857c7789304ff00fc568fdce18ed3b2e09cf3623f08df7f46144ccc87248b618934d9fa092b99ceab054698b3e0250fd70a664b631da28bf3612b8160 syslinux-6.03.tar.lz -1ecba0810415963707099143de74ea5c9e41e38b200da2de57ceee29914b1eaeebc58b1cf14738f0b7bd4d37695a8490adb8a9f1b4f35ff4ad1f34c816db54da syslinux6-ext4_fix_64bit_feature.patch -" diff --git a/base/syslinux/syslinux6-ext4_fix_64bit_feature.patch b/base/syslinux/syslinux6-ext4_fix_64bit_feature.patch deleted file mode 100644 index 3a51a6f..0000000 --- a/base/syslinux/syslinux6-ext4_fix_64bit_feature.patch +++ /dev/null @@ -1,101 +0,0 @@ -From af7e95c32cea40c1e443ae301e64b27f068b4915 Mon Sep 17 00:00:00 2001 -From: Paulo Alcantara -Date: Wed, 11 Oct 2017 07:00:31 -0400 -Subject: ext4: Fix 64bit feature - -As per ext4 specification: - -> In ext2, ext3, and ext4 (when the 64bit feature is not enabled), the -> block group descriptor was only 32 bytes long and therefore ends at -> bg_checksum. On an ext4 filesystem with the 64bit feature enabled, the -> block group descriptor expands to at least the 64 bytes described below; -> the size is stored in the superblock. - -Since block group descriptor has been expanded to 64 bytes long (when 64 -bit feature is enabled), we cannot index ext2_group_desc and return it -*directly* -- as we did it in ext2_get_group_desc -- it's still 32 bytes -long. - -Instead, use s_desc_size field from superblock to correctly index and -return block group descriptors. - -Cc: H. Peter Anvin -Cc: Gene Cumm -Signed-off-by: Paulo Alcantara ---- - core/fs/ext2/ext2.c | 23 ++++++++++++++--------- - core/fs/ext2/ext2_fs.h | 1 + - 2 files changed, 15 insertions(+), 9 deletions(-) - -diff --git a/core/fs/ext2/ext2.c b/core/fs/ext2/ext2.c -index 76bd1d5a..4bc0a535 100644 ---- a/core/fs/ext2/ext2.c -+++ b/core/fs/ext2/ext2.c -@@ -25,22 +25,17 @@ static enum dirent_type ext2_cvt_type(unsigned int d_file_type) - return inode_type[d_file_type]; - } - --/* -- * get the group's descriptor of group_num -- */ --static const struct ext2_group_desc * --ext2_get_group_desc(struct fs_info *fs, uint32_t group_num) -+static const void *__ext2_get_group_desc(struct fs_info *fs, uint32_t group_num) - { - struct ext2_sb_info *sbi = EXT2_SB(fs); - uint32_t desc_block, desc_index; -- const struct ext2_group_desc *desc_data_block; -+ uint8_t *p; - - if (group_num >= sbi->s_groups_count) { - printf ("ext2_get_group_desc" - "block_group >= groups_count - " - "block_group = %d, groups_count = %d", - group_num, sbi->s_groups_count); -- - return NULL; - } - -@@ -49,8 +44,17 @@ ext2_get_group_desc(struct fs_info *fs, uint32_t group_num) - - desc_block += sbi->s_first_data_block + 1; - -- desc_data_block = get_cache(fs->fs_dev, desc_block); -- return &desc_data_block[desc_index]; -+ p = get_cache(fs->fs_dev, desc_block); -+ return p + sbi->s_desc_size * desc_index; -+} -+ -+/* -+ * get the group's descriptor of group_num -+ */ -+static inline const struct ext2_group_desc * -+ext2_get_group_desc(struct fs_info *fs, uint32_t group_num) -+{ -+ return __ext2_get_group_desc(fs, group_num); - } - - /* -@@ -306,6 +310,7 @@ static int ext2_fs_init(struct fs_info *fs) - if (sb.s_desc_size < sizeof(struct ext2_group_desc)) - sb.s_desc_size = sizeof(struct ext2_group_desc); - sbi->s_desc_per_block = BLOCK_SIZE(fs) / sb.s_desc_size; -+ sbi->s_desc_size = sb.s_desc_size; - sbi->s_groups_count = (sb.s_blocks_count - sb.s_first_data_block - + EXT2_BLOCKS_PER_GROUP(fs) - 1) - / EXT2_BLOCKS_PER_GROUP(fs); -diff --git a/core/fs/ext2/ext2_fs.h b/core/fs/ext2/ext2_fs.h -index 803a9954..d8d07ebd 100644 ---- a/core/fs/ext2/ext2_fs.h -+++ b/core/fs/ext2/ext2_fs.h -@@ -278,6 +278,7 @@ struct ext2_sb_info { - uint32_t s_first_data_block; /* First Data Block */ - int s_inode_size; - uint8_t s_uuid[16]; /* 128-bit uuid for volume */ -+ int s_desc_size; /* size of group descriptor */ - }; - - static inline struct ext2_sb_info *EXT2_SB(struct fs_info *fs) --- -cgit v1.2.1 - diff --git a/base/sysstat/sysstat.SMBuild b/base/sysstat/smbuild similarity index 100% rename from base/sysstat/sysstat.SMBuild rename to base/sysstat/smbuild diff --git a/base/tar/tar.SMBuild b/base/tar/smbuild old mode 100755 new mode 100644 similarity index 89% rename from base/tar/tar.SMBuild rename to base/tar/smbuild index 0b75d8f..c17323e --- a/base/tar/tar.SMBuild +++ b/base/tar/smbuild @@ -24,10 +24,11 @@ build() { FORCE_UNSAFE_CONFIGURE=1 \ LDFLAGS="-static" \ ./configure \ - --prefix=/bin \ - --bindir=/bin \ - --libexecdir=/lib \ - --enable-backup-scripts + --prefix=/usr \ + --sbindir=/usr/bin \ + --libexecdir=/usr/libexec \ + --enable-backup-scripts \ + --disable-nls make make install DESTDIR=$pkg diff --git a/base/tarlz/tarlz.SMBuild b/base/tarlz/smbuild similarity index 100% rename from base/tarlz/tarlz.SMBuild rename to base/tarlz/smbuild diff --git a/base/texinfo/texinfo.SMBuild b/base/texinfo/smbuild similarity index 100% rename from base/texinfo/texinfo.SMBuild rename to base/texinfo/smbuild diff --git a/base/time/time.SMBuild b/base/time/smbuild similarity index 100% rename from base/time/time.SMBuild rename to base/time/smbuild diff --git a/base/tofrodos/tofrodos.SMBuild b/base/tofrodos/smbuild similarity index 100% rename from base/tofrodos/tofrodos.SMBuild rename to base/tofrodos/smbuild diff --git a/base/toluapp/toluapp.SMBuild b/base/toluapp/smbuild similarity index 100% rename from base/toluapp/toluapp.SMBuild rename to base/toluapp/smbuild diff --git a/base/tree/tree.SMBuild b/base/tree/smbuild old mode 100755 new mode 100644 similarity index 90% rename from base/tree/tree.SMBuild rename to base/tree/smbuild index 6aa6466..7511810 --- a/base/tree/tree.SMBuild +++ b/base/tree/smbuild @@ -17,7 +17,7 @@ prepbuilddir() { } build() { - make install prefix="$pkg" MANDIR="$pkg/usr/share/man/man1" + make install prefix="$pkg/usr" MANDIR="$pkg/usr/share/man/man1" cp LICENSE $pkgdocs/ diff --git a/base/twolame/twolame.SMBuild b/base/twolame/smbuild similarity index 100% rename from base/twolame/twolame.SMBuild rename to base/twolame/smbuild diff --git a/base/tzdb/tzdb.SMBuild b/base/tzdb/smbuild similarity index 100% rename from base/tzdb/tzdb.SMBuild rename to base/tzdb/smbuild diff --git a/base/unzip/unzip.SMBuild b/base/unzip/smbuild old mode 100755 new mode 100644 similarity index 86% rename from base/unzip/unzip.SMBuild rename to base/unzip/smbuild index 5170796..824f4c0 --- a/base/unzip/unzip.SMBuild +++ b/base/unzip/smbuild @@ -26,11 +26,11 @@ build() { make -f unix/Makefile generic - make prefix="$pkg" -f unix/Makefile install + make prefix="$pkg/usr" -f unix/Makefile install - mkdir -p $pkg/usr/share/man - mv $pkg/man/man* $pkg/usr/share/man/ - rmdir $pkg/man + #mkdir -p $pkg/usr/share/man + #mv $pkg/man/man* $pkg/usr/share/man/ + #rmdir $pkg/man cp LICENSE $pkgdocs/ diff --git a/base/usbutils/usbutils.SMBuild b/base/usbutils/smbuild similarity index 100% rename from base/usbutils/usbutils.SMBuild rename to base/usbutils/smbuild diff --git a/base/util-linux/util-linux.SMBuild b/base/util-linux/smbuild similarity index 100% rename from base/util-linux/util-linux.SMBuild rename to base/util-linux/smbuild diff --git a/base/wavpack/wavpack.SMBuild b/base/wavpack/smbuild similarity index 100% rename from base/wavpack/wavpack.SMBuild rename to base/wavpack/smbuild diff --git a/base/wayland-protocols/wayland-protocols.SMBuild b/base/wayland-protocols/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/wayland-protocols/wayland-protocols.SMBuild rename to base/wayland-protocols/smbuild diff --git a/base/wayland/wayland.SMBuild b/base/wayland/smbuild similarity index 100% rename from base/wayland/wayland.SMBuild rename to base/wayland/smbuild diff --git a/base/which/which.SMBuild b/base/which/smbuild similarity index 100% rename from base/which/which.SMBuild rename to base/which/smbuild diff --git a/base/wireless-regdb/wireless-regdb.SMBuild b/base/wireless-regdb/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/wireless-regdb/wireless-regdb.SMBuild rename to base/wireless-regdb/smbuild diff --git a/base/woff2/woff2.SMBuild b/base/woff2/smbuild similarity index 100% rename from base/woff2/woff2.SMBuild rename to base/woff2/smbuild diff --git a/base/x264/x264.SMBuild b/base/x264/smbuild similarity index 100% rename from base/x264/x264.SMBuild rename to base/x264/smbuild diff --git a/base/xmlto/xmlto.SMBuild b/base/xmlto/smbuild similarity index 100% rename from base/xmlto/xmlto.SMBuild rename to base/xmlto/smbuild diff --git a/base/xz/xz.SMBuild b/base/xz/smbuild similarity index 100% rename from base/xz/xz.SMBuild rename to base/xz/smbuild diff --git a/base/yasm/yasm.SMBuild b/base/yasm/smbuild similarity index 100% rename from base/yasm/yasm.SMBuild rename to base/yasm/smbuild diff --git a/base/zip/zip.SMBuild b/base/zip/smbuild old mode 100755 new mode 100644 similarity index 88% rename from base/zip/zip.SMBuild rename to base/zip/smbuild index e310ee2..ae969b6 --- a/base/zip/zip.SMBuild +++ b/base/zip/smbuild @@ -20,7 +20,7 @@ build() { make -f unix/Makefile generic_gcc \ CFLAGS="$CFLAGS" - make prefix="$pkg" -f unix/Makefile install MANDIR="$pkg/usr/share/man/man1" + make prefix="$pkg/usr" -f unix/Makefile install MANDIR="$pkg/usr/share/man/man1" cp LICENSE $pkgdocs/ diff --git a/base/zlib/zlib.SMBuild b/base/zlib/smbuild old mode 100755 new mode 100644 similarity index 100% rename from base/zlib/zlib.SMBuild rename to base/zlib/smbuild diff --git a/base/zsh/zsh.SMBuild b/base/zsh/smbuild similarity index 100% rename from base/zsh/zsh.SMBuild rename to base/zsh/smbuild diff --git a/base/zstd/zstd.SMBuild b/base/zstd/smbuild similarity index 100% rename from base/zstd/zstd.SMBuild rename to base/zstd/smbuild diff --git a/extra/.buildlist.extra b/extra/.buildlist.extra index f0cce59..ecb25e1 100644 --- a/extra/.buildlist.extra +++ b/extra/.buildlist.extra @@ -5,8 +5,6 @@ ffmpegthumbnailer rxvt-unicode dmenu dwm -bluez -blueman feh imagemagick abiword @@ -20,7 +18,6 @@ mtd-utils mpv dia v4l-utils -scrcpy slock tmux florence @@ -28,6 +25,6 @@ micro-tetris cmatrix vim xscreensaver -adafruit-io gthumb gimp +tomb diff --git a/extra/abiword/enchant.patch b/extra/abiword/enchant.patch new file mode 100644 index 0000000..0b46496 --- /dev/null +++ b/extra/abiword/enchant.patch @@ -0,0 +1,30 @@ +--- abiword-3.0.2/src/af/xap/xp/enchant_checker.cpp.orig 2013-04-07 13:53:03.000000000 +0000 ++++ abiword-3.0.2/src/af/xap/xp/enchant_checker.cpp 2017-11-19 22:54:41.236180298 +0000 +@@ -127,7 +127,7 @@ + pvSugg->addItem (ucszSugg); + } + +- enchant_dict_free_suggestions (m_dict, suggestions); ++ enchant_dict_free_string_list (m_dict, suggestions); + } + + return pvSugg; +@@ -139,7 +139,7 @@ + + if (word && len) { + UT_UTF8String utf8 (word, len); +- enchant_dict_add_to_personal (m_dict, utf8.utf8_str(), utf8.byteLength()); ++ enchant_dict_add (m_dict, utf8.utf8_str(), utf8.byteLength()); + return true; + } + return false; +@@ -150,7 +150,7 @@ + UT_return_val_if_fail (m_dict, false); + + UT_UTF8String ignore (toCorrect, toCorrectLen); +- return enchant_dict_is_in_session (m_dict, ignore.utf8_str(), ignore.byteLength()) != 0; ++ return enchant_dict_is_added (m_dict, ignore.utf8_str(), ignore.byteLength()) != 0; + } + + void EnchantChecker::ignoreWord (const UT_UCSChar *toCorrect, size_t toCorrectLen) + diff --git a/extra/abiword/libxml2-2.12.patch b/extra/abiword/libxml2-2.12.patch new file mode 100644 index 0000000..2c36422 --- /dev/null +++ b/extra/abiword/libxml2-2.12.patch @@ -0,0 +1,29 @@ +From 2a06be6a10a0718f8a3d8e00c317f5042c99a467 Mon Sep 17 00:00:00 2001 +From: Jan Tojnar +Date: Mon, 11 Dec 2023 01:55:53 +0100 +Subject: [PATCH] Fix build with libxml2 2.12 +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +libxml 2.12.0 restructured headers so that xmlFree is no longer in the scope. +Let’s add the correct include. +--- + src/af/util/xp/ut_stringbuf.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/af/util/xp/ut_stringbuf.cpp b/src/af/util/xp/ut_stringbuf.cpp +index f1e8d9078..88488ad67 100644 +--- a/src/af/util/xp/ut_stringbuf.cpp ++++ b/src/af/util/xp/ut_stringbuf.cpp +@@ -26,6 +26,7 @@ + #include + + #include ++#include + + #include + +-- +GitLab + diff --git a/extra/abiword/abiword.SMBuild b/extra/abiword/smbuild old mode 100755 new mode 100644 similarity index 82% rename from extra/abiword/abiword.SMBuild rename to extra/abiword/smbuild index a554994..f767612 --- a/extra/abiword/abiword.SMBuild +++ b/extra/abiword/smbuild @@ -18,6 +18,7 @@ prepbuilddir() { applypatch $srcdir/enchant_checker.cpp.patch applypatch $srcdir/unixmouse.diff applypatch $srcdir/musl-1.2.3.patch + applypatch $srcdir/libxml2-2.12.patch } build() { @@ -29,7 +30,7 @@ _plugins="applix babelfish bmp clarisworks collab docbook eml epub \ xslfo" ./configure \ - --prefix= \ + --prefix=/usr \ --enable-shared \ --disable-static \ --enable-plugins="$_plugins" @@ -44,7 +45,9 @@ _plugins="applix babelfish bmp clarisworks collab docbook eml epub \ sha512sums=" 4c3f0c8fb67b7036946dd13d31ac6964379af4ee0d3ca8a69ed093be82a6411a29071856b4535c578864940773c8f280025384b738ea99aadce5d88095ee6d80 abiword-3.0.5.tar.lz +16f28eafdd1c1444dec5b3f8cbdd00f12c6178ba8db5bb94196064653cdada4cb8e4b2ac78ee9a7093c7968c0ddeb9f50a4e6209a5d5836a24b1b2f1941fb576 enchant.patch 0163d3275a7f260431885d9ea20bcb0c2cd52e19a062141422187f4df2f51c9613a90f1b7151fd50e2c1b7f511b767f1a2082c30792e59939ab0f3cf1c8aca65 enchant_checker.cpp.patch +0f98383e160782ccc2160e1bd9f5ba5ca02463dc14c2caeb987f225c06b4484a3618a068ff35806b6e3b6b2748e90a558c71ffb8d44c669f302fdcaebca836d4 libxml2-2.12.patch a4ee1de8df01a6570eb4d069a1b1abd38c39181020f862ce632ab5b863650a58fcaeadc4c988e7fcae3aade5841399d3d5d482d280d44a48286c24e3701e7969 musl-1.2.3.patch b8634c410485b2a5c8495bf5bcbdda027aca2e7028efc6ea06763d1df121409434cab53f370b55d409fb99e6dbb72819b99cb596ee735fe97aa235d0ed7b0124 unixmouse.diff -" +" \ No newline at end of file diff --git a/extra/adafruit-io/adafruit-io.SMBuild b/extra/adafruit-io/adafruit-io.SMBuild deleted file mode 100755 index 8563f75..0000000 --- a/extra/adafruit-io/adafruit-io.SMBuild +++ /dev/null @@ -1,29 +0,0 @@ -# Maintainer: PktSurf -app=adafruit-io -version=2.7.0 -build=1sml -homepage="https://pypi.org/project/typing/" -download="https://files.pythonhosted.org/packages/44/d0/7b8e112dfb593f2622dc43edbbea5a1007062ad2d75f330dec135faf6b98/adafruit-io-2.7.0.tar.gz" -desc="Python Adafruit module" -requires="python3 python-setuptools" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - python setup.py install --root=$pkg - - cp LICENSE* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -75f9561def65c31836dd336ffc8cdc4a0effe90a90b98d32c059667570618e8f46f5183bc2a8e8091e5c031cf9b2cbf590f6484b0f9ab4915bbc979051e99f80 adafruit-io-2.7.0.tar.lz -" diff --git a/extra/blueman/blueman.SMBuild b/extra/blueman/blueman.SMBuild deleted file mode 100755 index ff16d2d..0000000 --- a/extra/blueman/blueman.SMBuild +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: PktSurf -app=blueman -version=2.1.4 -build=1sml -homepage="https://github.com/blueman-project/blueman" -download="https://github.com/blueman-project/blueman/archive/refs/tags/$version.tar.gz" -desc="Graphical GTK+ Bluetooth Manager" -requires="py3cairo pygobject3 cython" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --disable-static \ - --enable-thunar-sendto \ - --enable-settings-integration \ - --disable-schemas-compile \ - --disable-pulseaudio - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - [[ -d $pkg/usr/lib/systemd ]] && rm -r $pkg/usr - - mkfinalpkg -} - -sha512sums=" -4c97002374015fba089f2d3721e3438a4375eba32abe90cf976a52f7d7e33eaa45660d92c827e81ad6b992eb63dc55ea4bb8a307dbe071d61317f022206c48e6 blueman-2.1.4.tar.lz -" diff --git a/extra/bluez/bluez.SMBuild b/extra/bluez/bluez.SMBuild deleted file mode 100755 index b7b9d9d..0000000 --- a/extra/bluez/bluez.SMBuild +++ /dev/null @@ -1,71 +0,0 @@ -# Maintainer: PktSurf -app=bluez -version=5.40 -build=1sml -homepage="https://www.bluez.org" -download="" -desc="Bluetooth libraries and utilities" -requires="libical alsa-lib json-c glib eudev dbus icu" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/bluez-5.30-obexd_without_systemd-1.patch - [ "$arch" = "aarch64" ] && applypatch $srcdir/bluez-5.40-rpi-fixes.patch - - sed -i -e 's|-lreadline|\0 -lncursesw|g' Makefile.{in,tools} - autoreconf -vif -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin \ - --sysconfdir=/etc \ - --libexecdir=/lib \ - --enable-library \ - --disable-systemd \ - --enable-deprecated - - make - make install DESTDIR=$pkg - - cp COPYING* $pkgdocs/ - - # Use reset=1 for the btusb module, which supposedly fixes reconnect problems: - install -Dm 644 $srcdir/btusb.conf $pkg/etc/modprobe.d/btusb.conf - - # Install the configuration files - mkdir -p $pkg/etc/bluetooth $pkg/etc/default - cat src/main.conf > $pkg/etc/bluetooth/main.conf.new - cat profiles/input/input.conf > $pkg/etc/bluetooth/input.conf.new - cat profiles/network/network.conf > $pkg/etc/bluetooth/network.conf.new - cat profiles/proximity/proximity.conf > $pkg/etc/bluetooth/proximity.conf.new - - cat $srcdir/uart.conf > $pkg/etc/bluetooth/uart.conf.new - cat $srcdir/defaultconfig > $pkg/etc/default/bluetooth.new - - if [ "$arch" = "aarch64" ]; then - cat $srcdir/uart.conf.pi3 > $pkg/etc/bluetooth/uart.conf.pi3.new - cat $srcdir/uart.conf.pi4 > $pkg/etc/bluetooth/uart.conf.pi4.new - install -Dm 644 $srcdir/100-bluetooth.rules $pkg/etc/udev/rules.d/100-bluetooth.rules - install -Dm 755 $srcdir/btuart $pkg/bin/btuart - fi - - install -Dm 755 $srcdir/rc.bluetooth $pkg/etc/rc.d/rc.bluetooth.new - - [[ -d $pkg/usr/lib/systemd ]] && rm -r $pkg/usr - - mkfinalpkg -} - -sha512sums=" -9f392eaabaef1104d09c8820350cb1c2e7fb09c13cfaa68742459c26d35e00a4aa860963dec345e1b48deba591f1ecebfa5131c7689b30129fd9f28dc4e5405e bluez-5.40.tar.lz -41ce7ccf78cca97563f0ef31e01dac6eb4484c24fe57be360b5e8de8c5bff5845e9d395766f891bd3f123788344456c88c9fc00cd1bb7c6a1dca89d09f19172b bluez-5.30-obexd_without_systemd-1.patch -bd6004cf97ade648fcaecc4c363e4d4c6ce2ac8ff66c66d66ec1b1ba445806e2163a765d04b70be97454b1e9cdfee26879bda34a7a197195c11834e1456e98b8 bluez-5.40-rpi-fixes.patch -" diff --git a/extra/cmatrix/cmatrix.SMBuild b/extra/cmatrix/smbuild old mode 100755 new mode 100644 similarity index 97% rename from extra/cmatrix/cmatrix.SMBuild rename to extra/cmatrix/smbuild index d9a0b6b..b242234 --- a/extra/cmatrix/cmatrix.SMBuild +++ b/extra/cmatrix/smbuild @@ -20,7 +20,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= + --prefix=/usr make make install DESTDIR=$pkg diff --git a/extra/dia/dia.SMBuild b/extra/dia/smbuild old mode 100755 new mode 100644 similarity index 95% rename from extra/dia/dia.SMBuild rename to extra/dia/smbuild index 1e07965..9d58650 --- a/extra/dia/dia.SMBuild +++ b/extra/dia/smbuild @@ -22,10 +22,11 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --with-cairo \ --disable-gnome \ - --with-hardbooks=no + --with-hardbooks=no \ + --disable-nls make || true make install DESTDIR=$pkg || true diff --git a/extra/dmenu/dmenu.SMBuild b/extra/dmenu/smbuild old mode 100755 new mode 100644 similarity index 90% rename from extra/dmenu/dmenu.SMBuild rename to extra/dmenu/smbuild index 1ba7ee5..948aa14 --- a/extra/dmenu/dmenu.SMBuild +++ b/extra/dmenu/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { make - make install PREFIX=/ MANPREFIX=/share/man DESTDIR=$pkg + make install PREFIX=/usr MANPREFIX=/usr/share/man DESTDIR=$pkg cp LICENSE $pkgdocs/ diff --git a/extra/dwm/dwm.SMBuild b/extra/dwm/smbuild old mode 100755 new mode 100644 similarity index 91% rename from extra/dwm/dwm.SMBuild rename to extra/dwm/smbuild index 3d5a7dc..114c42b --- a/extra/dwm/dwm.SMBuild +++ b/extra/dwm/smbuild @@ -21,7 +21,7 @@ prepbuilddir() { build() { make - make install PREFIX=/ MANPREFIX=/share/man DESTDIR=$pkg + make install PREFIX=/usr MANPREFIX=/usr/share/man DESTDIR=$pkg cp LICENSE $pkgdocs/ diff --git a/extra/feh/feh.SMBuild b/extra/feh/smbuild old mode 100755 new mode 100644 similarity index 74% rename from extra/feh/feh.SMBuild rename to extra/feh/smbuild index a702a0f..ad27bf8 --- a/extra/feh/feh.SMBuild +++ b/extra/feh/smbuild @@ -17,12 +17,12 @@ prepbuilddir() { } build() { - CFLAGS+=" -include string.h" make PREFIX=/ exif=1 help=1 + CFLAGS+=" -include string.h" make PREFIX=/usr exif=1 help=1 make install DESTDIR=$pkg \ - PREFIX=/ \ - man_dir=$pkg/share/man \ - example_dir="$pkg/share/doc/$app-$version/examples" \ - doc_dir="$pkg/share/doc/$app-$version" + PREFIX=/usr \ + man_dir=$pkg/usr/share/man \ + example_dir="$pkg/usr/share/doc/$app-$version/examples" \ + doc_dir="$pkg/usr/share/doc/$app-$version" cp COPYING $pkgdocs/ diff --git a/extra/ffmpeg/ffmpeg.SMBuild b/extra/ffmpeg/smbuild old mode 100755 new mode 100644 similarity index 74% rename from extra/ffmpeg/ffmpeg.SMBuild rename to extra/ffmpeg/smbuild index 8e35eed..6f0f277 --- a/extra/ffmpeg/ffmpeg.SMBuild +++ b/extra/ffmpeg/smbuild @@ -1,11 +1,11 @@ # Maintainer: PktSurf app=ffmpeg -version=4.4.4 +version=4.4.5 build=1sml homepage="https://ffmpeg.org/" download="https://ffmpeg.org/releases/ffmpeg-$version.tar.xz" desc="Software to record, convert and stream audio and video" -requires="libass libdrm freetype fribidi libmodplug opus lame mpg123 soxr libtheora libvorbis libvpx libxml2 libwebp libwavpack sdl2 twolame librsvg libcdio openjpeg" +requires="libass libdrm freetype fribidi libmodplug opus lame mpg123 soxr libtheora libvorbis libvpx libxml2 libwebp libwavpack sdl2 twolame libcdio openjpeg" prepbuilddir() { mkandenterbuilddir @@ -18,13 +18,10 @@ prepbuilddir() { build() { ./configure \ - --prefix=/ \ - --bindir=/bin \ - --incdir=/include \ - --libdir=/lib \ - --docdir="/share/doc/$app-$version" \ - --datadir="/share/doc/$app-$version" \ - --mandir=/share/man \ + --prefix=/usr \ + --docdir="/usr/share/doc/$app-$version" \ + --datadir="/usr/share/doc/$app-$version" \ + --mandir=/usr/share/man \ --enable-shared \ --disable-static \ --disable-debug \ @@ -49,7 +46,6 @@ build() { --enable-libxml2 \ --enable-sdl2 \ --enable-libtwolame \ - --enable-librsvg \ --enable-libopenjpeg \ --enable-libcdio @@ -62,5 +58,5 @@ build() { } sha512sums=" -9a039c8524d4051cbe661974b6f52be472dd0b8a72464b8d4f7f555413682112c0329154a9fa33533df1f1b4b4f55f2b75fecd3ab69df86fcbe53ac7d13f77f2 ffmpeg-4.4.4.tar.lz +9bb07dfe4b30635c97351ec6eedfe66f9419bb6cd65f6663d3b1912be6e28f41b13b9e6f306e355b202e74b49160ac8fddee9580725b9d39e5bfd598974de794 ffmpeg-4.4.5.tar.lz " diff --git a/extra/ffmpegthumbnailer/ffmpegthumbnailer.SMBuild b/extra/ffmpegthumbnailer/smbuild old mode 100755 new mode 100644 similarity index 91% rename from extra/ffmpegthumbnailer/ffmpegthumbnailer.SMBuild rename to extra/ffmpegthumbnailer/smbuild index b26db9b..84c4038 --- a/extra/ffmpegthumbnailer/ffmpegthumbnailer.SMBuild +++ b/extra/ffmpegthumbnailer/smbuild @@ -21,8 +21,8 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild cmake .. \ - -DCMAKE_INSTALL_PREFIX= \ - -DCMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES=/include \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES=/usr/include \ -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_BUILD_TYPE=Release \ -DENABLE_GIO=True \ @@ -39,4 +39,4 @@ build() { sha512sums=" cbfb8ce4eebb0331260b060592322566075862182bc6f4b7410e686b4260395ea64ab341330212bcd08b1889f4fc9da13bf50b45ce800466d5d1e05a08cc722e ffmpegthumbnailer-2.2.2.tar.lz f4a28c49ab4b6c3d740d9c0df47e670cfbeff77889f149762d8509dcf10b3fe67107f00615aadef1d7ee1029f99aaed415b1bbf7dc9b14ac332c17b85e79608c ffmpeg5.patch -" \ No newline at end of file +" diff --git a/extra/florence/florence.SMBuild b/extra/florence/smbuild old mode 100755 new mode 100644 similarity index 97% rename from extra/florence/florence.SMBuild rename to extra/florence/smbuild index c7423c3..30ffaaa --- a/extra/florence/florence.SMBuild +++ b/extra/florence/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --without-docs \ --disable-static diff --git a/extra/gimp/gimp.SMBuild b/extra/gimp/smbuild old mode 100755 new mode 100644 similarity index 95% rename from extra/gimp/gimp.SMBuild rename to extra/gimp/smbuild index 0168e6e..d06c8c9 --- a/extra/gimp/gimp.SMBuild +++ b/extra/gimp/smbuild @@ -5,7 +5,7 @@ build=1sml homepage="https://www.gimp.org/" download="https://download.gimp.org/mirror/pub/gimp/v2.8/gimp-2.8.22.tar.bz2" desc="The GNU Image Manipulation Program" -requires="libexif alsa-lib curl libgudev babl gtk2 dbus-glib gegl glib-networking hicolor-icon-theme lcms2 libwebp openjpeg" +requires="libexif alsa-lib curl libgudev babl gtk2 dbus-glib gegl glib-networking hicolor-icon-theme lcms2 libwebp openjpeg poppler-glib" prepbuilddir() { mkandenterbuilddir @@ -31,7 +31,7 @@ prepbuilddir() { build() { ./configure \ - --prefix="/" \ + --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --disable-altivec \ diff --git a/extra/gnumeric/gnumeric.SMBuild b/extra/gnumeric/smbuild old mode 100755 new mode 100644 similarity index 66% rename from extra/gnumeric/gnumeric.SMBuild rename to extra/gnumeric/smbuild index 8eed2d4..d3869f6 --- a/extra/gnumeric/gnumeric.SMBuild +++ b/extra/gnumeric/smbuild @@ -1,6 +1,6 @@ # Maintainer: PktSurf app=gnumeric -version=1.12.46 +version=1.12.57 build=1sml homepage="http://projects.gnome.org/gnumeric/" download="https://download.gnome.org/sources/gnumeric/1.12/gnumeric-$version.tar.xz" @@ -18,8 +18,11 @@ prepbuilddir() { build() { ./configure \ - --prefix=/ \ - --disable-introspection + --prefix=/usr \ + --disable-static \ + --disable-introspection \ + --disable-nls \ + --disable-gtk-doc-html make make install DESTDIR=$pkg @@ -30,5 +33,5 @@ build() { } sha512sums=" -30f3cf05bac4b77e1dfd5f48dc29d7da3b6a70f10e41d5ea0410cf74a9d18dc639da60abc0e5db9efca643dadb8696d2a3779fcf80003c8ac927c4c9e8f21bd7 gnumeric-1.12.46.tar.lz +67886aff17338c41997cb71d2ee8fcac0f3b9dfc4ef1897b50866844e002ba7867f263daa3aadcaa10ba29746795fad0a4f852bdc22cdd4bc41293c952b69e9d gnumeric-1.12.57.tar.xz " diff --git a/extra/gthumb/gthumb.SMBuild b/extra/gthumb/smbuild old mode 100755 new mode 100644 similarity index 98% rename from extra/gthumb/gthumb.SMBuild rename to extra/gthumb/smbuild index 2f1ce72..72ca0ce --- a/extra/gthumb/gthumb.SMBuild +++ b/extra/gthumb/smbuild @@ -22,7 +22,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ + --prefix=/usr ninja DESTDIR="$pkg" ninja install diff --git a/extra/gtypist/gtypist.SMBuild b/extra/gtypist/smbuild old mode 100755 new mode 100644 similarity index 98% rename from extra/gtypist/gtypist.SMBuild rename to extra/gtypist/smbuild index 27e78cc..acba77f --- a/extra/gtypist/gtypist.SMBuild +++ b/extra/gtypist/smbuild @@ -22,7 +22,7 @@ prepbuilddir() { build() { LDFLAGS="-lterminfo -lncurses" \ ./configure \ - --prefix= + --prefix=/usr make make install DESTDIR=$pkg diff --git a/extra/imagemagick/imagemagick.SMBuild b/extra/imagemagick/smbuild old mode 100755 new mode 100644 similarity index 97% rename from extra/imagemagick/imagemagick.SMBuild rename to extra/imagemagick/smbuild index 4962e55..660f359 --- a/extra/imagemagick/imagemagick.SMBuild +++ b/extra/imagemagick/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --without-modules \ --with-x \ --with-frozenpaths=no \ diff --git a/extra/iotop/iotop.SMBuild b/extra/iotop/smbuild old mode 100755 new mode 100644 similarity index 95% rename from extra/iotop/iotop.SMBuild rename to extra/iotop/smbuild index 034f124..f844cbb --- a/extra/iotop/iotop.SMBuild +++ b/extra/iotop/smbuild @@ -16,6 +16,7 @@ prepbuilddir() { fixbuilddirpermissions applypatch $srcdir/fix-python.patch + applypatch $srcdir/fix-proc-status-read.patch } build() { @@ -31,4 +32,4 @@ sha512sums=" 27d2525fa88d11f14ba477a570cdf5ef09b591846c31bc7a3970b92f22aa687e1182f1e08bbdddf400f17b10425d6426969be2846210b4714a922d1a92fb2fe6 iotop-0.6.tar.lz e4c5aee993e7971dd731202f69e2c0a704833dce26c09329e9d7fa8d5f37c9584082a165ceaab8a07aa2421f0debf9af16f41f6b657d841ae6cc7bb2e7fb8d79 fix-proc-status-read.patch df5b09b20dc5ca3a8e73f39089f8ef2dbc5060b35178067a41ab1fd075922a860458611d5b0e7beb7aca8c9c5853998aeb7529dbccff9ef39daf17cd997cd698 fix-python.patch -" +" \ No newline at end of file diff --git a/extra/libass/libass.SMBuild b/extra/libass/smbuild old mode 100755 new mode 100644 similarity index 89% rename from extra/libass/libass.SMBuild rename to extra/libass/smbuild index 947cda1..744d3c9 --- a/extra/libass/libass.SMBuild +++ b/extra/libass/smbuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=libass version=0.17.1 -build=1sml +build=2sml homepage="http://code.google.com/p/libass/" download="https://github.com/libass/libass/archive/refs/tags/$version.tar.gz" desc="Subtitle renderer for the ASS and SSA formats" @@ -18,9 +18,10 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --enable-static=no \ - --enable-shared=yes + --enable-shared=yes \ + --enable-fontconfig make make install DESTDIR=$pkg @@ -32,4 +33,4 @@ build() { sha512sums=" bdc997d7f9ff827f559f09363b53c4354d020499b9136233e8a1740f4182c7dc04d0b8f2ce31e94dca69854dd8c87ebcdbf216ffe7e7ad82d341e6249a04469d libass-0.17.1.tar.lz -" \ No newline at end of file +" diff --git a/extra/micro-tetris/micro-tetris.SMBuild b/extra/micro-tetris/smbuild old mode 100755 new mode 100644 similarity index 86% rename from extra/micro-tetris/micro-tetris.SMBuild rename to extra/micro-tetris/smbuild index baf7fb7..60aa1d2 --- a/extra/micro-tetris/micro-tetris.SMBuild +++ b/extra/micro-tetris/smbuild @@ -18,7 +18,11 @@ prepbuilddir() { build() { make - make install DESTDIR=$pkg + make install DESTDIR="$pkg" + + mkdir -p $pkg/usr/bin + mv $pkg/bin/* $pkg/usr/bin/ + rmdir $pkg/bin cp LICENSE $pkgdocs/ diff --git a/extra/mpv/mpv.SMBuild b/extra/mpv/smbuild old mode 100755 new mode 100644 similarity index 52% rename from extra/mpv/mpv.SMBuild rename to extra/mpv/smbuild index adc1133..d534578 --- a/extra/mpv/mpv.SMBuild +++ b/extra/mpv/smbuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=mpv -version=0.35.1 -build=1sml +version=0.37.0 +build=2sml homepage="http://mpv.io" download="https://github.com/mpv-player/mpv/archive/refs/tags/v$version.tar.gz" desc="Movie player based on MPlayer and mplayer2" @@ -17,22 +17,19 @@ prepbuilddir() { } build() { - zcat $srcdir/waf-2.0.9.gz > waf - chmod +x waf + mkdir -p smbuild && cd smbuild + meson .. \ + --prefix=/usr \ + --auto-features auto - ./waf configure \ - --prefix= \ - --confdir=/etc/mpv \ - --enable-egl-x11 + ninja + DESTDIR="$pkg" ninja install - ./waf build $MAKEFLAGS - ./waf --destdir="$pkg" install - - cp LICENSE* $pkgdocs/ + cp ../LICENSE.* $pkgdocs/ mkfinalpkg } sha512sums=" -a6c7cd5d38acef2e4676ca7036dd4343029fbb8373004d125843b29761527e1c96aca2f91b640751a8643e2c6758357f2818c02bac99ab896db7e45a5b924d87 mpv-0.35.1.tar.lz -" \ No newline at end of file +b94c7c1995986cf38e8d781debcba0bd235f7fde49196e9d01de616a07539c7d0e54a60e052dea9967650a0080751ee1d2155cc85770ec2cf4ad352602e3a2a4 mpv-0.37.0.tar.lz +" diff --git a/extra/mtd-utils/mtd-utils.SMBuild b/extra/mtd-utils/smbuild old mode 100755 new mode 100644 similarity index 90% rename from extra/mtd-utils/mtd-utils.SMBuild rename to extra/mtd-utils/smbuild index 4bd85c3..0d20518 --- a/extra/mtd-utils/mtd-utils.SMBuild +++ b/extra/mtd-utils/smbuild @@ -25,8 +25,8 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ - --sbindir=/bin \ + --prefix=/usr \ + --sbindir=/usr/bin \ --without-zstd make @@ -38,7 +38,7 @@ build() { cd nand-utils-$nandversion make - make install SBINDIR="/bin" MANDIR="/share/man" DESTDIR=$pkg + make install SBINDIR="/usr/bin" MANDIR="/usr/share/man" DESTDIR=$pkg cp COPYING $pkgdocs/COPYING.nand-utils ) diff --git a/extra/mupdf/mupdf.SMBuild b/extra/mupdf/smbuild old mode 100755 new mode 100644 similarity index 81% rename from extra/mupdf/mupdf.SMBuild rename to extra/mupdf/smbuild index 5408dea..b56a077 --- a/extra/mupdf/mupdf.SMBuild +++ b/extra/mupdf/smbuild @@ -26,23 +26,23 @@ build() { rm -rf thirdparty/"$library" done - make USE_SYSTEM_LIBS=yes prefix=/ CURL_LIBS="-lcurl -lpthread" \ + make USE_SYSTEM_LIBS=yes prefix=/usr CURL_LIBS="-lcurl -lpthread" \ build=release libs apps - make USE_SYSTEM_LIBS=yes prefix=/ DESTDIR="$pkg" install + make USE_SYSTEM_LIBS=yes prefix=/usr DESTDIR="$pkg" install # .desktop taken from debian and modified: - install -Dm 644 $srcdir/$app.desktop $pkg/share/applications/$app.desktop + install -Dm 644 $srcdir/$app.desktop $pkg/usr/share/applications/$app.desktop # Icon converted from platform/x11/mupdf.ico, with icotool - install -Dm 644 $srcdir/$app.png $pkg/share/pixmaps/$app.png + install -Dm 644 $srcdir/$app.png $pkg/usr/share/pixmaps/$app.png ( - cd $pkg/lib + cd $pkg/usr/lib ln -s libmupdf.so.0 libmupdf.so ln -s libmupdf-third.so.0 libmupdf-third.so ) - mv $pkg/share/doc/$app/COPYING $pkgdocs/ + mv $pkg/usr/share/doc/$app/COPYING $pkgdocs/ mkfinalpkg } diff --git a/extra/rxvt-unicode/rxvt-unicode.SMBuild b/extra/rxvt-unicode/smbuild old mode 100755 new mode 100644 similarity index 96% rename from extra/rxvt-unicode/rxvt-unicode.SMBuild rename to extra/rxvt-unicode/smbuild index 915d325..318ab15 --- a/extra/rxvt-unicode/rxvt-unicode.SMBuild +++ b/extra/rxvt-unicode/smbuild @@ -5,7 +5,7 @@ build=1sml homepage="https://software.schmorp.de/pkg/rxvt-unicode.html" download="https://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-$version.tar.bz2" desc="Enhanced version of rxvt terminal emulator with full support for unicode and XFT" -requires="gcc-libs netbsd-curses glib perl libxft startup-notification" +requires="gcc-libs netbsd-curses glib perl libxft startup-notification libptytty" prepbuilddir() { mkandenterbuilddir @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --enable-everything \ --enable-256-color \ --enable-unicode3 \ diff --git a/extra/scrcpy/scrcpy.SMBuild b/extra/scrcpy/scrcpy.SMBuild deleted file mode 100755 index 4555463..0000000 --- a/extra/scrcpy/scrcpy.SMBuild +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: PktSurf -app=scrcpy -version=1.16 -build=1sml -homepage="https://github.com/Genymobile/scrcpy" -download="https://github.com/Genymobile/scrcpy/archive/refs/tags/v$version.tar.gz" -desc="Lightweight display and control utility to interact with Android 5.1+ devices over USB or TCP/IP" -requires="meson sdl2 ffmpeg" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - mkdir -p build/server && cd build - cp $srcdir/scrcpy-server-v"$version".zip server/scrcpy-server - meson .. \ - --prefix=/ \ - --buildtype release - - ninja - DESTDIR="$pkg" ninja install - - cp ../LICENSE $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -b100ab05ea7251e756ee01e3ea0ff4abe452d829884e9eb3ffca7b5dd5aec4559dedf649509f689db1b897846b7013f84571700b59e7792e4f14a785ede3743a scrcpy-1.16.tar.lz -52d4fbf48a91e61abff5e0bbc510c83fb4c1238a2791f888baf9fb04f04c5c19dfc82525c717fc1b92bd86fb2152cb29f6932784e1e2115329288ec97d8594fc scrcpy-server-v1.16.zip -" diff --git a/extra/sdl2/sdl2.SMBuild b/extra/sdl2/smbuild old mode 100755 new mode 100644 similarity index 94% rename from extra/sdl2/sdl2.SMBuild rename to extra/sdl2/smbuild index adbd9ae..3415ac8 --- a/extra/sdl2/sdl2.SMBuild +++ b/extra/sdl2/smbuild @@ -30,11 +30,6 @@ build() { cp ../LICENSE.txt $pkgdocs/ - ( - cp -r $pkg/usr/* $pkg/ - rm -r $pkg/usr - ) - mkfinalpkg } diff --git a/extra/slock/slock.SMBuild b/extra/slock/smbuild old mode 100755 new mode 100644 similarity index 94% rename from extra/slock/slock.SMBuild rename to extra/slock/smbuild index b6a4b35..0d9194a --- a/extra/slock/slock.SMBuild +++ b/extra/slock/smbuild @@ -21,7 +21,7 @@ prepbuilddir() { build() { make - make install PREFIX=/ DESTDIR=$pkg + make install PREFIX=/usr DESTDIR=$pkg cp LICENSE $pkgdocs/ diff --git a/extra/testdisk/testdisk.SMBuild b/extra/testdisk/smbuild old mode 100755 new mode 100644 similarity index 97% rename from extra/testdisk/testdisk.SMBuild rename to extra/testdisk/smbuild index 8122a28..be86ff3 --- a/extra/testdisk/testdisk.SMBuild +++ b/extra/testdisk/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { LIBS="-lncurses -lterminfo" \ ./configure \ - --prefix= \ + --prefix=/usr \ make make install DESTDIR=$pkg diff --git a/extra/tmux/tmux.SMBuild b/extra/tmux/smbuild old mode 100755 new mode 100644 similarity index 97% rename from extra/tmux/tmux.SMBuild rename to extra/tmux/smbuild index 1c8cca6..adf9be9 --- a/extra/tmux/tmux.SMBuild +++ b/extra/tmux/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= + --prefix=/usr make make install DESTDIR=$pkg diff --git a/extra/tomb/smbuild b/extra/tomb/smbuild new file mode 100644 index 0000000..97a7d27 --- /dev/null +++ b/extra/tomb/smbuild @@ -0,0 +1,28 @@ +# Maintainer: PktSurf +app=tomb +version=2.10 +build=1sml +homepage="https://github.com/dyne/Tomb" +download="https://github.com/dyne/Tomb/archive/refs/tags/v$version.tar.gz" +desc="Tool to manage encrypted storage written in ZSH" +requires="zsh pinentry" + +prepbuilddir() { + mkandenterbuilddir + rm -rf Tomb-$version + + tar xf $srcdir/Tomb-$version.tar.?z* + cd Tomb-$version + fixbuilddirpermissions +} + +build() { + make install PREFIX=/usr DESTDIR=$pkg + cp COPYING $pkgdocs/ + + mkfinalpkg +} + +sha512sums=" +0f090d2c61fdd9a64b6d6f00e104271a61c8a852015a099063874d9436ca9fd337ca345d7164a9b4d480d5aae0b121c9f75d60af37b4003b4162a4191ac0e9b7 Tomb-2.10.tar.gz +" diff --git a/extra/v4l-utils/v4l-utils.SMBuild b/extra/v4l-utils/smbuild old mode 100755 new mode 100644 similarity index 96% rename from extra/v4l-utils/v4l-utils.SMBuild rename to extra/v4l-utils/smbuild index 95575a1..3d8af7b --- a/extra/v4l-utils/v4l-utils.SMBuild +++ b/extra/v4l-utils/smbuild @@ -23,8 +23,8 @@ build() { CFLAGS+=" -D__off_t=off_t" \ LIBS="-largp" \ ./configure \ - --prefix=/ \ - --sbindir=/bin \ + --prefix=/usr \ + --sbindir=/usr/bin \ --disable-static make diff --git a/extra/vim/vim.SMBuild b/extra/vim/smbuild old mode 100755 new mode 100644 similarity index 96% rename from extra/vim/vim.SMBuild rename to extra/vim/smbuild index e5ae072..6bc305a --- a/extra/vim/vim.SMBuild +++ b/extra/vim/smbuild @@ -21,7 +21,7 @@ build() { LIBS="-lcurses -lterminfo" \ LDFLAGS="-static" \ ./configure \ - --prefix= \ + --prefix=/usr \ --sysconfdir=/etc \ --disable-netbeans --disable-gui \ --with-x=no --enable-multibyte --with-features=normal \ @@ -34,7 +34,7 @@ build() { cp *.md $pkgdocs/ ( - cd $pkg/bin + cd $pkg/usr/bin ln -s vim vi ) diff --git a/extra/xarchiver/xarchiver.SMBuild b/extra/xarchiver/smbuild old mode 100755 new mode 100644 similarity index 96% rename from extra/xarchiver/xarchiver.SMBuild rename to extra/xarchiver/smbuild index 3a900e1..b30d18e --- a/extra/xarchiver/xarchiver.SMBuild +++ b/extra/xarchiver/smbuild @@ -17,7 +17,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --disable-gtk2 make diff --git a/extra/xscreensaver/xscreensaver.SMBuild b/extra/xscreensaver/smbuild old mode 100755 new mode 100644 similarity index 92% rename from extra/xscreensaver/xscreensaver.SMBuild rename to extra/xscreensaver/smbuild index 234897c..4b8e1eb --- a/extra/xscreensaver/xscreensaver.SMBuild +++ b/extra/xscreensaver/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix=/ \ + --prefix=/usr \ --with-login-manager \ --with-gtk \ --with-gl \ @@ -30,7 +30,7 @@ build() { --without-elogind \ --without-systemd \ --with-shadow \ - --with-app-defaults="/share/X11/app-defaults" + --with-app-defaults="/usr/share/X11/app-defaults" make make install install_prefix="$pkg" @@ -42,4 +42,4 @@ build() { sha512sums=" e8e01975910ad9eaf5e1ad5f5170afe01284af84aa123ced376ffbea761e81f57fd0877a1fea173f3b0bfb70c846171a8045d296deccbd9d20db9f481899b515 xscreensaver-6.06.tar.lz -" \ No newline at end of file +" diff --git a/gtk/.buildlist.gtk b/gtk/.buildlist.gtk index ee52e17..c5b7045 100644 --- a/gtk/.buildlist.gtk +++ b/gtk/.buildlist.gtk @@ -10,7 +10,6 @@ harfbuzz pango gdk-pixbuf gtk2 -libglade gegl libgsf librsvg @@ -24,16 +23,12 @@ glib-networking libsoup libwebp goffice -gtkspell -libwnck2 libwnck3 -keybinder hicolor-icon-theme adwaita-icon-theme pinentry openjpeg libgd -gnome-themes-extra clearlooks-phenix-theme gnome-icon-theme libsigcpp @@ -44,4 +39,6 @@ pygobject3 libgexiv2 libgphoto2 libmanette -libportal +gtksourceview +poppler-data +poppler diff --git a/gtk/adwaita-icon-theme/adwaita-icon-theme.SMBuild b/gtk/adwaita-icon-theme/smbuild old mode 100755 new mode 100644 similarity index 60% rename from gtk/adwaita-icon-theme/adwaita-icon-theme.SMBuild rename to gtk/adwaita-icon-theme/smbuild index 6e30b82..5f9abfa --- a/gtk/adwaita-icon-theme/adwaita-icon-theme.SMBuild +++ b/gtk/adwaita-icon-theme/smbuild @@ -1,6 +1,6 @@ # Maintainer: PktSurf app=adwaita-icon-theme -version=3.36.0 +version=40.1.1 build=1sml homepage="https://gitlab.gnome.org/GNOME/adwaita-icon-theme" download="https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/archive/$version/adwaita-icon-theme-$version.tar.bz2" @@ -14,13 +14,11 @@ prepbuilddir() { tar xf $srcdir/$app-$version.tar.?z* cd $app-$version fixbuilddirpermissions - - applypatch $srcdir/inherit-hicolor-theme.diff } build() { ./configure \ - --prefix= + --prefix=/usr make make install DESTDIR=$pkg @@ -31,6 +29,5 @@ build() { } sha512sums=" -e93743b74f0853e73df81b0e4fe58d09b35fceef99c808591a34ee4b963c3db689935dc0f6ddd76fd22bd2d3df595989f5d470821275add254858db0d18fbecb adwaita-icon-theme-3.36.0.tar.lz -43190d282ff6f003b51ce1759d5933935b8dc9c31c048b150b5dd4c0bd748d3378e38f34a3c0e1b0772290c802a073ea18c87828c08141e984dd9261ca54f418 inherit-hicolor-theme.diff -" +8f0508e660b5b40d8a4b797202236e0d0985dba58ea3473babd6582120b6759c859c699e55f4e0891f169c7c4c7e5c36094b0972378985ed6a6df704538dd1f2 adwaita-icon-theme-40.1.1.tar.xz +" \ No newline at end of file diff --git a/gtk/at-spi2-atk/at-spi2-atk.SMBuild b/gtk/at-spi2-atk/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/at-spi2-atk/at-spi2-atk.SMBuild rename to gtk/at-spi2-atk/smbuild index 4eb82e7..fb68b37 --- a/gtk/at-spi2-atk/at-spi2-atk.SMBuild +++ b/gtk/at-spi2-atk/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ + --prefix=/usr ninja DESTDIR="$pkg" ninja install diff --git a/gtk/atk/atk.SMBuild b/gtk/atk/smbuild old mode 100755 new mode 100644 similarity index 96% rename from gtk/atk/atk.SMBuild rename to gtk/atk/smbuild index 37f3033..d0220c3 --- a/gtk/atk/atk.SMBuild +++ b/gtk/atk/smbuild @@ -17,7 +17,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild - meson .. --prefix=/ + meson .. --prefix=/usr ninja DESTDIR="$pkg" ninja install diff --git a/gtk/babl/babl.SMBuild b/gtk/babl/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/babl/babl.SMBuild rename to gtk/babl/smbuild index a911b72..67d64b8 --- a/gtk/babl/babl.SMBuild +++ b/gtk/babl/smbuild @@ -22,7 +22,7 @@ build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ \ + --prefix=/usr \ -Denable-vapi=false \ -Dwith-docs=false @@ -36,4 +36,4 @@ build() { sha512sums=" 2a32332bc19f920481518fde381247cdc83c7535dd8322292d89332f1e8d496bfe7858edfdd33e9b55e1730e2d8367fa56f243254a6c8732b8e79892523e3e02 babl-0.1.106.tar.lz -" \ No newline at end of file +" diff --git a/gtk/cairo/cairo.SMBuild b/gtk/cairo/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/cairo/cairo.SMBuild rename to gtk/cairo/smbuild index e068c72..b5b1ad5 --- a/gtk/cairo/cairo.SMBuild +++ b/gtk/cairo/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --disable-static make diff --git a/gtk/clearlooks-phenix-theme/clearlooks-phenix-theme.SMBuild b/gtk/clearlooks-phenix-theme/smbuild old mode 100755 new mode 100644 similarity index 86% rename from gtk/clearlooks-phenix-theme/clearlooks-phenix-theme.SMBuild rename to gtk/clearlooks-phenix-theme/smbuild index 139340e..f3ab61a --- a/gtk/clearlooks-phenix-theme/clearlooks-phenix-theme.SMBuild +++ b/gtk/clearlooks-phenix-theme/smbuild @@ -17,8 +17,8 @@ prepbuilddir() { } build() { - mkdir -p $pkg/share/themes/Clearlooks-Phenix - cp -r xfwm4 gtk* $pkg/share/themes/Clearlooks-Phenix/ + mkdir -p $pkg/usr/share/themes/Clearlooks-Phenix + cp -r xfwm4 gtk* $pkg/usr/share/themes/Clearlooks-Phenix/ cp COPYING $pkgdocs/ diff --git a/gtk/dbus-glib/dbus-glib.SMBuild b/gtk/dbus-glib/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/dbus-glib/dbus-glib.SMBuild rename to gtk/dbus-glib/smbuild index a431f11..d70401f --- a/gtk/dbus-glib/dbus-glib.SMBuild +++ b/gtk/dbus-glib/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --enable-gtk-doc-html=no \ --disable-static diff --git a/gtk/gdk-pixbuf/gdk-pixbuf.SMBuild b/gtk/gdk-pixbuf/smbuild old mode 100755 new mode 100644 similarity index 95% rename from gtk/gdk-pixbuf/gdk-pixbuf.SMBuild rename to gtk/gdk-pixbuf/smbuild index bb3c2c7..1848b39 --- a/gtk/gdk-pixbuf/gdk-pixbuf.SMBuild +++ b/gtk/gdk-pixbuf/smbuild @@ -19,9 +19,10 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ \ + --prefix=/usr \ -Dman=false \ -Dinstalled_tests=false \ + -Dtests=false \ --wrap-mode=nofallback ninja diff --git a/gtk/gegl/gegl.SMBuild b/gtk/gegl/smbuild old mode 100755 new mode 100644 similarity index 96% rename from gtk/gegl/gegl.SMBuild rename to gtk/gegl/smbuild index 06ab9d4..3bfd78a --- a/gtk/gegl/gegl.SMBuild +++ b/gtk/gegl/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild - meson .. --prefix=/ \ + meson .. --prefix=/usr \ -Ddocs=false \ -Dvapigen=disabled \ -Dparallel-tests=false diff --git a/gtk/glib-networking/glib-networking.SMBuild b/gtk/glib-networking/smbuild old mode 100755 new mode 100644 similarity index 96% rename from gtk/glib-networking/glib-networking.SMBuild rename to gtk/glib-networking/smbuild index 6bfde8a..26c4e9f --- a/gtk/glib-networking/glib-networking.SMBuild +++ b/gtk/glib-networking/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild - meson .. --prefix=/ \ + meson .. --prefix=/usr \ -Dlibproxy=disabled ninja diff --git a/gtk/gnome-desktop/gnome-desktop.SMBuild b/gtk/gnome-desktop/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/gnome-desktop/gnome-desktop.SMBuild rename to gtk/gnome-desktop/smbuild index e4d29c1..b701cf5 --- a/gtk/gnome-desktop/gnome-desktop.SMBuild +++ b/gtk/gnome-desktop/smbuild @@ -19,7 +19,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ \ + --prefix=/usr \ -Dbuild_gtk4=false ninja diff --git a/gtk/gnome-icon-theme/gnome-icon-theme.SMBuild b/gtk/gnome-icon-theme/smbuild old mode 100755 new mode 100644 similarity index 81% rename from gtk/gnome-icon-theme/gnome-icon-theme.SMBuild rename to gtk/gnome-icon-theme/smbuild index ac8a182..2c9255c --- a/gtk/gnome-icon-theme/gnome-icon-theme.SMBuild +++ b/gtk/gnome-icon-theme/smbuild @@ -12,10 +12,10 @@ prepbuilddir() { build() { - mkdir -p $pkg/lib/pkgconfig/ + mkdir -p $pkg/usr/lib/pkgconfig/ - cat << EOF >> $pkg/lib/pkgconfig/gnome-icon-theme.pc -prefix= + cat << EOF >> $pkg/usr/lib/pkgconfig/gnome-icon-theme.pc +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include diff --git a/gtk/gnome-themes-extra/gnome-themes-extra.SMBuild b/gtk/gnome-themes-extra/gnome-themes-extra.SMBuild deleted file mode 100755 index 44de6b4..0000000 --- a/gtk/gnome-themes-extra/gnome-themes-extra.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=gnome-themes-extra -version=3.28 -build=2sml -homepage="https://gitlab.gnome.org/GNOME/gnome-themes-extra" -download="https://download.gnome.org/sources/gnome-themes-extra/$version/gnome-themes-extra-$version.tar.xz" -desc="Default collection icons and theme bits used by GTK+ applications" -requires="intltool gtk2 gtk3" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - cp LICENSE $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -eeaaa37d6c9314c37a9455333129affe2a81abac34459555b2d194462218a4d82ae55fb5e645ebe097f5e5a2539553f8a23656a522c875eddcfd14739fc2198d gnome-themes-extra-3.28.tar.lz -" diff --git a/gtk/gobject-introspection/gobject-introspection.SMBuild b/gtk/gobject-introspection/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/gobject-introspection/gobject-introspection.SMBuild rename to gtk/gobject-introspection/smbuild index 22e55e2..6f91ced --- a/gtk/gobject-introspection/gobject-introspection.SMBuild +++ b/gtk/gobject-introspection/smbuild @@ -19,7 +19,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ \ + --prefix=/usr \ --buildtype=release ninja @@ -32,4 +32,4 @@ build() { sha512sums=" d5f0d2467f679a098d51f770aeb607a800969e3144de9ab61de0d40955776d46c7545ea60d45eeeb54404c4ab5bec5238471c97405e5233cf2142e60bec2d381 gobject-introspection-1.76.1.tar.lz -" \ No newline at end of file +" diff --git a/gtk/goffice/goffice.SMBuild b/gtk/goffice/smbuild old mode 100755 new mode 100644 similarity index 67% rename from gtk/goffice/goffice.SMBuild rename to gtk/goffice/smbuild index 0503d31..63058d4 --- a/gtk/goffice/goffice.SMBuild +++ b/gtk/goffice/smbuild @@ -1,9 +1,9 @@ # Maintainer: PktSurf app=goffice -version=0.10.46 +version=0.10.57 build=1sml homepage="https://git.gnome.org/browse/goffice" -download="https://gitlab.gnome.org/GNOME/goffice/-/archive/GOFFICE_0_10_46/goffice-GOFFICE_0_10_46.tar.bz2" +download="https://download.gnome.org/sources/goffice/0.10/goffic-$version.tar.xz" desc="A GLib/GTK+ set of document-centric objects and charting library" requires="intltool libxslt libgsf gtk3" @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= + --prefix=/usr for i in po ; do printf 'all:\n\ttrue\ninstall:\n\ttrue\nclean:\n\ttrue\n' > "$i"/Makefile @@ -33,5 +33,5 @@ build() { } sha512sums=" -2d06889fd8e432d7266de1b17eb0dc7a44911bbea013bcb1eeffa5c4f8ea43421c1c61e6bb8a6dec7dea7fb7fa410d0de0d13a14d5468e911a55d7909fd68f8b goffice-0.10.46.tar.lz -" +f0d3b794d43bf10527582680fa718ac049b93b3d127037c16e885becdf1abe8ebb78d0e19d9b3f3def3edc098b982c0571bc12a35e5da05b4af3e33af717e1dc goffice-0.10.57.tar.lz +" \ No newline at end of file diff --git a/gtk/graphite2/graphite2.SMBuild b/gtk/graphite2/smbuild old mode 100755 new mode 100644 similarity index 95% rename from gtk/graphite2/graphite2.SMBuild rename to gtk/graphite2/smbuild index 403c516..74d554e --- a/gtk/graphite2/graphite2.SMBuild +++ b/gtk/graphite2/smbuild @@ -20,7 +20,7 @@ build() { mkdir -p smbuild && cd smbuild cmake .. \ - -DCMAKE_INSTALL_PREFIX="" \ + -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -Wno-dev diff --git a/gtk/gsettings-desktop-schemas/gsettings-desktop-schemas.SMBuild b/gtk/gsettings-desktop-schemas/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/gsettings-desktop-schemas/gsettings-desktop-schemas.SMBuild rename to gtk/gsettings-desktop-schemas/smbuild index 0ad3904..9f785ea --- a/gtk/gsettings-desktop-schemas/gsettings-desktop-schemas.SMBuild +++ b/gtk/gsettings-desktop-schemas/smbuild @@ -21,7 +21,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ + --prefix=/usr ninja DESTDIR="$pkg" ninja install @@ -33,4 +33,4 @@ build() { sha512sums=" f8ed90a4d85ba4444feacefecab1dbb7731a48fc4c20e5dcccbdc34674ed9ca7b2fa4b0bc696da0db13142d8bcf45ce2979e78e78b39cc8cf39e6a6cacf740a6 gsettings-desktop-schemas-44.0.tar.lz -" \ No newline at end of file +" diff --git a/gtk/gspell/gspell.SMBuild b/gtk/gspell/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/gspell/gspell.SMBuild rename to gtk/gspell/smbuild index 2118576..08c1939 --- a/gtk/gspell/gspell.SMBuild +++ b/gtk/gspell/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= + --prefix=/usr make make install DESTDIR=$pkg diff --git a/gtk/gtk-doc/smbuild b/gtk/gtk-doc/smbuild new file mode 100644 index 0000000..e3ddccc --- /dev/null +++ b/gtk/gtk-doc/smbuild @@ -0,0 +1,36 @@ +# Maintainer: PktSurf +# Generated by mksm SMLinux build file generator version 0.101 +app=gtk-doc +version=1.34.0 +build=1sml +homepage="https://gitlab.gnome.org/GNOME/gtk-doc" +download="https://download.gnome.org/sources/gtk-doc/1.34/gtk-doc-1.34.0.tar.xz" +desc="Code documenter for GNOME" +requires="docbook glib itstool libxslt" + +prepbuilddir() { + mkandenterbuilddir + rm -rf $app-$version + + tar xf $srcdir/$app-$version.tar.?z* + cd $app-$version + fixbuilddirpermissions +} + +build() { + mkdir smbuild && cd smbuild + meson .. \ + --prefix=/usr + + ninja + DESTDIR="$pkg" ninja install + + cp ../LICENSE $pkgdocs/ + + mkfinalpkg +} + + +sha512sums=" +d962fe31949b5f7c70122c7ebbd98f4d21725697804bf5dd75fd7a6662753a91c9350fd1e8bed22a58a957b173f35e200fcbb4c7c2ebc45ccbc0db2e916b27ea gtk-doc-1.34.0.tar.xz +" diff --git a/gtk/gtk2/gtk2.SMBuild b/gtk/gtk2/smbuild old mode 100755 new mode 100644 similarity index 65% rename from gtk/gtk2/gtk2.SMBuild rename to gtk/gtk2/smbuild index 4c29599..3946b00 --- a/gtk/gtk2/gtk2.SMBuild +++ b/gtk/gtk2/smbuild @@ -9,10 +9,10 @@ requires="desktop-file-utils fribidi libxcomposite libxcursor libxdamage libxi l prepbuilddir() { mkandenterbuilddir - rm -rf "gtk+-$version" + rm -rf "gtk-$version" - tar xf $srcdir/gtk+-$version.tar.?z - cd "gtk+-$version" + tar xf $srcdir/gtk-$version.tar.?z + cd "gtk-$version" fixbuilddirpermissions autoreconf @@ -22,13 +22,13 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ - --libdir=/lib \ + --prefix=/usr \ + --sysconfdir=/etc \ --disable-cups \ --enable-xkb \ --disable-gtk-doc \ --disable-gtk-doc-html \ - --disable-gtk-doc-pdf + --disable-gtk-doc-pdf make || /etc/rc.d/rc.gtk make @@ -40,17 +40,16 @@ build() { mv $pkg/etc/gtk-2.0/im-multipress.conf $pkg/etc/gtk-2.0/im-multipress.conf.new # Install a basic gtkrc - mkdir -p $pkg/share/gtk-2.0 - echo 'gtk-theme-name="GTK+"' > $pkg/share/gtk-2.0/gtkrc - echo 'gtk-icon-theme-name="Adwaita"' >> $pkg/share/gtk-2.0/gtkrc - echo 'gtk-fallback-icon-theme = "Tango"' >> $pkg/share/gtk-2.0/gtkrc + mkdir -p $pkg/usr/share/gtk-2.0 + echo 'gtk-theme-name="GTK+"' > $pkg/usr/share/gtk-2.0/gtkrc + echo 'gtk-icon-theme-name="Adwaita"' >> $pkg/usr/share/gtk-2.0/gtkrc + echo 'gtk-fallback-icon-theme = "Tango"' >> $pkg/usr/share/gtk-2.0/gtkrc mkfinalpkg } sha512sums=" -27b7ce8e9f4e3c6613a2d7a9427968ccba71dae4f6c5531a6daf8192bd3f04292dc8a9c33dd5fad3317e45779dded0915cc8e96fd8f0594d70cc556c3e2b8ea6 gtk+-2.24.32.tar.lz -03579690728a2d15d537031de0ed7d4bec539936f00cf956efb012a5cd3fd34d7b751dd276a77d36ac3bb947ce9bed0f888b097037c0d4184b27ba9e32ac7357 gtk-icontheme-fallback.patch +ff0b416da613e6f12ba1120ed7061ebaa7f421003bb32eb281077c89f5cb8a72b2b8a26b9d711cb431e5818b30fd3c8935da453da0774e509d882ee82b0059a1 gtk-2.24.32.tar.lz 95f28633a5164a2a9fec45ee1aa80bd1c07e0c5a7ac8d770b9c74af0909b7286b823eb634aa384cad609dc8799d2e6c9e8392c2732b9093076fdf94b4f6878b7 gtk2-fixdso.patch 89e3223c86731a76b12d39245f1ec4cf8b4860ab1d11d74a10e5deb0db302f20b4bb5d9034da1d8aeb96369dbdeddcdd2f28943270dc501476c694562b960159 xid-collision-debug.patch " diff --git a/gtk/gtk3/charcode.patch b/gtk/gtk3/charcode.patch new file mode 100644 index 0000000..01ee19f --- /dev/null +++ b/gtk/gtk3/charcode.patch @@ -0,0 +1,33 @@ +Patch-Source: https://gitlab.gnome.org/GNOME/gtk/-/commit/6dc75b46cc9afe1c98b7ba72a9b1a275c723ea42 +-- +From 6dc75b46cc9afe1c98b7ba72a9b1a275c723ea42 Mon Sep 17 00:00:00 2001 +From: liiulinsong +Date: Fri, 26 May 2023 10:18:58 +0800 +Subject: [PATCH] Make sure that the charcode is signless + +1. The data with type of char is signed by default. + +2. The byte value of UTF-8 is signless by default. + +3. So, if a UTF-8 charcode is stored in a char array, we should cast the +type of its value from char to unsigned char. +--- + gtk/gtkcssparser.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gtk/gtkcssparser.c b/gtk/gtkcssparser.c +index 44ff7bcfca7..fc8ede28b88 100644 +--- a/gtk/gtkcssparser.c ++++ b/gtk/gtkcssparser.c +@@ -373,7 +373,7 @@ _gtk_css_parser_read_char (GtkCssParser *parser, + parser->data++; + return TRUE; + } +- if (*parser->data >= 127) ++ if ((*(guchar *) parser->data) >= 127) + { + gsize len = g_utf8_skip[(guint) *(guchar *) parser->data]; + +-- +GitLab + diff --git a/gtk/gtk3/dbus-crash.patch b/gtk/gtk3/dbus-crash.patch new file mode 100644 index 0000000..0f0520c --- /dev/null +++ b/gtk/gtk3/dbus-crash.patch @@ -0,0 +1,106 @@ +Patch-Source: https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/6180 +https://gitlab.gnome.org/GNOME/gtk/-/issues/5775 +-- +From 7ca33ff9941ad8565979eb0873c8bc14e31397d2 Mon Sep 17 00:00:00 2001 +From: Luca Bacci +Date: Tue, 11 Jul 2023 10:33:08 +0200 +Subject: [PATCH] GtkApplicationImplDBus: Cancel DBus method calls on shutdown + +We do that for method calls where a non-NULL GAsyncReadyCallback +is passed. + +Fixes #5775 +--- + gtk/gtkapplication-dbus.c | 21 +++++++++++++++------ + gtk/gtkapplicationprivate.h | 1 + + 2 files changed, 16 insertions(+), 6 deletions(-) + +diff --git a/gtk/gtkapplication-dbus.c b/gtk/gtkapplication-dbus.c +index 2c9a1a78efb..a663aede49b 100644 +--- a/gtk/gtkapplication-dbus.c ++++ b/gtk/gtkapplication-dbus.c +@@ -248,8 +248,10 @@ ss_get_active_cb (GObject *source, + ret = g_dbus_proxy_call_finish (proxy, result, &error); + if (ret == NULL) + { +- g_warning ("Getting screensaver status failed: %s", error->message); +- g_error_free (error); ++ if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) ++ g_warning ("Getting screensaver status failed: %s", ++ error ? error->message : ""); ++ g_clear_error (&error); + return; + } + +@@ -270,8 +272,10 @@ create_monitor_cb (GObject *source, + ret = g_dbus_proxy_call_finish (proxy, result, &error); + if (ret == NULL) + { +- g_warning ("Creating a portal monitor failed: %s", error->message); +- g_error_free (error); ++ if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) ++ g_warning ("Creating a portal monitor failed: %s", ++ error ? error->message : ""); ++ g_clear_error (&error); + return; + } + +@@ -302,6 +306,8 @@ gtk_application_impl_dbus_startup (GtkApplicationImpl *impl, + if (gtk_should_use_portal ()) + goto out; + ++ dbus->cancellable = g_cancellable_new (); ++ + g_debug ("Connecting to session manager"); + + /* Try the GNOME session manager first */ +@@ -368,7 +374,7 @@ gtk_application_impl_dbus_startup (GtkApplicationImpl *impl, + NULL, + G_DBUS_CALL_FLAGS_NONE, + G_MAXINT, +- NULL, ++ dbus->cancellable, + ss_get_active_cb, + dbus); + } +@@ -515,7 +521,7 @@ gtk_application_impl_dbus_startup (GtkApplicationImpl *impl, + g_variant_new ("(sa{sv})", "", &opt_builder), + G_DBUS_CALL_FLAGS_NONE, + G_MAXINT, +- NULL, ++ dbus->cancellable, + create_monitor_cb, dbus); + g_free (token); + } +@@ -527,6 +533,8 @@ end:; + static void + gtk_application_impl_dbus_shutdown (GtkApplicationImpl *impl) + { ++ GtkApplicationImplDBus *dbus = (GtkApplicationImplDBus *) impl; ++ g_cancellable_cancel (dbus->cancellable); + } + + GQuark gtk_application_impl_dbus_export_id_quark (void); +@@ -902,6 +910,7 @@ gtk_application_impl_dbus_finalize (GObject *object) + if (dbus->ss_proxy) + g_signal_handlers_disconnect_by_func (dbus->ss_proxy, screensaver_signal_session, dbus->impl.application); + g_clear_object (&dbus->ss_proxy); ++ g_clear_object (&dbus->cancellable); + + G_OBJECT_CLASS (gtk_application_impl_dbus_parent_class)->finalize (object); + } +diff --git a/gtk/gtkapplicationprivate.h b/gtk/gtkapplicationprivate.h +index 01b674a709a..c76b2e8840f 100644 +--- a/gtk/gtkapplicationprivate.h ++++ b/gtk/gtkapplicationprivate.h +@@ -117,6 +117,7 @@ typedef struct + GtkApplicationImpl impl; + + GDBusConnection *session; ++ GCancellable *cancellable; + + const gchar *application_id; + const gchar *unique_name; +-- +GitLab + diff --git a/gtk/gtk3/glsync-fix.patch b/gtk/gtk3/glsync-fix.patch new file mode 100644 index 0000000..9ba15dc --- /dev/null +++ b/gtk/gtk3/glsync-fix.patch @@ -0,0 +1,119 @@ +Patch-Source: https://gitlab.gnome.org/GNOME/gtk/-/commit/cf7decae1a1a2af825caca8da018ce09cd9ce31a +https://gitlab.gnome.org/GNOME/gtk/-/issues/5749 +-- +From cf7decae1a1a2af825caca8da018ce09cd9ce31a Mon Sep 17 00:00:00 2001 +From: Benjamin Otte +Date: Sat, 1 Jul 2023 22:46:47 +0200 +Subject: [PATCH] gdkgl: Check for GLsync before using it + +Copy what we do in GTK4: Check for GL >= 3.2 or GLES >= 3.0 or the +GL_ARB_sync extension. +Then store that info for a (private) gdk_gl_context_has_sync() +function. +And then check that function before using GLsync objects as introduced +by commit 9811485990b. + +Fixes #5749 +--- + gdk/gdkgl.c | 10 +++++++--- + gdk/gdkglcontext.c | 13 +++++++++++++ + gdk/gdkglcontextprivate.h | 1 + + 3 files changed, 21 insertions(+), 3 deletions(-) + +diff --git a/gdk/gdkgl.c b/gdk/gdkgl.c +index 86b169039a8..d3b460b4b71 100644 +--- a/gdk/gdkgl.c ++++ b/gdk/gdkgl.c +@@ -341,7 +341,7 @@ gdk_cairo_draw_from_gl (cairo_t *cr, + int width, + int height) + { +- GdkGLContext *paint_context; ++ GdkGLContext *paint_context, *current_context; + cairo_surface_t *image; + cairo_matrix_t matrix; + int dx, dy, window_scale; +@@ -352,7 +352,7 @@ gdk_cairo_draw_from_gl (cairo_t *cr, + int alpha_size = 0; + cairo_region_t *clip_region; + GdkGLContextPaintData *paint_data; +- GLsync sync = NULL; ++ GLsync sync; + + impl_window = window->impl_window; + +@@ -366,9 +366,13 @@ gdk_cairo_draw_from_gl (cairo_t *cr, + } + + clip_region = gdk_cairo_region_from_clip (cr); ++ current_context = gdk_gl_context_get_current (); + +- if ((gdk_gl_context_get_current () != NULL) && (gdk_gl_context_get_current () != paint_context)) ++ if ((current_context != NULL) && (current_context != paint_context) && ++ gdk_gl_context_has_sync (current_context)) + sync = glFenceSync (GL_SYNC_GPU_COMMANDS_COMPLETE, 0); ++ else ++ sync = NULL; + + gdk_gl_context_make_current (paint_context); + +diff --git a/gdk/gdkglcontext.c b/gdk/gdkglcontext.c +index 3b23639e1ce..4c137a8d5dd 100644 +--- a/gdk/gdkglcontext.c ++++ b/gdk/gdkglcontext.c +@@ -101,6 +101,7 @@ typedef struct { + guint has_gl_framebuffer_blit : 1; + guint has_frame_terminator : 1; + guint has_unpack_subimage : 1; ++ guint has_sync : 1; + guint extensions_checked : 1; + guint debug_enabled : 1; + guint forward_compatible : 1; +@@ -441,6 +442,14 @@ gdk_gl_context_has_unpack_subimage (GdkGLContext *context) + return priv->has_unpack_subimage; + } + ++gboolean ++gdk_gl_context_has_sync (GdkGLContext *context) ++{ ++ GdkGLContextPrivate *priv = gdk_gl_context_get_instance_private (context); ++ ++ return priv->has_sync; ++} ++ + /** + * gdk_gl_context_set_debug_enabled: + * @context: a #GdkGLContext +@@ -809,6 +818,7 @@ gdk_gl_context_check_extensions (GdkGLContext *context) + priv->has_frame_terminator = FALSE; + + priv->has_unpack_subimage = epoxy_has_gl_extension ("GL_EXT_unpack_subimage"); ++ priv->has_sync = priv->gl_version >= 30; + } + else + { +@@ -818,6 +828,9 @@ gdk_gl_context_check_extensions (GdkGLContext *context) + priv->has_gl_framebuffer_blit = priv->gl_version >= 30 || epoxy_has_gl_extension ("GL_EXT_framebuffer_blit"); + priv->has_frame_terminator = epoxy_has_gl_extension ("GL_GREMEDY_frame_terminator"); + priv->has_unpack_subimage = TRUE; ++ priv->has_sync = priv->gl_version >= 32 || ++ epoxy_has_gl_extension ("GL_ARB_sync") || ++ epoxy_has_gl_extension ("GL_APPLE_sync"); + + /* We asked for a core profile, but we didn't get one, so we're in legacy mode */ + if (priv->gl_version < 32) +diff --git a/gdk/gdkglcontextprivate.h b/gdk/gdkglcontextprivate.h +index cb0b76793fa..94ecb34d30b 100644 +--- a/gdk/gdkglcontextprivate.h ++++ b/gdk/gdkglcontextprivate.h +@@ -86,6 +86,7 @@ gboolean gdk_gl_context_use_texture_rectangle (GdkGLContext + gboolean gdk_gl_context_has_framebuffer_blit (GdkGLContext *context); + gboolean gdk_gl_context_has_frame_terminator (GdkGLContext *context); + gboolean gdk_gl_context_has_unpack_subimage (GdkGLContext *context); ++gboolean gdk_gl_context_has_sync (GdkGLContext *context); + void gdk_gl_context_end_frame (GdkGLContext *context, + cairo_region_t *painted, + cairo_region_t *damage); +-- +GitLab + diff --git a/gtk/gtk3/offscreen-crash.patch b/gtk/gtk3/offscreen-crash.patch new file mode 100644 index 0000000..23b3b6e --- /dev/null +++ b/gtk/gtk3/offscreen-crash.patch @@ -0,0 +1,78 @@ +Patch-Source: https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/6184 +https://gitlab.gnome.org/GNOME/gimp/-/issues/6711 +-- +From 3e3266dce4a8aed453f296ca8043e3574ff29f63 Mon Sep 17 00:00:00 2001 +From: Luca Bacci +Date: Thu, 13 Jul 2023 15:31:05 +0200 +Subject: [PATCH 1/2] GdkWindow: Check for offscreen windows in + set_transient_for () + +Fixes https://gitlab.gnome.org/GNOME/gimp/-/issues/6711 +--- + gdk/gdkwindow.c | 7 +++++++ + 1 file changed, 7 insertions(+) + +diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c +index 727b0cf1f43..62d488d7594 100644 +--- a/gdk/gdkwindow.c ++++ b/gdk/gdkwindow.c +@@ -10542,6 +10542,13 @@ void + gdk_window_set_transient_for (GdkWindow *window, + GdkWindow *parent) + { ++ if (!gdk_window_is_offscreen (window) && ++ parent != NULL && ++ gdk_window_is_offscreen (parent)) ++ { ++ return; ++ } ++ + window->transient_for = parent; + + GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_transient_for (window, parent); +-- +GitLab + + +From 272b6b4febb3e293239e178410f87abcad85ba2d Mon Sep 17 00:00:00 2001 +From: Luca Bacci +Date: Thu, 13 Jul 2023 16:24:55 +0200 +Subject: [PATCH 2/2] GtkMenu: Take offscreen windows in account for + positioning + +--- + gtk/gtkmenu.c | 18 ++++++++++++++++++ + 1 file changed, 18 insertions(+) + +diff --git a/gtk/gtkmenu.c b/gtk/gtkmenu.c +index eac972bb41b..3f1a7bc9fac 100644 +--- a/gtk/gtkmenu.c ++++ b/gtk/gtkmenu.c +@@ -5263,6 +5263,24 @@ gtk_menu_position (GtkMenu *menu, + } + } + ++ if (rect_window != NULL && ++ GDK_WINDOW_TYPE (rect_window) == GDK_WINDOW_OFFSCREEN) ++ { ++ GdkWindow *effective = gdk_offscreen_window_get_embedder (rect_window); ++ ++ if (effective) ++ { ++ double x = rect.x, y = rect.y; ++ ++ gdk_window_coords_to_parent (rect_window, x, y, &x, &y); ++ ++ rect.x = x; ++ rect.y = y; ++ } ++ ++ rect_window = effective; ++ } ++ + if (!rect_window) + { + gtk_window_set_unlimited_guessed_size (GTK_WINDOW (priv->toplevel), +-- +GitLab + diff --git a/gtk/gtk3/pad-fix.patch b/gtk/gtk3/pad-fix.patch new file mode 100644 index 0000000..8c52ec3 --- /dev/null +++ b/gtk/gtk3/pad-fix.patch @@ -0,0 +1,271 @@ +Patch-Source: https://gitlab.gnome.org/GNOME/gtk/-/commit/7141305972a73559c97730e17d38a0a7440f3599 +https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/6095 +-- +From 6070f1092258e053ecdbe2dbf6148d2dd9d8b326 Mon Sep 17 00:00:00 2001 +From: Carlos Garnacho +Date: Tue, 13 Jun 2023 22:11:15 +0200 +Subject: [PATCH 1/3] gdk/wayland: Create pad devices on enter + +We were creating the pad device on wp_tablet_pad.done, but +at that time we do not know what tablet it is associated with, +thus we cannot get appropriate vid/pid/name properties for it. + +To get that, we need to wait for the pad to enter a surface, +at that time we do know what tablet it is associated with, so +we can get better information about the device. + +There are pads that may plausibly "change" tablet between +one .enter event and the next (e.g. Wacom Express Key Remote), +but this situation is highly unlikely. The pad devices created +are thus persistent until that situation happens. +--- + gdk/wayland/gdkdevice-wayland.c | 86 ++++++++++++++++++++++----------- + 1 file changed, 57 insertions(+), 29 deletions(-) + +diff --git a/gdk/wayland/gdkdevice-wayland.c b/gdk/wayland/gdkdevice-wayland.c +index 9dc86a32578..7e7beac9d1e 100644 +--- a/gdk/wayland/gdkdevice-wayland.c ++++ b/gdk/wayland/gdkdevice-wayland.c +@@ -2921,13 +2921,17 @@ _gdk_wayland_seat_remove_tablet_pad (GdkWaylandSeat *seat, + + seat->tablet_pads = g_list_remove (seat->tablet_pads, pad); + +- device_manager->devices = +- g_list_remove (device_manager->devices, pad->device); +- g_signal_emit_by_name (device_manager, "device-removed", pad->device); ++ if (pad->device) ++ { ++ device_manager->devices = ++ g_list_remove (device_manager->devices, pad->device); ++ g_signal_emit_by_name (device_manager, "device-removed", pad->device); + +- _gdk_device_set_associated_device (pad->device, NULL); ++ _gdk_device_set_associated_device (pad->device, NULL); ++ ++ g_object_unref (pad->device); ++ } + +- g_object_unref (pad->device); + g_free (pad); + } + +@@ -4439,27 +4443,8 @@ static void + tablet_pad_handle_done (void *data, + struct zwp_tablet_pad_v2 *wp_tablet_pad) + { +- GdkWaylandTabletPadData *pad = data; +- GdkWaylandSeat *seat = GDK_WAYLAND_SEAT (pad->seat); +- GdkWaylandDeviceManager *device_manager = +- GDK_WAYLAND_DEVICE_MANAGER (seat->device_manager); +- + GDK_NOTE (EVENTS, + g_message ("tablet pad handle done, pad = %p", wp_tablet_pad)); +- +- pad->device = +- g_object_new (GDK_TYPE_WAYLAND_DEVICE_PAD, +- "name", "Pad device", +- "type", GDK_DEVICE_TYPE_SLAVE, +- "input-source", GDK_SOURCE_TABLET_PAD, +- "input-mode", GDK_MODE_SCREEN, +- "display", gdk_seat_get_display (pad->seat), +- "device-manager", device_manager, +- "seat", seat, +- NULL); +- +- _gdk_device_set_associated_device (pad->device, seat->master_keyboard); +- g_signal_emit_by_name (device_manager, "device-added", pad->device); + } + + static void +@@ -4506,14 +4491,60 @@ tablet_pad_handle_enter (void *data, + { + GdkWaylandTabletPadData *pad = data; + GdkWaylandTabletData *tablet = zwp_tablet_v2_get_user_data (wp_tablet); ++ GdkWaylandSeat *seat = GDK_WAYLAND_SEAT (pad->seat); ++ GdkWaylandDeviceManager *device_manager = ++ GDK_WAYLAND_DEVICE_MANAGER (seat->device_manager); + + GDK_NOTE (EVENTS, + g_message ("tablet pad handle enter, pad = %p, tablet = %p surface = %p", + wp_tablet_pad, wp_tablet, surface)); + ++ if (pad->device && pad->current_tablet != tablet) ++ { ++ device_manager->devices = ++ g_list_remove (device_manager->devices, pad->device); ++ g_signal_emit_by_name (device_manager, "device-removed", pad->device); ++ _gdk_device_set_associated_device (pad->device, NULL); ++ g_clear_object (&pad->device); ++ } ++ + /* Relate pad and tablet */ +- tablet->pads = g_list_prepend (tablet->pads, pad); ++ tablet->pads = g_list_append (tablet->pads, pad); + pad->current_tablet = tablet; ++ ++ if (!pad->device) ++ { ++ GdkWaylandTabletPadData *pad = data; ++ gchar *name, *vid, *pid; ++ ++ name = g_strdup_printf ("%s Pad %d", ++ tablet->name, ++ g_list_index (tablet->pads, pad) + 1); ++ vid = g_strdup_printf ("%.4x", tablet->vid); ++ pid = g_strdup_printf ("%.4x", tablet->pid); ++ ++ pad->device = ++ g_object_new (GDK_TYPE_WAYLAND_DEVICE_PAD, ++ "name", name, ++ "vendor-id", vid, ++ "product-id", pid, ++ "type", GDK_DEVICE_TYPE_SLAVE, ++ "input-source", GDK_SOURCE_TABLET_PAD, ++ "input-mode", GDK_MODE_SCREEN, ++ "display", gdk_seat_get_display (pad->seat), ++ "device-manager", device_manager, ++ "seat", seat, ++ NULL); ++ ++ _gdk_device_set_associated_device (pad->device, seat->master_keyboard); ++ device_manager->devices = ++ g_list_prepend (device_manager->devices, pad->device); ++ g_signal_emit_by_name (device_manager, "device-added", pad->device); ++ ++ g_free (name); ++ g_free (vid); ++ g_free (pid); ++ } + } + + static void +@@ -4529,10 +4560,7 @@ tablet_pad_handle_leave (void *data, + wp_tablet_pad, surface)); + + if (pad->current_tablet) +- { +- pad->current_tablet->pads = g_list_remove (pad->current_tablet->pads, pad); +- pad->current_tablet = NULL; +- } ++ pad->current_tablet->pads = g_list_remove (pad->current_tablet->pads, pad); + } + + static void +-- +GitLab + + +From 81029b824b39122704a9bd615dc7b03886516843 Mon Sep 17 00:00:00 2001 +From: Carlos Garnacho +Date: Tue, 13 Jun 2023 22:52:48 +0200 +Subject: [PATCH 2/3] gdk/wayland: Ensure device-added/removed emission in + GdkSeat + +We've used to emit these in the GdkDeviceManager, but missed to do +this signal emission at the GdkSeat object level. In order to avoid +the double emission, trigger one from the other. +--- + gdk/wayland/gdkdevice-wayland.c | 27 +++++++++++++++++++++++++++ + 1 file changed, 27 insertions(+) + +diff --git a/gdk/wayland/gdkdevice-wayland.c b/gdk/wayland/gdkdevice-wayland.c +index 7e7beac9d1e..dd7db81cf1b 100644 +--- a/gdk/wayland/gdkdevice-wayland.c ++++ b/gdk/wayland/gdkdevice-wayland.c +@@ -5181,6 +5181,22 @@ init_pointer_data (GdkWaylandPointerData *pointer_data, + master); + } + ++static void ++device_manager_device_added (GdkDeviceManager *device_manager, ++ GdkDevice *device, ++ GdkSeat *seat) ++{ ++ g_signal_emit_by_name (seat, "device-added", device); ++} ++ ++static void ++device_manager_device_removed (GdkDeviceManager *device_manager, ++ GdkDevice *device, ++ GdkSeat *seat) ++{ ++ g_signal_emit_by_name (seat, "device-removed", device); ++} ++ + void + _gdk_wayland_device_manager_add_seat (GdkDeviceManager *device_manager, + guint32 id, +@@ -5249,6 +5265,11 @@ _gdk_wayland_device_manager_add_seat (GdkDeviceManager *device_manager, + seat); + } + ++ g_signal_connect (seat->device_manager, "device-added", ++ G_CALLBACK (device_manager_device_added), seat); ++ g_signal_connect (seat->device_manager, "device-removed", ++ G_CALLBACK (device_manager_device_removed), seat); ++ + gdk_display_add_seat (display, GDK_SEAT (seat)); + } + +@@ -5268,6 +5289,12 @@ _gdk_wayland_device_manager_remove_seat (GdkDeviceManager *manager, + if (seat->id != id) + continue; + ++ g_signal_handlers_disconnect_by_func (manager, ++ device_manager_device_added, ++ seat); ++ g_signal_handlers_disconnect_by_func (manager, ++ device_manager_device_removed, ++ seat); + gdk_display_remove_seat (display, GDK_SEAT (seat)); + break; + } +-- +GitLab + + +From a9d7198d63d14e049c399914f11ddd37fc034f3a Mon Sep 17 00:00:00 2001 +From: Carlos Garnacho +Date: Tue, 13 Jun 2023 22:54:23 +0200 +Subject: [PATCH 3/3] gdk/wayland: Return pad devices querying for all devices + +These devices unfortunately didn't ever get a capability flag in +3.24 (fixed in GTK4). We are very far off into maintenance grounds that +it is not ideal to add new flag values, but we could however return +these devices if GDK_SEAT_CAPABILITY_ALL is being asked. + +Do that, so it is possible to deal with pad devices, even if it's +not possible to query them specifically. +--- + gdk/wayland/gdkdevice-wayland.c | 15 +++++++++++++++ + 1 file changed, 15 insertions(+) + +diff --git a/gdk/wayland/gdkdevice-wayland.c b/gdk/wayland/gdkdevice-wayland.c +index dd7db81cf1b..a1e4771a74e 100644 +--- a/gdk/wayland/gdkdevice-wayland.c ++++ b/gdk/wayland/gdkdevice-wayland.c +@@ -5141,6 +5141,21 @@ gdk_wayland_seat_get_slaves (GdkSeat *seat, + } + } + ++ /* There is no specific capability for pads, return ++ * them anyways if all devices are requested ++ */ ++ if (capabilities == GDK_SEAT_CAPABILITY_ALL) ++ { ++ GList *l; ++ ++ for (l = wayland_seat->tablet_pads; l; l = l->next) ++ { ++ GdkWaylandTabletPadData *pad = l->data; ++ ++ slaves = g_list_prepend (slaves, pad->device); ++ } ++ } ++ + return slaves; + } + +-- +GitLab + diff --git a/gtk/gtk3/password-segv.patch b/gtk/gtk3/password-segv.patch new file mode 100644 index 0000000..e93408f --- /dev/null +++ b/gtk/gtk3/password-segv.patch @@ -0,0 +1,62 @@ +Patch-Source: https://gitlab.gnome.org/GNOME/gtk/-/commit/1d95b8ab2646b3e36a1c1b23b771c4f145be13fc +https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/6049 +-- +From 1d95b8ab2646b3e36a1c1b23b771c4f145be13fc Mon Sep 17 00:00:00 2001 +From: Martin Wilck +Date: Fri, 2 Jun 2023 15:16:58 +0200 +Subject: [PATCH] gtkmountoperation: avoid SEGV after bad password input + +I observed the following nautilus crash below after trying to access an SMB +share and mistyping my password (it also happens if mounting the SMB share +fails for other reasons after entering a password). The crash happens when +the password entry window pops up the second time, in this code path, at +the 7th element of priv->user_widgets: + +458 pw_dialog_anonymous_toggled (GtkWidget *widget, +459 GtkMountOperation *operation) +460 { +... +472 for (l = priv->user_widgets; l != NULL; l = l->next) +473 { +474 gtk_widget_set_sensitive (GTK_WIDGET (l->data), !priv->anonymous); +475 } + +The broken element had l->data = 0xaaaaaaaaaaaa, which means the pointer had +been freed. + +The broken list entries were at the of the list because when +gtk_mount_operation_ask_password_do_gtk() constucts the pop-up the 2nd time, +it prepends new widgets: + +gtk_mount_operation_ask_password_do_gtk() + table_add_entry + operation->priv->user_widgets = g_list_prepend (operation->priv->user_widgets, entry); + +The problem is that in pw_dialog_got_response(), the widget is destroyed, +which also destroys all child widgets, but the priv->user_widgets list is +neither freed nor set to NULL. + +Fix it. +--- + gtk/gtkmountoperation.c | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/gtk/gtkmountoperation.c b/gtk/gtkmountoperation.c +index 2cf7e75d584..e6b50c9b6ef 100644 +--- a/gtk/gtkmountoperation.c ++++ b/gtk/gtkmountoperation.c +@@ -380,6 +380,11 @@ pw_dialog_got_response (GtkDialog *dialog, + else + g_mount_operation_reply (op, G_MOUNT_OPERATION_ABORTED); + ++ if (priv->user_widgets) ++ { ++ g_list_free (priv->user_widgets); ++ priv->user_widgets = NULL; ++ } + priv->dialog = NULL; + g_object_notify (G_OBJECT (op), "is-showing"); + gtk_widget_destroy (GTK_WIDGET (dialog)); +-- +GitLab + diff --git a/gtk/gtk3/gtk3.SMBuild b/gtk/gtk3/smbuild old mode 100755 new mode 100644 similarity index 74% rename from gtk/gtk3/gtk3.SMBuild rename to gtk/gtk3/smbuild index 037332b..899c9a8 --- a/gtk/gtk3/gtk3.SMBuild +++ b/gtk/gtk3/smbuild @@ -1,7 +1,7 @@ # Maintainer: PktSurf app=gtk3 version=3.24.38 -build=1sml +build=3sml homepage="https://gtk.org" download="https://gitlab.gnome.org/GNOME/gtk/-/archive/$version/gtk-$version.tar.bz2" desc="GObject-based multi-platform GUI toolkit" @@ -14,15 +14,26 @@ prepbuilddir() { tar xf $srcdir/gtk+-$version.tar.?z cd "gtk+-$version" fixbuilddirpermissions + + applypatch $srcdir/charcode.patch + applypatch $srcdir/dbus-crash.patch + applypatch $srcdir/glsync-fix.patch + applypatch $srcdir/offscreen-crash.patch + applypatch $srcdir/pad-fix.patch + applypatch $srcdir/password-segv.patch + applypatch $srcdir/stylus-map.patch + applypatch $srcdir/x11-perf.patch } build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ \ + --prefix=/usr \ -Dgtk_doc=false \ -Dman=false \ -Dbroadway_backend=true \ + -Dx11_backend=true \ + -Dwayland_backend=true \ -Dtests=false ninja @@ -41,4 +52,5 @@ build() { sha512sums=" 1d2d05759614520b6d80f0992343c0c81811b712e36b6d9ec007ae2da9ff41785c9645902af8fc8b1825dd136720168a0fa4d7264c63b8826b866ba019b3de32 gtk+-3.24.38.tar.lz -" \ No newline at end of file +" + diff --git a/gtk/gtk3/stylus-map.patch b/gtk/gtk3/stylus-map.patch new file mode 100644 index 0000000..bbe31be --- /dev/null +++ b/gtk/gtk3/stylus-map.patch @@ -0,0 +1,41 @@ +Patch-Source: https://gitlab.gnome.org/GNOME/gtk/-/commit/e205bdaa89342bb1d47527be0cdfbc1bfb0f5f59 +https://gitlab.gnome.org/GNOME/gtk/-/issues/5935 +-- +From e205bdaa89342bb1d47527be0cdfbc1bfb0f5f59 Mon Sep 17 00:00:00 2001 +From: Carlos Garnacho +Date: Wed, 5 Jul 2023 16:24:03 +0200 +Subject: [PATCH] gdk/wayland: Switch behavior of BTN_STYLUS/STYLUS2 as + middle/right click + +This mapping of stylus evdev input event codes into GDK button numbers +makes gdk/wayland inconsistent with gdk/x11, so depending on the backend +the same button middle-click pastes or right-click pops up menus. + +Make the wayland backend consistent with X11, so that a GNOME wayland +session gets these buttons consistently mapped across all kinds of +clients. + +(cherry-picked from commit e28ff79bec53ecd56885390ba4a66019cde598c6) +--- + gdk/wayland/gdkdevice-wayland.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/gdk/wayland/gdkdevice-wayland.c b/gdk/wayland/gdkdevice-wayland.c +index a1e4771a74e..38c2e61efad 100644 +--- a/gdk/wayland/gdkdevice-wayland.c ++++ b/gdk/wayland/gdkdevice-wayland.c +@@ -3963,9 +3963,9 @@ tablet_tool_handle_button (void *data, + tablet->pointer_info.press_serial = serial; + + if (button == BTN_STYLUS) +- n_button = GDK_BUTTON_SECONDARY; +- else if (button == BTN_STYLUS2) + n_button = GDK_BUTTON_MIDDLE; ++ else if (button == BTN_STYLUS2) ++ n_button = GDK_BUTTON_SECONDARY; + else if (button == BTN_STYLUS3) + n_button = 8; /* Back */ + else +-- +GitLab + diff --git a/gtk/gtk3/x11-perf.patch b/gtk/gtk3/x11-perf.patch new file mode 100644 index 0000000..cc07cf8 --- /dev/null +++ b/gtk/gtk3/x11-perf.patch @@ -0,0 +1,72 @@ +Patch-Source: https://gitlab.gnome.org/GNOME/gtk/-/commit/7237f5d0eb5ec2f1411a28b9394ff4c4472f4d8b +https://gitlab.gnome.org/GNOME/gtk/-/issues/4704 +-- +From 7237f5d0eb5ec2f1411a28b9394ff4c4472f4d8b Mon Sep 17 00:00:00 2001 +From: henry +Date: Wed, 31 May 2023 23:05:19 +0100 +Subject: [PATCH] This commit fixes a performance issue on X11 systems in + regards to drawing on an OpenGL surface in GTK/GDK. + +This commit fixes a performance issue on X11 systems making use of the gdk_cairo_draw_from_gl() function in regards +to drawing on an OpenGL surface in GTK/GDK. Specifically, this fix removes the slow X11 codepath that was used when +executing the gdk_cairo_draw_from_gl() function because it was completely uneeded. I tested the before and after on +Flutter and GTK apps making use of the OpenGL rendering and can confirm that there is no behaviour and visual +difference. This change is also specific to drawings that make use of textures. The render buffer code path has +been left completely unmodified. + +Closes #4704 +--- + gdk/gdkgl.c | 30 +----------------------------- + 1 file changed, 1 insertion(+), 29 deletions(-) + +diff --git a/gdk/gdkgl.c b/gdk/gdkgl.c +index 666b5e81335..86b169039a8 100644 +--- a/gdk/gdkgl.c ++++ b/gdk/gdkgl.c +@@ -392,11 +392,7 @@ gdk_cairo_draw_from_gl (cairo_t *cr, + else if (source_type == GL_TEXTURE) + { + glBindTexture (GL_TEXTURE_2D, source); +- +- if (gdk_gl_context_get_use_es (paint_context)) +- alpha_size = 1; +- else +- glGetTexLevelParameteriv (GL_TEXTURE_2D, 0, GL_TEXTURE_ALPHA_SIZE, &alpha_size); ++ glGetTexLevelParameteriv (GL_TEXTURE_2D, 0, GL_TEXTURE_ALPHA_SIZE, &alpha_size); + } + else + { +@@ -540,30 +536,6 @@ gdk_cairo_draw_from_gl (cairo_t *cr, + /* Translate to impl coords */ + cairo_region_translate (clip_region, dx, dy); + +- if (alpha_size != 0) +- { +- cairo_region_t *opaque_region, *blend_region; +- +- opaque_region = cairo_region_copy (clip_region); +- cairo_region_subtract (opaque_region, impl_window->current_paint.flushed_region); +- cairo_region_subtract (opaque_region, impl_window->current_paint.need_blend_region); +- +- if (!cairo_region_is_empty (opaque_region)) +- gdk_gl_texture_from_surface (impl_window->current_paint.surface, +- opaque_region); +- +- blend_region = cairo_region_copy (clip_region); +- cairo_region_intersect (blend_region, impl_window->current_paint.need_blend_region); +- +- glEnable (GL_BLEND); +- if (!cairo_region_is_empty (blend_region)) +- gdk_gl_texture_from_surface (impl_window->current_paint.surface, +- blend_region); +- +- cairo_region_destroy (opaque_region); +- cairo_region_destroy (blend_region); +- } +- + glBindTexture (GL_TEXTURE_2D, source); + + if (gdk_gl_context_get_use_es (paint_context)) +-- +GitLab + diff --git a/gtk/gtksourceview/smbuild b/gtk/gtksourceview/smbuild new file mode 100644 index 0000000..65bc0cf --- /dev/null +++ b/gtk/gtksourceview/smbuild @@ -0,0 +1,36 @@ +# Maintainer: PktSurf +app=gtksourceview +version=3.24.11 +build=1sml +homepage="http://projects.gnome.org/gtksourceview/" +download="https://gitlab.gnome.org/GNOME/gtksourceview/-/archive/$version/gtksourceview-$version.tar.bz2" +desc="A text widget adding syntax highlighting and more to GNOME" +requires="libxml2 vala gobject-introspection gtk3" + +prepbuilddir() { + mkandenterbuilddir + rm -rf $app-$version + + tar xf $srcdir/$app-$version.tar.?z* + cd $app-$version + fixbuilddirpermissions +} + +build() { + ./configure \ + --prefix=/usr \ + --disable-gtk-doc \ + --disable-gtk-doc-html \ + --disable-gtk-doc-pdf + + make + make install DESTDIR=$pkg + + cp COPYING $pkgdocs/ + + mkfinalpkg +} + +sha512sums=" +f680e94d8f25356703706f2a7f63afdc9ccea374a137d18df4e9a16c0658431ce357a51311b8740f9263353dea4591b174dbb81532b667219abfad3e1c09efdb gtksourceview-3.24.11.tar.lz +" diff --git a/gtk/gtkspell/gtkspell.SMBuild b/gtk/gtkspell/gtkspell.SMBuild deleted file mode 100755 index 01e8b9f..0000000 --- a/gtk/gtkspell/gtkspell.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=gtkspell -version=2.0.16 -build=1sml -homepage="https://gtkspell.sourceforge.net/" -download="https://gtkspell.sourceforge.net/download/gtkspell-$version.tar.gz" -desc="Provides word-processor-style misspelling highlighting and replacement library for Gtk apps" -requires="intltool enchant gtk2" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/enchant-2.diff -} - -build() { - ./configure \ - --prefix= \ - --disable-static \ - $builddist - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -e61d3760a78886ebdb78bddd71feacaa7841a982ee923ec47bae21ec3cb00fd5fbde6b4b09f14550bf731aaa7130bcae9ad66f8b407f618f601ae68a1e4cb995 gtkspell-2.0.16.tar.lz -4ba4427ee59f1c439ed33b53b4022295165b9a4a1a0bdd212ed459cea23b1f04d1bdb988e2316ea4a1d1bd75e492408232908524dacad3b5ee2ffe7a55677d77 enchant-2.diff -" diff --git a/gtk/harfbuzz/harfbuzz.SMBuild b/gtk/harfbuzz/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/harfbuzz/harfbuzz.SMBuild rename to gtk/harfbuzz/smbuild index 7729b79..af6720d --- a/gtk/harfbuzz/harfbuzz.SMBuild +++ b/gtk/harfbuzz/smbuild @@ -19,7 +19,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ \ + --prefix=/usr \ -Dgraphite2=enabled ninja @@ -32,4 +32,4 @@ build() { sha512sums=" 29865c2d973f5251706cf428824ea30a6fc09086146afecca7ffd5927d2c0c9818639238249757bee064b4ddcc919d7b43bef058405811427b24e96fda94a789 harfbuzz-7.3.0.tar.lz -" \ No newline at end of file +" diff --git a/gtk/hicolor-icon-theme/hicolor-icon-theme.SMBuild b/gtk/hicolor-icon-theme/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/hicolor-icon-theme/hicolor-icon-theme.SMBuild rename to gtk/hicolor-icon-theme/smbuild index d9c48ce..f33fd1c --- a/gtk/hicolor-icon-theme/hicolor-icon-theme.SMBuild +++ b/gtk/hicolor-icon-theme/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= + --prefix=/usr make make install DESTDIR=$pkg diff --git a/gtk/keybinder/keybinder.SMBuild b/gtk/keybinder/keybinder.SMBuild deleted file mode 100755 index e6fc6e4..0000000 --- a/gtk/keybinder/keybinder.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=keybinder -version=0.3.1 -build=2sml -homepage="https://github.com/kupferlauncher/keybinder" -download="https://github.com/kupferlauncher/keybinder/archive/refs/tags/v$version.tar.gz" -desc="Library for registering global keyboard shortcuts" -requires="gobject-introspection gtk2" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --disable-python \ - --disable-lua \ - --disable-gtk-doc \ - --disable-gtk-doc-html \ - --disable-gtk-doc-pdf - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -22bb7de7325d233627c2b3e98de03564c389089c6c7f75fd8d661aa8069b58c39caca38f3083b329925189661c1bc547900b9b40dcf166af2bcfcaddc5fc7920 keybinder-0.3.1.tar.lz -" diff --git a/gtk/libcanberra/libcanberra.SMBuild b/gtk/libcanberra/smbuild old mode 100755 new mode 100644 similarity index 92% rename from gtk/libcanberra/libcanberra.SMBuild rename to gtk/libcanberra/smbuild index 4d4f7f2..3016892 --- a/gtk/libcanberra/libcanberra.SMBuild +++ b/gtk/libcanberra/smbuild @@ -18,8 +18,8 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ - --docdir="/share/doc/$app-$version" \ + --prefix=/usr \ + --docdir="/usr/share/doc/$app-$version" \ --disable-oss \ --disable-static diff --git a/gtk/libgd/libgd.SMBuild b/gtk/libgd/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/libgd/libgd.SMBuild rename to gtk/libgd/smbuild index 4d6e90d..7562129 --- a/gtk/libgd/libgd.SMBuild +++ b/gtk/libgd/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --disable-static make diff --git a/gtk/libgexiv2/libgexiv2.SMBuild b/gtk/libgexiv2/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/libgexiv2/libgexiv2.SMBuild rename to gtk/libgexiv2/smbuild index 76723c7..8a568b0 --- a/gtk/libgexiv2/libgexiv2.SMBuild +++ b/gtk/libgexiv2/smbuild @@ -19,7 +19,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ + --prefix=/usr ninja DESTDIR="$pkg" ninja install diff --git a/gtk/libglade/libglade.SMBuild b/gtk/libglade/libglade.SMBuild deleted file mode 100755 index 9a5f0b2..0000000 --- a/gtk/libglade/libglade.SMBuild +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: PktSurf -app=libglade -version=2.6.4 -build=1sml -homepage="https://glade.gnome.org/" -download="https://download.gnome.org/sources/libglade/2.6/libglade-$version.tar.bz2" -desc="User Interface Builder for GTK+ applications" -requires="libxml2 gtk2" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - printf "all:\n\ttrue\n\ninstall:\n\ttrue\n\n" > tests/Makefile.in - - ./configure \ - --prefix= \ - --disable-static \ - $builddist - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -632eca6cd764f9051b46cd7d29fb68863d6a26fbcb4e6f43890eaf7d5dc2e213e82f47efa0b5df7ee1c5a196ea63fc6d9205920bb6a3e330eca7edaae169e91b libglade-2.6.4.tar.lz -" diff --git a/gtk/libgphoto2/libgphoto2.SMBuild b/gtk/libgphoto2/smbuild old mode 100755 new mode 100644 similarity index 82% rename from gtk/libgphoto2/libgphoto2.SMBuild rename to gtk/libgphoto2/smbuild index 94e1def..a48e871 --- a/gtk/libgphoto2/libgphoto2.SMBuild +++ b/gtk/libgphoto2/smbuild @@ -18,14 +18,14 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --disable-static make # install udev helper scripts - make udevscriptdir=/lib/udev utilsdir=/bin - make udevscriptdir=/lib/udev utilsdir=/bin install DESTDIR=$pkg + make udevscriptdir=/usr/lib/udev utilsdir=/usr/bin + make udevscriptdir=/usr/lib/udev utilsdir=/usr/bin install DESTDIR=$pkg cp COPYING $pkgdocs/ diff --git a/gtk/libgsf/libgsf.SMBuild b/gtk/libgsf/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/libgsf/libgsf.SMBuild rename to gtk/libgsf/smbuild index 64d73f8..192b331 --- a/gtk/libgsf/libgsf.SMBuild +++ b/gtk/libgsf/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --disable-static \ --with-bz2 @@ -36,4 +36,4 @@ build() { sha512sums=" 179292acc75846e1e65a824f8b7c41ed4fdf558359bc9ef8f2ea9bb88e025678106acdf79a98acab9473a654396d280c5ddd7334e40c7ee450dcb1fd5aee80df libgsf-1.14.50.tar.lz -" \ No newline at end of file +" diff --git a/gtk/libmanette/libmanette.SMBuild b/gtk/libmanette/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/libmanette/libmanette.SMBuild rename to gtk/libmanette/smbuild index 3262812..4b6deb2 --- a/gtk/libmanette/libmanette.SMBuild +++ b/gtk/libmanette/smbuild @@ -19,7 +19,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ \ + --prefix=/usr \ -Ddoc=false \ -Dintrospection=false diff --git a/gtk/libnotify/libnotify.SMBuild b/gtk/libnotify/smbuild old mode 100755 new mode 100644 similarity index 96% rename from gtk/libnotify/libnotify.SMBuild rename to gtk/libnotify/smbuild index 03b9ae6..1efc2e5 --- a/gtk/libnotify/libnotify.SMBuild +++ b/gtk/libnotify/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild - meson .. --prefix=/ \ + meson .. --prefix=/usr \ -Dgtk_doc=false \ -Dman=false @@ -32,4 +32,4 @@ build() { sha512sums=" 630662c5a317e2a405e078d278299f69fb8faafcec75d1231adddc0072165e8ed36fe12ea9734762a80683e6e63c4cadc7933f2846a9b4ad567b6c03a9315493 libnotify-0.8.2.tar.lz -" \ No newline at end of file +" diff --git a/gtk/libportal/libportal.SMBuild b/gtk/libportal/libportal.SMBuild deleted file mode 100755 index e517b47..0000000 --- a/gtk/libportal/libportal.SMBuild +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: PktSurf -app=libportal -version=0.5 -build=1sml -homepage="https://github.com/flatpak/libportal/" -download="https://github.com/flatpak/libportal/archive/refs/tags/$version.tar.gz" -desc="Flatpak portal API" -requires="gtk3" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - mkdir smbuild && cd smbuild - meson .. \ - --prefix=/ \ - -Dbackends="gtk3" \ - -Ddocs="false" - - ninja - DESTDIR="$pkg" ninja install - - cp ../COPYING $pkgdocs/ - - mkfinalpkg -} - - -sha512sums=" -ca6879e2d4b55d9868c2ccc87d572a9b82e222b2b677d7baa642e61a66a34953700adc1946ea670dda59ceda905f38c8a1879f134431cbf54c3966008a5430b5 libportal-0.5.tar.lz -" diff --git a/gtk/libraqm/libraqm.SMBuild b/gtk/libraqm/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/libraqm/libraqm.SMBuild rename to gtk/libraqm/smbuild index 019cabb..03a6e16 --- a/gtk/libraqm/libraqm.SMBuild +++ b/gtk/libraqm/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --enable-static=no \ --enable-shared=yes \ --enable-fast-install=yes \ diff --git a/gtk/librsvg/librsvg.SMBuild b/gtk/librsvg/smbuild old mode 100755 new mode 100644 similarity index 88% rename from gtk/librsvg/librsvg.SMBuild rename to gtk/librsvg/smbuild index 43c47db..298ccb5 --- a/gtk/librsvg/librsvg.SMBuild +++ b/gtk/librsvg/smbuild @@ -18,8 +18,10 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ - --disable-static + --prefix=/usr \ + --disable-static \ + --disable-gtk-doc \ + --disable-introspection make make install DESTDIR=$pkg diff --git a/gtk/libsigcpp/libsigcpp.SMBuild b/gtk/libsigcpp/smbuild old mode 100755 new mode 100644 similarity index 98% rename from gtk/libsigcpp/libsigcpp.SMBuild rename to gtk/libsigcpp/smbuild index 737258a..7593c0f --- a/gtk/libsigcpp/libsigcpp.SMBuild +++ b/gtk/libsigcpp/smbuild @@ -21,7 +21,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --disable-documentation for i in tests docs examples ; do diff --git a/gtk/libsoup/libsoup.SMBuild b/gtk/libsoup/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/libsoup/libsoup.SMBuild rename to gtk/libsoup/smbuild index 9b46d63..6c2f867 --- a/gtk/libsoup/libsoup.SMBuild +++ b/gtk/libsoup/smbuild @@ -19,7 +19,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson setup \ - --prefix=/ \ + --prefix=/usr \ -Dtls_check=false \ -Dvapi=disabled \ -Dsysprof=disabled \ diff --git a/gtk/libwebp/libwebp.SMBuild b/gtk/libwebp/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/libwebp/libwebp.SMBuild rename to gtk/libwebp/smbuild index d3709c9..222edc9 --- a/gtk/libwebp/libwebp.SMBuild +++ b/gtk/libwebp/smbuild @@ -20,7 +20,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild cmake .. \ - -DCMAKE_INSTALL_PREFIX="" \ + -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR="lib" \ -DBUILD_SHARED_LIBS=ON \ -DCMAKE_SKIP_INSTALL_RPATH=ON diff --git a/gtk/libwnck2/libwnck2.SMBuild b/gtk/libwnck2/libwnck2.SMBuild deleted file mode 100755 index fb83362..0000000 --- a/gtk/libwnck2/libwnck2.SMBuild +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: PktSurf -app=libwnck2 -version=2.29.6 -build=1sml -homepage="https://www.gnome.org/" -download="https://download-fallback.gnome.org/sources/libwnck/2.29/libwnck-$version.tar.bz2" -desc="Window Navigator Construction Kit" -requires="intltool libxt startup-notification gobject-introspection gtk2" - -prepbuilddir() { - mkandenterbuilddir - rm -rf libwnck-$version - - tar xf $srcdir/libwnck-$version.tar.?z* - cd libwnck-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --disable-static \ - $builddist - - for i in po ; do - printf 'all:\n\ttrue\ninstall:\n\ttrue\nclean:\n\ttrue\n' > "$i"/Makefile - done - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -fa8615855648bb79bedd0518a4675dce525ba6470014f124ef0ecabbca092db82b148df54247d57b2f151c2d5f26db3c90c742fd14c58532016fc6eb5c602259 libwnck-2.29.6.tar.lz -" diff --git a/gtk/libwnck3/libwnck3.SMBuild b/gtk/libwnck3/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/libwnck3/libwnck3.SMBuild rename to gtk/libwnck3/smbuild index 1616ef2..37eda19 --- a/gtk/libwnck3/libwnck3.SMBuild +++ b/gtk/libwnck3/smbuild @@ -19,7 +19,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix="/" \ + --prefix=/usr \ -Dgtk_doc=false ninja diff --git a/gtk/openjpeg/openjpeg.SMBuild b/gtk/openjpeg/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/openjpeg/openjpeg.SMBuild rename to gtk/openjpeg/smbuild index ec9319d..74fd245 --- a/gtk/openjpeg/openjpeg.SMBuild +++ b/gtk/openjpeg/smbuild @@ -21,7 +21,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild cmake .. \ - -DCMAKE_INSTALL_PREFIX= \ + -DCMAKE_INSTALL_PREFIX=/usr \ -DOPENJPEG_INSTALL_LIB_DIR="lib" \ -DBUILD_JPWL:BOOL=ON \ -DBUILD_MJ2:BOOL=ON \ diff --git a/gtk/pango/pango.SMBuild b/gtk/pango/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/pango/pango.SMBuild rename to gtk/pango/smbuild index b861804..22b6f69 --- a/gtk/pango/pango.SMBuild +++ b/gtk/pango/smbuild @@ -19,7 +19,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ \ + --prefix=/usr \ -Dgtk_doc=false ninja @@ -32,4 +32,4 @@ build() { sha512sums=" 8177976f90cd2b684ee26f0ff470fa3e3e78cb84dea96a3f7f98c023410850ae38e1f581c383d3db9b7e97f9b194d8eb08ad5b878689abd862a3fe73b1d34910 pango-1.50.14.tar.lz -" \ No newline at end of file +" diff --git a/gtk/pinentry/pinentry.SMBuild b/gtk/pinentry/smbuild old mode 100755 new mode 100644 similarity index 97% rename from gtk/pinentry/pinentry.SMBuild rename to gtk/pinentry/smbuild index 2c67655..e98377f --- a/gtk/pinentry/pinentry.SMBuild +++ b/gtk/pinentry/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { ./configure \ - --prefix= \ + --prefix=/usr \ --enable-pinentry-tty \ --disable-pinentry-qt5 diff --git a/net/poppler-data/poppler-data.SMBuild b/gtk/poppler-data/smbuild old mode 100755 new mode 100644 similarity index 93% rename from net/poppler-data/poppler-data.SMBuild rename to gtk/poppler-data/smbuild index e8bf9f0..a6d7fd4 --- a/net/poppler-data/poppler-data.SMBuild +++ b/gtk/poppler-data/smbuild @@ -17,7 +17,7 @@ prepbuilddir() { } build() { - make prefix= install DESTDIR="$pkg" + make prefix=/usr install DESTDIR="$pkg" cp COPYING* $pkgdocs/ mkfinalpkg @@ -25,4 +25,4 @@ build() { sha512sums=" bd21c2c3236ca7ab4cf7b075bd3cb2b7a8a02394c455e3bc76e665d7f2e11b66efe687584093b05e5e8841bc35315f8511ddf94aad50fae6e37bb96ea356bdc3 poppler-data-0.4.12.tar.lz -" \ No newline at end of file +" diff --git a/net/poppler/poppler.SMBuild b/gtk/poppler/smbuild old mode 100755 new mode 100644 similarity index 96% rename from net/poppler/poppler.SMBuild rename to gtk/poppler/smbuild index c45ef76..12fbf2f --- a/net/poppler/poppler.SMBuild +++ b/gtk/poppler/smbuild @@ -20,7 +20,7 @@ build() { mkdir -p smbuild && cd smbuild cmake .. \ - -DCMAKE_INSTALL_PREFIX="" \ + -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib make diff --git a/gtk/py3cairo/py3cairo.SMBuild b/gtk/py3cairo/smbuild old mode 100755 new mode 100644 similarity index 92% rename from gtk/py3cairo/py3cairo.SMBuild rename to gtk/py3cairo/smbuild index d94fbf6..cb5f07b --- a/gtk/py3cairo/py3cairo.SMBuild +++ b/gtk/py3cairo/smbuild @@ -17,7 +17,7 @@ prepbuilddir() { } build() { - python3 setup.py install --prefix= --root=$pkg + python3 setup.py install --root=$pkg cp COPYING* $pkgdocs/ diff --git a/gtk/pygobject3/pygobject3.SMBuild b/gtk/pygobject3/smbuild old mode 100755 new mode 100644 similarity index 98% rename from gtk/pygobject3/pygobject3.SMBuild rename to gtk/pygobject3/smbuild index cd34a7e..185afe8 --- a/gtk/pygobject3/pygobject3.SMBuild +++ b/gtk/pygobject3/smbuild @@ -19,7 +19,7 @@ prepbuilddir() { build() { mkdir smbuild && cd smbuild meson .. \ - --prefix=/ + --prefix=/usr ninja DESTDIR="$pkg" ninja install diff --git a/gtk/shared-mime-info/shared-mime-info.SMBuild b/gtk/shared-mime-info/smbuild old mode 100755 new mode 100644 similarity index 96% rename from gtk/shared-mime-info/shared-mime-info.SMBuild rename to gtk/shared-mime-info/smbuild index eacf502..8559ad9 --- a/gtk/shared-mime-info/shared-mime-info.SMBuild +++ b/gtk/shared-mime-info/smbuild @@ -18,7 +18,7 @@ prepbuilddir() { build() { mkdir -p smbuild && cd smbuild - meson .. --prefix=/ + meson .. --prefix=/usr ninja DESTDIR="$pkg" ninja install @@ -30,4 +30,4 @@ build() { sha512sums=" cd5e65c27b0474c4d01759d009c6f6aaca875272c1de5f2c1808999fe5cbb4e842b06bb2f91d9336b92558f413a3d81d769308ccc7739bbdcdbc93d450efd2d2 shared-mime-info-2.2.tar.lz -" \ No newline at end of file +" diff --git a/gtk/wv/wv.SMBuild b/gtk/wv/smbuild old mode 100755 new mode 100644 similarity index 93% rename from gtk/wv/wv.SMBuild rename to gtk/wv/smbuild index 6c997f0..77f8ab0 --- a/gtk/wv/wv.SMBuild +++ b/gtk/wv/smbuild @@ -19,9 +19,8 @@ prepbuilddir() { build() { ac_cv_path_mkdir="mkdir -p" \ ./configure \ - --prefix= \ - --disable-static \ - $builddist + --prefix=/usr \ + --disable-static make make install DESTDIR=$pkg diff --git a/net/bindutils/bindutils.SMBuild b/net/bindutils/bindutils.SMBuild deleted file mode 100755 index 18ac584..0000000 --- a/net/bindutils/bindutils.SMBuild +++ /dev/null @@ -1,40 +0,0 @@ -# Maintainer: PktSurf -app=bindutils -version=9.16.2 -build=1sml -homepage="https://www.isc.org/bind/" -download="https://ftp.isc.org/isc/bind9/$version/bind-$version.tar.xz" -desc="domain utility collection packaged separately from BIND source" -requires="libxml2 openssl libuv libcap" - -prepbuilddir() { - mkandenterbuilddir - rm -rf bind-$version - - tar xf $srcdir/bind-$version.tar.?z - cd bind-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --without-readline \ - --without-libjson \ - --without-python - - for i in dns isc bind9 isccfg irs ; do - make -C lib/$i - done - - make -C bin/dig install DESTDIR="$pkg" - - cp COPYRIGHT LICENSE $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -486aa4fd204fa4dcf48fa190a04fc15df84cb8b85397d58bdb96d86389eb1dde44fb76153b42a1ac2d47d5a3f19eda540c74198d0691a7bef8fda9878fdf4926 bind-9.16.2.tar.lz -" diff --git a/net/cgit/cgit.SMBuild b/net/cgit/cgit.SMBuild deleted file mode 100755 index 7040259..0000000 --- a/net/cgit/cgit.SMBuild +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: PktSurf -app=cgit -version=1.2.3 -gitv=2.28.1 -build=1sml -homepage="https://git.zx2c4.com/cgit/about/" -download="https://git.zx2c4.com/cgit/snapshot/cgit-$version.tar.xz" -desc="CGI web frontend for git repositories written in C" -requires="zlib git" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - [[ -d git ]] && rm -rf git - tar -xf "$srcdir/git-$gitv.tar.lz" && mv git-$gitv git -} - -build() { - export NO_LUA=1 - export NO_REGEX=NeedsStartEnd - - make - make install prefix=/ DESTDIR="$pkg" - - cp COPYING $pkgdocs/ - install -Dm 644 $srcdir/cgitrc $pkg/etc/cgitrc.new - - mkdir -p $pkg/var/cache/cgit - chmod 755 $pkg/var/cache/cgit - - mkfinalpkg -} - -sha512sums=" -5b11fee74514e52b40f534b38b9ebe271ac707b1e560a7221b0f6b3fc422b339024ac955e3bba566bf20d70be0c7a99924db95b68483c3b0b6884ef89dbbec95 cgit-1.2.3.tar.lz -529a132f96cb9f7956bd68e2589a5f9722289d79e45171221595ea39c147028c53b1208f2fb1aed81741867718367c447dce2efb112d73d170c5dba93918dec4 git-2.28.1.tar.lz -" diff --git a/net/cifs-utils/cifs-utils.SMBuild b/net/cifs-utils/cifs-utils.SMBuild deleted file mode 100755 index f468ec6..0000000 --- a/net/cifs-utils/cifs-utils.SMBuild +++ /dev/null @@ -1,41 +0,0 @@ -# Maintainer: PktSurf -app=cifs-utils -version=6.8 -build=1sml -homepage="http://wiki.samba.org/index.php/LinuxCIFS_utils" -download="https://download.samba.org/pub/linux-cifs/cifs-utils/cifs-utils-$version.tar.bz2" -desc="Utilities for managing CIFS filesystems" -requires="libcap" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/musl-fix-includes.patch - applypatch $srcdir/xattr_size_max.patch -} - -build() { - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - # ./configure doesn't care if you change --sbindir to /bin, so we move mount.cifs manually - mkdir -p $pkg/bin ; mv $pkg/sbin/* $pkg/bin/ ; rmdir $pkg/sbin - - mkfinalpkg -} - -sha512sums=" -d59fb5e82e485df8f7221eadee3f60d6c7f1fb70987e686ca7929119eca113ec98754d3ab8d80f44c6aa926a9fbcfbe16b5e59eb46aa3ab7ba2cc787293d123f cifs-utils-6.8.tar.lz -99a2fab05bc2f14a600f89526ae0ed2c183cfa179fe386cb327075f710aee3aed5ae823f7c2f51913d1217c2371990d6d4609fdb8d80288bd3a6139df3c8aebe musl-fix-includes.patch -2a9366ec1ddb0389c535d2fa889f63287cb8374535a47232de102c7e50b6874f67a3d5ef3318df23733300fd8459c7ec4b11f3211508aca7800b756119308e98 xattr_size_max.patch -" diff --git a/net/comgt/comgt.SMBuild b/net/comgt/comgt.SMBuild deleted file mode 100755 index 53e73a1..0000000 --- a/net/comgt/comgt.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=comgt -version=0.32 -build=2sml -homepage="https://sourceforge.net/projects/comgt" -download="https://sourceforge.net/projects/comgt/files/comgt/$version/comgt.$version.tgz" -desc="Utility to interact with 2G, 3G and LTE modems via standard AT command set" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf "$app.$version" - - tar xf $srcdir/$app.$version.tgz - cd "$app.$version" - fixbuilddirpermissions - - applypatch $srcdir/002-termios.patch -} - -build() { - make - install -Dm 755 comgt $pkg/bin/comgt - - mkdir -p $pkg/etc/comgt/examples $pkg/share/man/man1 - cp *.1 $pkg/share/man/man1/ - cp scripts/* $pkg/etc/comgt/examples/ - cp $srcdir/balance.* $pkg/etc/comgt/examples/ - - cp $srcdir/LICENSE $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -862e52e4904b57e7e7b551da36c82807dbc16ad505b4e5aac0b1a03a2445919e43b9f8e271f046b179348ea733485d0901461512f83165e3e4751b096c43d3aa comgt.0.32.tgz -f5fdea56c91badefedd470f3c68acb492b0885bd632f98f2a7c30c23e9bd2641e088da06b6ff276a8e40c796b68985791cf7c30c599543856431f3a9b2e35947 002-termios.patch -" diff --git a/net/cyrus-sasl/cyrus-sasl.SMBuild b/net/cyrus-sasl/cyrus-sasl.SMBuild deleted file mode 100755 index 73730ae..0000000 --- a/net/cyrus-sasl/cyrus-sasl.SMBuild +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: PktSurf -app=cyrus-sasl -version=2.1.27 -build=1sml -homepage="https://www.cyrusimap.org/sasl/" -download="https://github.com/cyrusimap/cyrus-sasl/releases/download/cyrus-sasl-2.1.27/cyrus-sasl-2.1.27.tar.gz" -desc="API to provide authentication and authorization" -requires="db" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --sbindir=/bin - - ( cd include ; make makemd5 ) - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -3111b30c6fd34f16dee2ff9499b09c9d32be2258f5c16ef52d99feff4ba01177929e0ee301d5e06c97ac42f25d72f054c7adebf048156e827659b6a4ba0da1bc cyrus-sasl-2.1.27.tar.lz -" diff --git a/net/darkhttpd/darkhttpd.SMBuild b/net/darkhttpd/darkhttpd.SMBuild deleted file mode 100755 index ca50926..0000000 --- a/net/darkhttpd/darkhttpd.SMBuild +++ /dev/null @@ -1,30 +0,0 @@ -# Maintainer: PktSurf -app=darkhttpd -version=1.12 -build=1sml -homepage="https://unix4lyfe.org/darkhttpd" -desc="Simple, secure and lightweight HTTP server" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - make - install -Dm 755 darkhttpd $pkg/bin/darkhttpd - - cp $srcdir/LICENSE $pkgdocs/ - - mkfinalpkg - -} - -sha512sums=" -92a6e317877f325ba8bf297ab855ff71ea233c0b83e1055dacc8fc2ff0b6eb5f11dca814fa2cce5f480294ef615e28e0551599b017a38ba73d2fd9a16a3ba933 darkhttpd-1.12.tar.lz -" diff --git a/net/darkstat/darkstat.SMBuild b/net/darkstat/darkstat.SMBuild deleted file mode 100755 index ec27c96..0000000 --- a/net/darkstat/darkstat.SMBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: PktSurf -app=darkstat -version=3.0.721 -build=1sml -homepage="https://github.com/emikulic/darkstat" -download="https://github.com/emikulic/darkstat/archive/refs/tags/3.0.721.tar.gz" -desc="Gathers and displays network interface statistics over HTTP" -requires="zlib libpcap libnl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - autoreconf -vi -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin - - make - make install DESTDIR=$pkg - - cp COPYING* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -365adca40e70eb92f26698b1e6207ec21d708858788f10ce631d33031cc8a90556818d8a2e8a8296ac183b6fcfc4c7a0d42426d142bc218052cbd86b26aee0ec darkstat-3.0.721.tar.lz -" diff --git a/net/dhcpcd/dhcpcd.SMBuild b/net/dhcpcd/dhcpcd.SMBuild deleted file mode 100755 index 12c376b..0000000 --- a/net/dhcpcd/dhcpcd.SMBuild +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: PktSurf -app=dhcpcd -version=9.1.4 -build=1sml -homepage="https://roy.marples.name/projects/dhcpcd" -download="https://github.com/NetworkConfiguration/dhcpcd/archive/refs/tags/dhcpcd-9.1.4.tar.gz" -desc="RFC2131 and 1541-compliant DHCP client" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin \ - --libexecdir=/lib/dhcpcd \ - --datadir=/share \ - --mandir=/share/man \ - --dbdir=/var/lib/dhcpcd \ - --privsepuser=dhcpcd - - make - make install DESTDIR=$pkg - - cp LICENSE $pkgdocs/ - - # Rename the config file as .new - mv $pkg/etc/dhcpcd.conf $pkg/etc/dhcpcd.conf.new - - mkfinalpkg -} - -sha512sums=" -9095276a4492432dd8d7aef2e2a485137bc116240431f01a4d6bc27e484f56178462985485892b7869852f64983811042b636646364c82a3fe8fe84951739658 dhcpcd-9.1.4.tar.lz -" diff --git a/net/distcc/distcc.SMBuild b/net/distcc/distcc.SMBuild deleted file mode 100755 index e296d03..0000000 --- a/net/distcc/distcc.SMBuild +++ /dev/null @@ -1,49 +0,0 @@ -# Maintainer: PktSurf -app=distcc -version=3.4 -build=2sml -homepage="https://distcc.github.io/" -download="https://github.com/distcc/distcc/releases/download/v$version/distcc-$version.tar.gz" -desc="Distributed C and C++ compiler daemon for parallel building" -requires="popt" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/dcc_gcc_rewrite_fqn-avoid-heap-corruption.patch -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin \ - --sysconfdir=/etc \ - --without-libiberty \ - --without-avahi - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkdir -p $pkg/lib/distcc - ( - cd $pkg/lib/distcc - ln -sf ../../bin/distcc gcc - ln -sf ../../bin/distcc cc - ln -sf ../../bin/distcc g++ - ln -sf ../../bin/distcc c++ - ) - - mkfinalpkg -} - -sha512sums=" -c2d7fd2baacee153f722e780b5dc3780eaf2903ceff22c3eb315905d425b984403e1abab540e8cd49829bc03a86ae984b62d31b9defb493adddac7b24f428b09 distcc-3.4.tar.lz -9bc411107021d5f621304a73b0bfdec387d1b33121a325503cf4c9c4046924338ee1b4ef093b517249c3df31cf69cd9f19377df2edd6e81be1dac50a5bd0f3d5 dcc_gcc_rewrite_fqn-avoid-heap-corruption.patch -" diff --git a/net/dnsmasq/dnsmasq.SMBuild b/net/dnsmasq/dnsmasq.SMBuild deleted file mode 100755 index 88b7780..0000000 --- a/net/dnsmasq/dnsmasq.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=dnsmasq -version=2.85 -build=1sml -homepage="https://thekelleys.org.uk/dnsmasq/doc.html" -download="https://thekelleys.org.uk/dnsmasq/dnsmasq-$version.tar.xz" -desc="Lightweight DNS and DHCP server suitable for a small network" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - SM_BUILDOPTS="-DHAVE_DNSSEC -DHAVE_DBUS -DHAVE_LIBIDN2 -DHAVE_CONNTRACK" - make COPTS="$SM_BUILDOPTS" - make COPTS="$SM_BUILDOPTS" PREFIX=/ BINDIR=/bin DESTDIR="$pkg" install - - install -Dm 600 dnsmasq.conf.example $pkg/etc/dnsmasq.conf.new - cp COPYING* $pkgdocs/ - - preprunitservice -s dnsmasq -d - - mkfinalpkg -} - -sha512sums=" -6df1aeee42dbccbe2c6727ca761bbf6efe6eb0af63361984e194ef4c5bde3cd66078aab9e48eac253cd4f1468369b4301df976d87a17cece82317738d95b9ed6 dnsmasq-2.85.tar.lz -" diff --git a/net/dovecot/dovecot.SMBuild b/net/dovecot/dovecot.SMBuild deleted file mode 100755 index a4213fe..0000000 --- a/net/dovecot/dovecot.SMBuild +++ /dev/null @@ -1,59 +0,0 @@ -# Maintainer: PktSurf -app=dovecot -version=2.2.36 -build=1sml -homepage="https://www.dovecot.org/" -download="https://dovecot.org/releases/2.2/dovecot-$version.tar.gz" -desc="Open-source IMAP and POP3 server written in C" -requires="expat libcap" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - CPPFLAGS="$CFLAGS -D_GNU_SOURCE" \ - lib_cv_va_copy=yes \ - lib_cv___va_copy=no \ - lib_cv_va_val_copy=no \ - i_cv_inotify_works=yes \ - i_cv_posix_fallocate_works=no \ - i_cv_signed_size_t=no \ - i_cv_gmtime_max_time_t=31 \ - i_cv_signed_time_t=yes \ - i_cv_mmap_plays_with_write=yes \ - i_cv_c99_vsnprintf=yes \ - i_cv_fd_passing=yes \ - ./configure \ - --prefix= \ - --bindir=/bin \ - --sbindir=/bin \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --with-ioloop=poll \ - --with-notify=none \ - --without-lzma \ - --without-gc \ - --without-bzlib \ - --disable-static - - make -j4 - make install DESTDIR=$pkg - - cp COPYING* $pkgdocs/ - - install -Dm 644 $srcdir/dovecot.conf.sample $pkg/etc/dovecot/dovecot.conf.new - - preprunitservice -s dovecot -d - - mkfinalpkg -} - -sha512sums=" -d10d0f7d1e5ec393de9d1b3b23e80d905e9c4d7fb864cbefe27e6b359928c08b5a6827f501effaca4eee277ddb3336f0d830c0aee4a81301df962f3f491fbfd8 dovecot-2.2.36.tar.lz -" diff --git a/net/ethtool/ethtool.SMBuild b/net/ethtool/ethtool.SMBuild deleted file mode 100755 index 1ad54d2..0000000 --- a/net/ethtool/ethtool.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=ethtool -version=4.18 -build=1sml -homepage="https://mirrors.edge.kernel.org/pub/software/network/ethtool/" -download="https://mirrors.edge.kernel.org/pub/software/network/ethtool/ethtool-$version.tar.xz" -desc="Tool for examining and tuning a network interface" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -1bb3123dfab3d0fad3aab9c7767af24fe634d449ce38d10bbfed5cf2839c378a1245c85ed410025a47b6eede8430ace377ecb9460ebcfd6db5148f813152b4cf ethtool-4.18.tar.lz -" diff --git a/net/fail2ban/fail2ban.SMBuild b/net/fail2ban/fail2ban.SMBuild deleted file mode 100755 index 439c0f3..0000000 --- a/net/fail2ban/fail2ban.SMBuild +++ /dev/null @@ -1,54 +0,0 @@ -# Maintainer: PktSurf -app=fail2ban -version=1.0.2 -build=2sml -homepage="http://www.fail2ban.org/wiki/index.php/Main_Page" -download="https://github.com/fail2ban/fail2ban/archive/refs/tags/$version.tar.gz" -desc="Log-based intrusion detection and prevention system written in Python" -requires="python3 iptables" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - sh fail2ban-2to3 - python setup.py install --root=$pkg - - cp COPYING $pkgdocs/ - - # move config files to .new - ( - cd $pkg/etc/fail2ban - for file in $(find . -type f); do - mv $file "$file.new" - done - ) - - ( cd $pkg/etc/fail2ban ; patch -p0 < $srcdir/jail.conf.patch ) - - install -D -m 0644 $srcdir/rc.fail2ban $pkg/etc/rc.d/rc.fail2ban.new - install -D -m 0644 $srcdir/paths-smlinux.conf $pkg/etc/fail2ban/paths-smlinux.conf.new - rm -f $pkg/etc/fail2ban/paths-{arch,debian,fedora,freebsd,osx,opensuse}.conf.new - - mkdir -p $pkg/var/{run,lib/fail2ban} $pkg/share/man/man1 - for man in fail2ban-client.1 fail2ban-regex.1 fail2ban-server.1 fail2ban.1 fail2ban-testcases.1 ; do - install -Dm 0644 man/$man $pkg/share/man/man1 - done - install -Dm 0644 man/jail.conf.5 $pkg/share/man/man5/jail.conf.5 - - mv $pkg/usr/share/doc/$app/* $pkgdocs/ - rm -r $pkg/usr - - mkfinalpkg -} - -sha512sums=" -688a84361b5794e1658f53d2d200ce752fe1e3320ddb1742c32c4b4b82a79ace16ae464e7ea3eeb94a0e862bcac73c2d3a0e61dd7b28e179a4c857f950d74dbb fail2ban-1.0.2.tar.gz -89c6e4bbb1a01f3f7601372bbd49d72dd6a17a58503cce30f754110cdc8b55fc80dfa21b5e97a16525bd80c7cae961af5024e5cca45d922245eeefa83cb54ef2 jail.conf.patch -" diff --git a/net/fcgi/fcgi.SMBuild b/net/fcgi/fcgi.SMBuild deleted file mode 100755 index c5ca24e..0000000 --- a/net/fcgi/fcgi.SMBuild +++ /dev/null @@ -1,52 +0,0 @@ -# Maintainer: PktSurf -app=fcgi -version=2.4.0 -build=1sml -homepage="https://web-beta.archive.org/web/20160306034010/http://www.fastcgi.com:80/drupal/" -download="https://sourceforge.net/projects/slackbuildsdirectlinks/files/fcgi/fcgi-$version.tar.gz" -desc="Simple server and library implementin Fast CGI" -requires="gcc-libs" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/fcgi-2.4.0-clientdata-pointer.patch - applypatch $srcdir/fcgi-2.4.0-gcc44-fix-include.patch - applypatch $srcdir/fcgi-2.4.0-html-updates.patch - - # Create some empty files to make autoreconf happy - touch INSTALL NEWS AUTHORS ChangeLog COPYING - autoreconf -vif - -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --disable-static - - make -j1 - make install DESTDIR=$pkg - - mkdir -p $pkg/share/man/man{1,3} - cp -a doc/*.1 $pkg/share/man/man1/ - cp -a doc/*.3 $pkg/share/man/man3/ - - cp LICENSE* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -043ba8cdc284f80611fe79c07df6e90a0f96079534e7e8a5b9114cefa7867cdbbec824c46257c5031ee94ab19512e7ff1d32bcc60d78bd3eacaf16a2837426ac fcgi-2.4.0.tar.lz -c5339ae940994daeec4cf8030933ca2ab5a00651b91eb5d2ff3b871673b5a62646bfb8e81c190ad6d83015fcf59df4076bc745f097ddcada220ca0dc4a05db6a fcgi-2.4.0-clientdata-pointer.patch -3a95be5e9a7833a6c68c7760d4d7efa7470ba75cd24974ec68134c3003b15ceeca47575e93bfa82af42506b1141a6ea62e4b2dd67f6e231cf662b413973ad7d1 fcgi-2.4.0-gcc44-fix-include.patch -79abe9f43150b3163e92030cc9afbee90f69f04bd487254d187abda6fa3484623f605394c96eeb6fd4203d2b06f7e771c9b46f9c21b03cde1aa043da9b3e8d5e fcgi-2.4.0-html-updates.patch -" diff --git a/net/fcgiwrap/fcgiwrap.SMBuild b/net/fcgiwrap/fcgiwrap.SMBuild deleted file mode 100755 index b79124a..0000000 --- a/net/fcgiwrap/fcgiwrap.SMBuild +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: PktSurf -app=fcgiwrap -version=1.1.0 -build=2sml -homepage="https://github.com/gnosek/fcgiwrap" -download="https://github.com/gnosek/fcgiwrap/archive/refs/tags/$version.tar.gz" -desc="Simple FastCGI wrapper for CGI scripts" -requires="fcgi" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/share/man - - sed -i 's@-Werror@@g' Makefile - - make - make install DESTDIR=$pkg - - cp $srcdir/LICENSE $pkgdocs/ - - install -Dm 0755 $srcdir/spawn-fcgi $pkg/bin/spawn-fcgi - install -Dm 0755 $srcdir/rc.spawn-fcgi $pkg/etc/rc.d/rc.spawn-fcgi - - mkfinalpkg -} - -sha512sums=" -88234a72b9941532f259f799fd4e4f1b3b854b9a6689bcff943b4fc852013392fda2f43166289f15fa780f5d52bc4a7eabacf90f44d90e4f86346f371cd422ec fcgiwrap-1.1.0.tar.lz -" diff --git a/net/ghostscript/ghostscript.SMBuild b/net/ghostscript/ghostscript.SMBuild deleted file mode 100755 index f09383d..0000000 --- a/net/ghostscript/ghostscript.SMBuild +++ /dev/null @@ -1,45 +0,0 @@ -# Maintainer: PktSurf -app=ghostscript -version=9.27 -build=1sml -homepage="https://www.ghostscript.com/" -download="https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs927/ghostscript-9.27.tar.xz" -desc="Postscript and PDF interpreter" -requires="expat zlib libpng libtiff libjpeg-turbo jbig2dec lcms2" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - # get rid of in-tree lib copies - rm -rf expat freetype lcms lcms2 jpeg libpng tiff lcms lcms2 cups/libs jbig2dec -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --enable-dynamic \ - --with-system-libtiff \ - --disable-cups \ - --disable-compile-inits \ - --with-jbig2dec \ - --with-x \ - --disable-gtk \ - --without-luratech - - make so-only - make soinstall DESTDIR=$pkg - - cp LICENSE $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -7c855768a9e934959c9e952af04e74af990a7a655b44f7a6c150edeed9ca1b143bdac4df5f5c4d605a681e432f0919310dce95e504145d95af848fce37f3eb84 ghostscript-9.27.tar.lz -" diff --git a/net/hexchat/hexchat.SMBuild b/net/hexchat/hexchat.SMBuild deleted file mode 100755 index 4294ceb..0000000 --- a/net/hexchat/hexchat.SMBuild +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: PktSurf -app=hexchat -version=2.12.4 -build=2sml -homepage="https://hexchat.github.io/" -download="https://dl.hexchat.net/hexchat/hexchat-$version.tar.xz" -desc="Modern GTK+ IRC client" -requires="intltool iso-codes netbsd-curses perl glib desktop-file-utils enchant openssl libnotify libcanberra gtk2 dbus-glib python3 pango" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - # Since we are using skarnet's toolchain and a custom gcc specs file, - # this can cause errors because skarnet's toolchain also looks inside - # /usr/local which we only use for occasional builds - sed -i 's@Werror=missing-include-dirs @@g' configure - - ./configure \ - --prefix= \ - --enable-openssl \ - --enable-textfe \ - --disable-lua \ - --enable-python=python3 - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -3acbcb037360628267593d5c87f84511f0d7d9772002d2bfaf9d2c29cd8f01a034a423f6a64d24c8c173a534e7dd9acb67147c6247f5f4c9834b729ebc980bd7 hexchat-2.12.4.tar.lz -" diff --git a/net/hostapd/hostapd.SMBuild b/net/hostapd/hostapd.SMBuild deleted file mode 100755 index 2b87a80..0000000 --- a/net/hostapd/hostapd.SMBuild +++ /dev/null @@ -1,49 +0,0 @@ -# Maintainer: PktSurf -app=hostapd -version=2.9 -build=1sml -homepage="https://w1.fi/hostapd/" -download="https://w1.fi/releases/hostapd-$version.tar.gz" -desc="User space daemon for wifi authentication" -requires="libnl openssl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/01.patch - applypatch $srcdir/02.patch - applypatch $srcdir/03.patch - applypatch $srcdir/CVE-2019-16275.patch -} - -build() { - cd hostapd - cat $srcdir/hostapd.defconfig > .config - - make - - install -Dm 644 hostapd.8 $pkg/share/man/man8/hostapd.8 - install -Dm 644 hostapd_cli.1 $pkg/share/man/man1/hostapd_cli.1 - install -Dm 755 hostapd $pkg/bin/hostapd - install -Dm 755 hostapd_cli $pkg/bin/hostapd_cli - install -Dm 600 hostapd.conf $pkg/etc/hostapd/hostapd.conf.new - - cp ../COPYING $pkgdocs/ - - preprunitservice -s hostapd -d - - mkfinalpkg -} - -sha512sums=" -003c5f10607d7383227e396096b6ee86cb9047b32ab7cd8ebea4aa8cef5d77d86028bc54486b59dca46cf5f6778d8657464ca8637a78289bc6d9be3d0a7cee34 hostapd-2.9.tar.lz -b76bbca282a74ef16c0303e5dbd2ccd33a62461595964d52c1481b0bfa4f41deacde56830b85409b288803b87ceb6f33cf0ccc69c5b17ec632c2d4784b872f3c 01.patch -00cc739e78c42353a555c0de2f29defecff372927040e14407a231d1ead7ff32a37c9fd46bea7cdf1c24e3ac891bc3d483800d44fc6d2c8a12d2ae886523b12c 02.patch -69243af20cdcfa837c51917a3723779f4825e11436fb83311355b4ffe8f7a4b7a5747a976f7bf923038c410c9e9055b13b866d9a396913ad08bdec3a70e9f6e0 03.patch -63710cfb0992f2c346a9807d8c97cbeaed032fa376a0e93a2e56f7742ce515e9c4dfadbdb1af03ba272281f639aab832f0178f67634c222a5d99e1d462aa9e38 CVE-2019-16275.patch -" diff --git a/net/hostname/hostname.SMBuild b/net/hostname/hostname.SMBuild deleted file mode 100755 index 78e0592..0000000 --- a/net/hostname/hostname.SMBuild +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: PktSurf -app=hostname -version=3.22 -build=1sml -homepage="https://packages.debian.org/bullseye/hostname" -desc="Hostname utility with extra features from Debian devs" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - make - install -Dm 755 hostname $pkg/bin/hostname - install -Dm 644 hostname.1 $pkg/share/man/man1/hostname.1 - - ( - cd $pkg/bin - for name in dnsdomainname domainname ypdomainname nisdomainname ; do - ln -sf hostname $name - done - ) - - cp COPYRIGHT $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -f50deba511157e4df404402a6e599f6b59aa4f9393d3ee0100a01c73cc4d3c556a6863aea760d95a37b3780015c5da99c4c2eaee04ccc8ffaf816f2c9068730a hostname-3.22.tar.lz -" diff --git a/net/ifstat/ifstat.SMBuild b/net/ifstat/ifstat.SMBuild deleted file mode 100755 index 9e71f23..0000000 --- a/net/ifstat/ifstat.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=ifstat -version=1.1 -build=1sml -homepage="https://gael.roualland.free.fr/ifstat/" -download="https://gael.roualland.free.fr/ifstat/ifstat-$version.tar.gz" -desc="tiny real-time interface monitoring application" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= - - make - install -Dm 755 ifstat $pkg/bin/ifstat - install -Dm 644 ifstat.1 $pkg/share/man/man1/ifstat.1 - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -c8f58066f8b7c68439316e5bcdc46df3708d8f79053572f95b74a264d862cebc75a88849e763914de17a4918de9aacea95beee7363d0b43a1b939bfc989c780d ifstat-1.1.tar.lz -" diff --git a/net/iftop/iftop.SMBuild b/net/iftop/iftop.SMBuild deleted file mode 100755 index ec35be1..0000000 --- a/net/iftop/iftop.SMBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: PktSurf -app=iftop -version=0.17 -build=1sml -homepage="https://www.ex-parrot.com/pdw/iftop/" -download="https://www.ex-parrot.com/pdw/iftop/download/iftop-$version.tar.gz" -desc="Curses-based network interface monitoring application" -requires="netbsd-curses libpcap" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin \ - --mandir=/share/man \ - $builddist - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -9bf6d32ad9e977a01f5e39e6bf2f7710a5d2c867959da67c734506edf152320de00d6dae0954a9b479862aaf2c83599566325e300f7db27180acbbdbf096f29e iftop-0.17.tar.lz -" diff --git a/net/iperf/iperf.SMBuild b/net/iperf/iperf.SMBuild deleted file mode 100755 index a4f9d39..0000000 --- a/net/iperf/iperf.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=iperf -version=3.7 -build=1sml -homepage="https://github.com/esnet/iperf" -download="https://github.com/esnet/iperf/archive/refs/tags/$version.tar.gz" -desc="Network utility for measuring TCP and UDP bandwidth performance" -requires="openssl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - # With profiling enabled, the build fails with ld: Cannot find gcrt1.o: No such file or directory - # https://github.com/esnet/iperf/issues/749 - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --disable-static \ - --disable-profiling - - make - make install DESTDIR=$pkg - - cp LICENSE $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -f4ac1f9c7efcd6e3331afce43601f355d173653611e0c7c4027e87722a54ca914bf9ac73ad0ddc08851d54367ee15527ffd65a4849d675272a4e7619304adff2 iperf-3.7.tar.lz -" diff --git a/net/iproute2/iproute2.SMBuild b/net/iproute2/iproute2.SMBuild deleted file mode 100755 index 9857287..0000000 --- a/net/iproute2/iproute2.SMBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: PktSurf -app=iproute2 -version=6.3.0 -build=1sml -homepage="https://wiki.linuxfoundation.org/networking/iproute2" -download="https://mirrors.edge.kernel.org/pub/linux/utils/net/iproute2/iproute2-$version.tar.xz" -desc="Advanced IP routing utilities for the linux kernel" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - #applypatch $srcdir/fix-install-errors.patch - #applypatch $srcdir/musl-fixes.patch -} - -build() { - ./configure \ - --prefix=/ - - make - make install DESTDIR=$pkg PREFIX= SBINDIR="/bin" MANDIR="/share/man" LIBDIR="/lib" KERNEL_INCLUDE="/include" - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -aec1d8ceb54c8849a075ec1ce079678638e05ccaec093e8b3cbc7243b5fafea2a8c11f10930fced3df82f52d6750aa325178e44f9058e37a556ab108d4a968bf iproute2-6.3.0.tar.xz -" diff --git a/net/ipset/ipset.SMBuild b/net/ipset/ipset.SMBuild deleted file mode 100755 index 4de33a2..0000000 --- a/net/ipset/ipset.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=ipset -version=7.11 -build=1sml -homepage="http://ipset.netfilter.org/" -download="https://ipset.netfilter.org/ipset-$version.tar.bz2" -desc="High-performance IP hashing and administration tool for kernel IP sets" -requires="musl kernel-source" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - # The kernel source directory requires the kernel build config file. - # zcat /proc/config.gz > /share/linux-5.4.41 - ./configure \ - --prefix= \ - --sbindir=/bin \ - --disable-static \ - --with-kbuild=/share/linux-5.4.41 - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -ed4dfc85371aafe6758191553ecc8cc82ad27a4c9f334d695ee533fbfde3d338db86cde91b0445795fcd73b6b7a0f87a84035375f031ddf1c95ff1af38e82e56 ipset-7.11.tar.lz -" diff --git a/net/iputils/iputils.SMBuild b/net/iputils/iputils.SMBuild deleted file mode 100755 index 126d60c..0000000 --- a/net/iputils/iputils.SMBuild +++ /dev/null @@ -1,41 +0,0 @@ -# Maintainer: PktSurf -app=iputils -version=s20180629 -build=1sml -homepage="https://github.com/iputils/iputils" -download="https://github.com/iputils/iputils/archive/refs/tags/$version.tar.gz" -desc="Collection of common network tools" -requires="libcap iptables" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/fix-defines.patch - applypatch $srcdir/fix-init-of-cmsg.patch -} - -build() { - make CC="$CC" all USE_GCRYPT=no USE_CRYPTO=no USE_NETTLE=no USE_CAP=no USE_IDN=no - - for f in arping clockdiff ping rarpd rdisc tracepath traceroute6 tftpd ; do - install -Dm 755 "$f" $pkg/bin/"$f" - done - - # Set the SUID bit on ping - chmod u+s $pkg/bin/ping - - cp LICENSE* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -b059ef63b01e08b1b7856cd5ef231f14ef87c30a404b480978e4d085b1f71574b077998f02c2e10de42399123cb8c758bad5c4dafb00ed9e2cd005145ac96423 iputils-s20180629.tar.lz -85c766b2cd738aeedb8dda8100af5814d9c0b4b62d6e98ca4329e3d34b19845e34bde772ca27e79360b7911cdb51bad11ca8f7717a367286c08243471fb32c47 fix-defines.patch -2779b9d987089a2a9a39c27a092f16da85881e9dfbc99edcca6baea42912b8a1a7e16b00c19684d2ea1a6123d66f78be12bef43398e63be7d7c97d3d6269a5bf fix-init-of-cmsg.patch -" diff --git a/net/irssi/irssi.SMBuild b/net/irssi/irssi.SMBuild deleted file mode 100755 index f38ea54..0000000 --- a/net/irssi/irssi.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=irssi -version=1.2.2 -build=1sml -homepage="https://irssi.org" -download="https://github.com/irssi/irssi/archive/refs/tags/$version.tar.gz" -desc="Modular, expandable text-mode IRC client" -requires="netbsd-curses glib openssl perl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - LDFLAGS="-lcurses -lterminfo" \ - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -1f11728a5fe521a4dcad90e8d6414f1980e5c3584b5356b049d850ac9c1c7a82a19886dc688b3df2079d5e69da99c0634bb0a2cb2217b52f866cc2868b2ed0f9 irssi-1.2.2.tar.lz -" diff --git a/net/iw/iw.SMBuild b/net/iw/iw.SMBuild deleted file mode 100755 index 6acb057..0000000 --- a/net/iw/iw.SMBuild +++ /dev/null @@ -1,30 +0,0 @@ -# Maintainer: PktSurf -app=iw -version=4.14 -build=1sml -homepage="http://wireless.kernel.org/en/users/Documentation/iw" -download="https://mirrors.edge.kernel.org/pub/software/network/iw/$version.tar.xz" -desc="Tool for configuring Linux wireless devices" -requires="libnl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - make - make install PREFIX= SBINDIR=/bin MANDIR=/share/man DESTDIR="$pkg" - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -3a5c1ff6d2f6ac97ca236bead156a315ced9a3d9c8f9a234d7f2b9f1a3d61213e069ac1dd25d7b1e917f1cccdf1fc557c778a61ed0b0819906fd8bac4fb995de iw-4.14.tar.lz -" diff --git a/net/libmicrohttpd/libmicrohttpd.SMBuild b/net/libmicrohttpd/libmicrohttpd.SMBuild deleted file mode 100755 index ea40b7b..0000000 --- a/net/libmicrohttpd/libmicrohttpd.SMBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: PktSurf -app=libmicrohttpd -version=0.9.66 -build=2sml -homepage="https://www.gnu.org/software/libmicrohttpd/" -download="https://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-$version.tar.gz" -desc="Compact C library providing implementation of the HTTP 1.0 and 1.1 web server" -requires="curl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --disable-static \ - --disable-https - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -29d6de85d6b3c446962756d337084cc80258ad6f715621047a3d1c4939997d4c0a661d7e403096a6ffdc54b7c94ad699128339cb97a04d73666373ff133ce65d libmicrohttpd-0.9.66.tar.lz -" diff --git a/net/lynx/lynx.SMBuild b/net/lynx/lynx.SMBuild deleted file mode 100755 index 6ebd858..0000000 --- a/net/lynx/lynx.SMBuild +++ /dev/null @@ -1,41 +0,0 @@ -# Maintainer: PktSurf -app=lynx -version=2.8.9.19 -build=2sml -homepage="https://lynx.invisible-island.net" -desc="A text-mode web browser" -requires="zlib netbsd-curses openssl libidn" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version-dev - - tar xf $srcdir/$app-$version-dev.tar.?z - cd $app-$version-dev - fixbuilddirpermissions - - applypatch $srcdir/lynx-resize.patch - sed -e 's;__DATE__;"01.01.18";' -e 's;__TIME__;"00:00:00";' -i src/LYMain.c - sed -i 's/define ACCEPT_ALL_COOKIES FALSE/define ACCEPT_ALL_COOKIES TRUE/' userdefs.h -} - -build() { - LIBS="-lcurses -lterminfo -lz" \ - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --with-ssl \ - --enable-ipv6 - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs - - mkfinalpkg -} - -sha512sums=" -900aa23d2bb93fde73f47aef4df08e4057ab1923174d0de87e41d8e15781d746087e81c5a4decaeedc11043232aef24a500814b5c0555b9fde7722a0e998ae32 lynx-2.8.9.19-dev.tar.lz -5ac19d9aaee1f27958f922509dfb27157fed7e0a9a6722dd0c8c2332c88192beeead75ba5503901c1d70c2e45056d68d5258b5c06759d6d8ef8ab4be73ec9ecf lynx-resize.patch -" diff --git a/net/maccalc/maccalc.SMBuild b/net/maccalc/maccalc.SMBuild deleted file mode 100755 index 729fc37..0000000 --- a/net/maccalc/maccalc.SMBuild +++ /dev/null @@ -1,28 +0,0 @@ -# Maintainer: PktSurf -app=maccalc -version=1.0 -build=1sml -homepage="https://openwrt.org/packages/pkgdata/maccalc" -download="https://github.com/openwrt/packages/raw/openwrt-21.02/net/maccalc/src/main.c" -desc="Utility to manipulate MAC addresses" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - mkdir -p $app-$version - cd $app-$version -} - -build() { - mkdir -p $pkg/bin - gcc -Wall -o $pkg/bin/maccalc $srcdir/maccalc.c - install -Dm 644 $srcdir/LICENSE $pkgdocs/LICENSE - - mkfinalpkg -} - -sha512sums=" -5e8c6c70fb315197a039c67b07fc01389d930d9174bf1611d9f0fbe204008f708aee402e94c525870c4ca7dedac0b52ae27ec086ad8dabecf688931fd5897e13 maccalc.c -" diff --git a/net/macchanger/macchanger.SMBuild b/net/macchanger/macchanger.SMBuild deleted file mode 100755 index 266a18e..0000000 --- a/net/macchanger/macchanger.SMBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: PktSurf -app=macchanger -version=1.7.0 -build=1sml -homepage="https://github.com/alobbs/macchanger" -download="https://github.com/alobbs/macchanger/archive/refs/tags/$version.tar.gz" -desc="Utility for viewing and manipulating MAC addresses of network interfaces" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - # Thank you sabotage linux - sed -i '/#include /a#include ' src/netinfo.c -} - -build() { - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs - - mkfinalpkg -} - -sha512sums=" -72fee04fbed6c1c8a1df7a7769fa57956785376d502069034c39b1f04fefc37d16e7d941b7a205c832e704b2b51033fe58f3f2c75a1bb6b1acdc50c9c5740291 macchanger-1.7.0.tar.lz -" diff --git a/net/mailcheck/mailcheck.SMBuild b/net/mailcheck/mailcheck.SMBuild deleted file mode 100755 index 0311679..0000000 --- a/net/mailcheck/mailcheck.SMBuild +++ /dev/null @@ -1,32 +0,0 @@ -# Maintainer: PktSurf -app=mailcheck -version=1.91.2 -build=1sml -homepage="http://mailcheck.sourceforge.net/" -download="https://sourceforge.net/projects/mailcheck/files/mailcheck/$version/mailcheck_$version.tar.gz" -desc="Utility to show read and unread emails inside user directories" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - make - install -Dm 755 mailcheck $pkg/bin/mailcheck - install -Dm 644 mailcheckrc $pkg/etc/mailcheckrc - install -Dm 644 mailcheck.1 $pkg/share/man/man1/mailcheck.1 - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -e80980993dd430eb5f04b330906e764b163a60c353baf0d4ee92009be6014667cbc93124049e39ecdb45b0980bd4c5bf3b8310ab30d8bc93331c94569acbe6a4 mailcheck-1.91.2.tar.lz -" diff --git a/net/minicom/minicom.SMBuild b/net/minicom/minicom.SMBuild deleted file mode 100755 index 170eb6f..0000000 --- a/net/minicom/minicom.SMBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: PktSurf -app=minicom -version=2.7.1 -build=1sml -homepage="https://salsa.debian.org/minicom-team/minicom" -download="https://salsa.debian.org/minicom-team/minicom/-/archive/v$version/minicom-v$version.tar.bz2" -desc="Text-mode utility for communicating with serial devices" -requires="netbsd-curses" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/fix-includes.patch -} - -build() { - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -90a71513ba6c46becb858aedd784d1ef513cd4d959858230c731213adec053fcb1c9a42ae8afc2aad1202c0218de8f9f5f8ed5f0fd5fab338dcde82052a0d3e8 minicom-2.7.1.tar.lz -5acff3efb0b8b02333291722044d7c473bf19eec8a26e66c0e0f41895f3e3f071dff13515ec20f7ce17368732e3674f0a42b38602e61b04e9cd70e61012641ff fix-includes.patch -" diff --git a/net/mktorrent/mktorrent.SMBuild b/net/mktorrent/mktorrent.SMBuild deleted file mode 100755 index ee90ee2..0000000 --- a/net/mktorrent/mktorrent.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=mktorrent -version=1.1 -build=1sml -homepage="https://github.com/pobrn/mktorrent" -download="https://github.com/pobrn/mktorrent/archive/refs/tags/v$version.tar.gz" -desc="Utility for creating torrent files used in bittorrent protocol" -requires="openssl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/makefile.patch -} - -build() { - make - install -Dm 755 mktorrent $pkg/bin/mktorrent - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -d82e3bc32c256a1f204a97f9852d989f1812706fe90fb5a705db5bdf571dd6b1a315a75836d39965f67cad479aa7ef2e2c7b19e48a79411d6268edf22e40f57e mktorrent-1.1.tar.lz -3387b71fa334def8f8005629fe3509f8012da16e542bde679176fe5c8e7f71e3393e412ce637b234dac4071e899947d9fe6f2b6f79ed055a72f1af3791693030 makefile.patch -" diff --git a/net/motion/motion.SMBuild b/net/motion/motion.SMBuild deleted file mode 100755 index 4abbb92..0000000 --- a/net/motion/motion.SMBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: PktSurf -app=motion -version=4.2.2 -build=1sml -homepage="https://motion-project.github.io/" -download="https://github.com/Motion-Project/motion/archive/refs/tags/release-$version.tar.gz" -desc="Software-based camera motion detection utility" -requires="bzip2 zlib gnutls sqlite libidn libtasn1 nettle libmicrohttpd libxext dbus sdl2 libwebp ffmpeg" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-release-$version.tar.?z* - cd "$app-release-$version" - fixbuilddirpermissions -} - -build() { - # Building with mmal causes link errors with /opt/vc/lib/libvcsm.so, hence we disable it. - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --without-mmal - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -79da14f2e93caf8dd0da6e4eb116c981db3b6b7d2d9c38a0dd1afb0364f694b4d598d8c4cd25b7cb7be37a20a2cc84b16d50bb79801b47bdbdca42a236db0315 motion-release-4.2.2.tar.lz -" diff --git a/net/mtr/mtr.SMBuild b/net/mtr/mtr.SMBuild deleted file mode 100755 index 6af06d7..0000000 --- a/net/mtr/mtr.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=mtr -version=0.93 -build=1sml -homepage="https://www.bitwizard.nl/mtr/" -download="https://github.com/traviscross/mtr/archive/refs/tags/v$version.tar.gz" -desc="Combined traceroute and ping utility for diagnosing networks problems" -requires="netbsd-curses libcap gtk2" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin - - make - make install DESTDIR=$pkg - - cp BSDCOPYING COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -9ab524d8be879cd2a56ea959cba69aadb7a94f9934070954252ee0b5b035504e8d39a8bdb4dca1b5fbf422e588d434ba47ebea3f3e9db4dc0cf0deb1d9ea0bd5 mtr-0.93.tar.lz -" diff --git a/net/mutt/mutt.SMBuild b/net/mutt/mutt.SMBuild deleted file mode 100755 index 9a54ae8..0000000 --- a/net/mutt/mutt.SMBuild +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: PktSurf -app=mutt -version=1.10.1 -build=3sml -homepage="https://www.mutt.org" -download="http://ftp.mutt.org/pub/mutt/mutt-$version.tar.gz" -desc="Advanced text-mode mail client" -requires="netbsd-curses zlib libidn openssl cyrus-sasl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - LDFLAGS="-lterminfo" \ - ./configure \ - --prefix= \ - --sysconfdir=/etc/mutt \ - --enable-imap \ - --enable-pop \ - --enable-smtp \ - --with-ssl \ - --with-sasl \ - --disable-doc \ - --with-homespool=/var/spool - - make - make install DESTDIR=$pkg - - cp GPL COPYRIGHT $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -82e33fbec999f0397b2e2b189dffe6b13e159c4ef5a44f87fa88894a02e24b00f61e8c808d206963e47a9b62b9ebfa025cb444a06866dbc21471ba10116a07eb mutt-1.10.1.tar.lz -" diff --git a/net/net-snmp/net-snmp.SMBuild b/net/net-snmp/net-snmp.SMBuild deleted file mode 100755 index 22f4338..0000000 --- a/net/net-snmp/net-snmp.SMBuild +++ /dev/null @@ -1,65 +0,0 @@ -# Maintainer: PktSurf -app=net-snmp -version=5.8 -build=1sml -homepage="http://www.net-snmp.org/" -download="https://sourceforge.net/projects/net-snmp/files/net-snmp/$version/net-snmp-$version.tar.gz" -desc="Collection of tools for implementing SNMP version 1 and up" -requires="libpcap pcre python3" -# net-snmp does not like our custom config.cache -noautoconfsite=1 - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/fix-includes.patch - applypatch $srcdir/netsnmp-swinst-crash.patch - applypatch $srcdir/report-empty-strings-correctly.patch -} - -build() { - ./configure \ - --prefix="/" \ - --sbindir=/bin \ - --sysconfdir=/etc/snmp \ - --mandir=/share/man \ - --with-default-snmp-version="3" \ - --with-sys-contact="root@localhost" \ - --with-sys-location="Unknown" \ - --with-logfile="/var/log/snmpd.log" \ - --with-persistent-directory="/var/lib/net-snmp" \ - --with-openssl \ - --enable-ipv6 \ - --enable-as-needed \ - --with-perl-modules="INSTALLDIRS=vendor" \ - --disable-embedded-perl \ - --disable-debugging \ - --without-rpm \ - --program-suffix= \ - --program-prefix= \ - --enable-static=no \ - --build=arm-musl-linux - - make - sed -i 's@INSTALLMAN3DIR = none@INSTALLMAN3DIR = $(DESTDIR)$(INSTALLMAN3DIR)@g' perl/SNMP/Makefile - make install DESTDIR=$pkg - - install -Dm 755 $srcdir/rc.snmpd $pkg/etc/rc.d/rc.snmpd.new - install -Dm 644 $srcdir/snmpd.conf $pkg/etc/snmp/snmpd.conf.new - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -4b6cf8866c85c296cefab6a409c6c01ddbdee1e053cad6d4663816249b24e4f82cad41056d62a736ae0b4be06dc186b0843eaf0217ffd0a2ccb2b944c35e6e39 net-snmp-5.8.tar.lz -87a552bd2e41684bba6e87fbcf6454a85ee912d7a339411fda24cebddf7661f0856729e076a917920a542cf84b687ffd90a091daa15f2c48f0ff64f3a53c0ddb fix-includes.patch -4ad92f50b14d5e27ba86256cc532a2dd055502f4d5fbb1700434f9f01f881fd09bb1eadb94e727554e1470f036707558314c64a66d0376b54e71ab31d5e4baa3 netsnmp-swinst-crash.patch -633fbf574a76f63b0ae5340cd86439ca89ef2621b890917c35a884fe2d41052d4ec65c88f0d3f94f2bb3481b2bc1989647d3e697f7995b72abee47799300c26b report-empty-strings-correctly.patch -" diff --git a/net/netcat/netcat.SMBuild b/net/netcat/netcat.SMBuild deleted file mode 100755 index 26350de..0000000 --- a/net/netcat/netcat.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=netcat -version=1.10 -build=1sml -homepage="https://salsa.debian.org/debian/netcat" -download="https://salsa.debian.org/debian/netcat/-/archive/upstream/$version/netcat-upstream-$version.tar.bz2" -desc="Utility to read and write data across network connections" -requires="openssl libpcap" - -prepbuilddir() { - mkandenterbuilddir - rm -rf nc-110 - - tar xf $srcdir/nc-110.tar.?z* - cd nc-110 - fixbuilddirpermissions - - applypatch $srcdir/nc-110-21.diff - applypatch $srcdir/nc.diff -} - -build() { - make linux - install -Dm 755 nc $pkg/bin/nc - install -Dm 644 debian/nc.1 $pkg/share/man/man1/nc.1 - - ( cd $pkg/bin ; ln -s nc netcat ) - - cp $srcdir/NOLICENSE-COPYRIGHT $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -80359fc233f1f5dd450cb15a496f733fd4d7b65087f4f54474d2307b316282b8faf3e54f80caad847bbfd703d6197e5053dd7b8b4ef28fe0c34ed6b81c294733 nc-110.tar.xz -d52a70eaf5cd0b86ef35bc2940ac4418e6f6ff608815bd1fd04466858f727e4216cf5412ed7dea051223e4ab41535bc69d1f125981c464815c2686e8f4c29781 nc-110-21.diff -870d2a3d7cd0f2cbe9049f4a54cfbf8258d40a77fc38e44b59cd4683360a1ca6bfa737303cbd4810d28127fb96ef052f8102646f59b26234cfe9db22b51276a3 nc.diff -" \ No newline at end of file diff --git a/net/nginx/nginx.SMBuild b/net/nginx/nginx.SMBuild deleted file mode 100755 index d2f886b..0000000 --- a/net/nginx/nginx.SMBuild +++ /dev/null @@ -1,67 +0,0 @@ -# Maintainer: PktSurf -app=nginx -version=1.17.3 -build=2sml -homepage="http://nginx.org" -download="http://nginx.org/download/nginx-$version.tar.gz" -desc="High-performance HTTP server with support for IMAP3 and POP3 proxies" -requires="zlib pcre openssl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - CC="$CC" \ - ./configure \ - --prefix=/var/lib \ - --with-http_ssl_module \ - --with-http_v2_module \ - --with-http_stub_status_module \ - --with-http_auth_request_module \ - --with-http_gunzip_module \ - --with-http_realip_module \ - --with-http_secure_link_module \ - --with-http_slice_module \ - --with-threads \ - --with-ipv6 \ - --sbin-path=/bin/nginx \ - --conf-path=/etc/nginx/nginx.conf \ - --error-log-path=/var/log/nginx/error.log \ - --lock-path=/var/lock/nginx.lock \ - --http-log-path=/var/log/nginx/access.log \ - --http-client-body-temp-path=/var/spool/nginx\body \ - --http-fastcgi-temp-path=/var/spool/nginx/fastcgi \ - --http-proxy-temp-path=/var/spool/nginx/proxy \ - --http-scgi-temp-path=/var/spool/nginx/scgi \ - --http-uwsgi-temp-path=/var/spool/nginx/uwsgi - - make - make install DESTDIR=$pkg - - mkdir -p $pkg/var/spool/nginx - install -Dm 644 $srcdir/nginx.conf.sample $pkg/etc/nginx/nginx.conf.sample - - cp LICENSE $pkgdocs/ - - preprunitservice -s nginx -d - - ( - cd $pkg/etc/nginx - for conffile in fastcgi_params fastcgi.conf mime.types nginx.conf koi-utf \ - koi-win scgi_params uwsgi_params win-utf ; do - mv $conffile $conffile.new - done - ) - - mkfinalpkg -} - -sha512sums=" -e2121f346bda491adb16b4120d93f95ab260ceb35376a204769490aee0dfeeaf44eca0f5ab652a6aeecc4a95e1081a3364bcf60992aa97e2fb082b9ba1a5316b nginx-1.17.3.tar.lz -" diff --git a/net/nmap/nmap.SMBuild b/net/nmap/nmap.SMBuild deleted file mode 100755 index fdbfb3d..0000000 --- a/net/nmap/nmap.SMBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: PktSurf -app=nmap -version=7.40 -build=2sml -homepage="https://nmap.org/" -download="https://nmap.org/dist/nmap-$version.tar.bz2" -desc="Advanced network exploration and security auditing tool" -requires="gcc-libs pcre libpcap openssl python3" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --with-liblua=included \ - --without-nmap-update - - make $MAKEFLAGS - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -a569e1c600a9d7bf40122486a720b8881e9c7f55c87c889acb57566d406019f26dcd60f532cdbf27cc0aa07d161fb8fca01d28d246fcb8e8e5643131e5571feb nmap-7.40.tar.lz -" diff --git a/net/opendkim/opendkim.SMBuild b/net/opendkim/opendkim.SMBuild deleted file mode 100755 index 8dd0587..0000000 --- a/net/opendkim/opendkim.SMBuild +++ /dev/null @@ -1,48 +0,0 @@ -# Maintainer: PktSurf -app=opendkim -version=2.10.3 -build=1sml -homepage="http://opendkim.org/" -download="http://downloads.sourceforge.net/opendkim/opendkim-2.10.3.tar.gz" -desc="Implementation of the DKIM sender authentication system" -requires="db openssl libmilter" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/openssl_1.1.0_compat.patch - - autoreconf -vi -} - -build() { - ./configure \ - --prefix="" \ - --sbindir=/bin \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --with-db \ - --with-openssl \ - --with-libcurl - - make - make install DESTDIR=$pkg - - install -Dm 640 opendkim/opendkim.conf.simple $pkg/etc/opendkim/opendkim.conf.new - - cp LICENSE* $pkgdocs/ - - preprunitservice -s opendkim -d - - mkfinalpkg -} - -sha512sums=" -97923e533d072c07ae4d16a46cbed95ee799aa50f19468d8bc6d1dc534025a8616c3b4b68b5842bc899b509349a2c9a67312d574a726b048c0ea46dd4fcc45d8 opendkim-2.10.3.tar.gz -f971979c5687286213218a5f0b420ed3593c262231717fb85eeee51762acde9b6e6fa0be5c7731e2da1fcf2d6761dfb3e9d6a1477ec9675fd2bbefceb734799f openssl_1.1.0_compat.patch -" diff --git a/net/openssh/openssh.SMBuild b/net/openssh/openssh.SMBuild deleted file mode 100755 index 82e1fcb..0000000 --- a/net/openssh/openssh.SMBuild +++ /dev/null @@ -1,62 +0,0 @@ -# Maintainer: PktSurf -app=openssh -version=8.1p1 -build=1sml -homepage="https://www.openssh.com/" -download="https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-$version.tar.gz" -desc="Client-server implementation of the SSH protocol suite" -requires="zlib openssl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/openssh-sys_param.patch - - # prevent from installing some things (keysign and maybe others) setuid. - sed -i 's@-m 4711@-m 0750@g' Makefile.in -} - -build() { - CFLAGS+=" -D_BSD_SOURCE -DMISSING_FD_MASK -DMISSING_NFDBITS" \ - ./configure \ - --prefix= \ - --bindir=/bin \ - --sbindir=/bin \ - --libexecdir=/lib/ssh \ - --sysconfdir=/etc/ssh \ - --with-privsep-user=nobody --with-privsep-path=/var/empty --with-xauth="$pkg/bin/xauth" \ - --without-stackprotect --with-md5-passwords --with-mantype=man \ - --disable-strip --disable-lastlog --disable-utmp --disable-utmpx \ - --disable-wtmp --disable-wtmpx --disable-pututline \ - --disable-pututxline - - mkdir netinet - touch netinet/in_systm.h - - sed -i '/USE_BTMP/d' config.h - sed -i '/USE_UTMP/d' config.h - sed -i 's@HAVE_DECL_HOWMANY 1@HAVE_DECL_HOWMANY 0@' config.h - - make - make install-nokeys DESTDIR="$pkg" - - cp LICENCE $pkgdocs/ - - rm -f $pkg/etc/ssh/sshd_config - cp $srcdir/sshd_config $pkg/etc/ssh/sshd_config.new - mv $pkg/etc/ssh/ssh_config $pkg/etc/ssh/ssh_config.new - - preprunitservice -s openssh - - mkfinalpkg -} - -sha512sums=" -f1069dbef01e86d671d4a6d78955995dcc3956d067d08b44a6b2f86b5805ef8304fa54ac36cf7a92365a1d919e99475c460615fe3ef678ff183015961e77366a openssh-8.1p1.tar.lz -c5a3b4382c0f63c1246e2113ee28cb18906fefef7ddffaf98552bb14f3348e42b4e18c14e21919dddfab274a5645947b0aaad190fde514ec12410c74ffeac568 openssh-sys_param.patch -" diff --git a/net/openvpn/openvpn.SMBuild b/net/openvpn/openvpn.SMBuild deleted file mode 100755 index 1ccd777..0000000 --- a/net/openvpn/openvpn.SMBuild +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: PktSurf -app=openvpn -version=2.4.9 -build=1sml -homepage="https://openvpn.net/" -download="https://github.com/OpenVPN/openvpn/archive/refs/tags/v$version.tar.gz" -desc="Full-featured SSL-based VPN suite" -requires="lzo lz4 openssl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin \ - --sysconfdir=/etc/openvpn \ - --enable-iproute2 \ - --disable-plugin-auth-pam - - make - make install DESTDIR=$pkg - - cp COPY* $pkgdocs/ - - preprunitservice -s openvpn -d - - mkfinalpkg -} - -sha512sums=" -7415874cef32156e0384c6b21a370e7416afa4140087ceebae23e02b13da1ee38a7049236bb890ec4f33fb183e5f48c6d9d29663c5accc0ddedc77f998c6bebf openvpn-2.4.9.tar.lz -" diff --git a/net/php/php.SMBuild b/net/php/php.SMBuild deleted file mode 100755 index e4057d3..0000000 --- a/net/php/php.SMBuild +++ /dev/null @@ -1,110 +0,0 @@ -# Maintainer: PktSurf -app=php -version=7.4.33 -rrdversion=2.0.3 -build=3sml -homepage="https://www.php.net/" -download="https://www.php.net/distributions/php-$version.tar.xz" -desc="Scripting language suited for creating dynamic websites" -requires="enchant libgd db gmp icu libsodium libxslt sqlite curl libtool pcre2 postfix aspell openssl oniguruma libffi bzip2 zlib libexif intltool readline libsodium mariadb libwebp" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - - # Add the rrd graph module - ( - cd ext - tar xf $srcdir/rrd-$rrdversion.tgz - ) - - fixbuilddirpermissions - - ./buildconf -f -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc/php \ - --sbindir=/bin \ - --localstatedir=/var \ - --mandir=/share/man \ - --enable-fpm \ - --with-fpm-user=nobody \ - --with-fpm-group=nogroup \ - --with-layout=PHP \ - --with-config-file-scan-dir=/etc/php \ - --with-config-file-path=/etc/php/conf.d \ - --enable-filter \ - --enable-mbstring \ - --enable-pcntl \ - --with-libxml \ - --with-expat \ - --with-jpeg \ - --with-xpm \ - --with-bz2=shared \ - --enable-calendar=shared \ - --with-ffi=shared \ - --with-openssl=shared \ - --with-external-pcre \ - --with-zlib=shared \ - --with-sqlite3=shared \ - --with-enchant=shared \ - --with-gmp=shared \ - --with-gettext=shared \ - --with-webp \ - --enable-exif=shared \ - --enable-intl=shared \ - --enable-gd=shared \ - --with-tsrm-pthreads \ - --with-sodium=shared \ - --with-readline \ - --enable-static=no \ - --enable-shared=yes \ - --with-pic \ - --enable-sockets \ - --enable-opcache \ - --with-imap-ssl \ - --disable-rpath \ - --with-pdo-sqlite=shared \ - --with-rrd=shared - - make - make install INSTALL_ROOT=$pkg - - cp LICENSE $pkgdocs/ - - install -Dm 644 sapi/fpm/init.d.php-fpm $pkg/etc/rc.d/rc.php-fpm.new - install -Dm 644 $srcdir/php.ini $pkg/etc/php/php.ini.new - - ( - cd $pkg/etc/php - mv php-fpm.conf.default php-fpm.conf.default.new - cd php-fpm.d ; mv www.conf.default www.conf.default.new - ) - - # Session directory for PHP: - mkdir -p $pkg/var/lib/php - chmod 770 $pkg/var/lib/php - chown root:www-data $pkg/var/lib/php - - # PHP sometimes puts junk in the root directory: - ( - cd $pkg/lib/php - rm -rfv .channels .depdb .depdblock .filemap .lock .registry - cd $pkg - rm -rfv .channels .depdb .depdblock .filemap .lock .registry - rm -rfv $pkg/php - ) - - mkfinalpkg -} - -sha512sums=" -213729a46f12230d24dbff2d99f298559269e1aabae748056d9ae16e8fad6081c86f886678a0d8d851c5109f2d523a9d6b84e57a7ec3b8f8899820d6222f1e4c php-7.4.33.tar.lz -28679ccead54806d1e92accc6f5ebab582a41db802f95797ddb43e3e15690889be3437f22e2a14939d217422ac2700ef90ae0a9b36244ddead3856343b3e09b4 rrd-2.0.3.tgz -" diff --git a/net/postfix/postfix.SMBuild b/net/postfix/postfix.SMBuild deleted file mode 100755 index 8d72d6c..0000000 --- a/net/postfix/postfix.SMBuild +++ /dev/null @@ -1,69 +0,0 @@ -# Maintainer: PktSurf -app=postfix -version=3.4.9 -build=2sml -homepage="https://www.postfix.org/" -download="https://cdn.postfix.johnriley.me/mirrors/postfix-release/official/postfix-$version.tar.gz" -desc="Fast, secure and easy-to-administer mail server" -requires="pcre openssl sqlite db icu" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - - AUXLIBS="-lssl -lcrypto" \ - CCARGS="-DNO_NIS -DNO_NISPLUS -DUSE_TLS" \ - make -f Makefile.init makefiles - - make - - sh postfix-install -non-interactive \ - install_root=$pkg \ - daemon_directory=/lib/postfix \ - manpage_directory=/share/man \ - command_directory=/bin - - cp COPYRIGHT LICENSE $pkgdocs/ - - ( - cd $pkg/etc/postfix - mv master.cf.proto master.cf.proto.new - mv aliases aliases.new - mv access access.new - mv main.cf main.cf.new - mv canonical canonical.new - mv transport transport.new - mv makedefs.out makedefs.out.new - mv postfix-files postfix-files.new - mv header_checks header_checks.new - mv master.cf master.cf.new - mv bounce.cf.default bounce.cf.default.new - mv virtual virtual.new - mv generic generic.new - - cd ../../ - - # unnecessary stupidity hardcoded in the Makefile - mv usr/sbin/sendmail bin/ - cd bin - ln -s sendmail mailq - ln -s sendmail newaliases - rm -rv $pkg/usr - ) - - preprunitservice -s postfix -d - preprunitservice -s postfix.ssl -d - - mkfinalpkg -} - -sha512sums=" -83c62f7d4f9394354a30cc3ece54f5bbfb09f33716d7a24d36493ed937f360c7eaee268562bc88b0efffd26a6077206b14baf7803853b1857334b76eb4beecf0 postfix-3.4.9.tar.lz -" diff --git a/net/ppp/ppp.SMBuild b/net/ppp/ppp.SMBuild deleted file mode 100755 index 42e5073..0000000 --- a/net/ppp/ppp.SMBuild +++ /dev/null @@ -1,72 +0,0 @@ -# Maintainer: PktSurf -app=ppp -version=2.4.8 -build=1sml -homepage="https://github.com/ppp-project/ppp" -download="https://github.com/ppp-project/ppp/archive/refs/tags/ppp-$version.tar.gz" -desc="PPP daemon for establishing connectivity over a network" -requires="libpcap openssl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - - applypatch $srcdir/0011-build-sys-don-t-put-connect-errors-log-to-etc-ppp.patch - applypatch $srcdir/fix-bound-check-eap.patch - applypatch $srcdir/fix-paths.patch - applypatch $srcdir/fix-pppd-magic.h.patch - applypatch $srcdir/fix-pppd-pppoe.h.patch - applypatch $srcdir/musl-fix-headers.patch - applypatch $srcdir/pppd-Ignore-received-EAP-messages-when-not-doing-EAP.patch - applypatch $srcdir/radius-Prevent-buffer-overflow-in-rc_mksid.patch - - export CFLAGS="$CFLAGS -D_GNU_SOURCE" - sed -i "s:-O2 -pipe -Wall -g:${CFLAGS}:" pppd/Makefile.linux - sed -i "s:-g -O2:${CFLAGS}:" pppd/plugins/Makefile.linux - sed -i "s:-O2:${CFLAGS}:" pppstats/Makefile.linux - sed -i "s:-O2 -g -pipe:${CFLAGS}:" chat/Makefile.linux - sed -i "s:-O:${CFLAGS}:" pppdump/Makefile.linux - sed -i "s:^#FILTER=y:FILTER=y:" pppd/Makefile.linux - sed -i "s:^#HAVE_INET6=y:HAVE_INET6=y:" pppd/Makefile.linux - sed -i "s:^#CBCP=y:CBCP=y:" pppd/Makefile.linux - sed -i "s:^#CBCP=y:CBCP=y:" pppd/Makefile.linux - sed -i "s:^#USE_CRYPT=y:USE_CRYPT=y:" pppd/Makefile.linux - - ./configure \ - --prefix= \ - --localstatedir=/var \ - $builddist - - make COPTS="$CFLAGS" - make INSTROOT="$pkg" BINDIR="$pkg"/bin install - - cp README* $pkgdocs/ - - install -Dm 644 include/net/ppp_defs.h $pkg/include/net/ppp_defs.h - mkdir -p $pkg/etc/ppp - cp etc.ppp/* $srcdir/ip-* $pkg/etc/ppp/ - - cp scripts/{pon,poff} $pkg/bin/ - install -Dm 644 scripts/pon.1 $pkg/share/man/man1/pon.1 - - mkfinalpkg -} - -sha512sums=" -de20c71f9ce25aefc41a0779902a0619690cbec5eaf5f42e8d91d1a56925aec9ece0955e5a8184538f6a33815e1aa46ddc9a7d0fe73db4881e93c57256abf729 ppp-2.4.8.tar.lz -b490971d03fef4de66b61123f80a0087270bcb88466ae8ed98ea9a08b35d4c7c46b2dadd304e2970a4206bb5760a14370d7e3873de6240119d88e927ecef840c 0011-build-sys-don-t-put-connect-errors-log-to-etc-ppp.patch -ba0c062f93400008ddf47897ac2ab6a2f5017bc7f4167d1a93dd3a5c04068a922490eb4082b0da80f0c3aea6c87fdfbca3568548724a0abc148588ab86a6df32 fix-bound-check-eap.patch -8384afb992a98a7f97b484866e6aa1b1de51e901d7837f84f7ce2beba6815591450fab43957f03b65804424c4940c59640a9cd878979240a171aa77427e9c4ff fix-paths.patch -d1067defff79d6c9f67121a9214e41a1bcca1e3b8a345ad905d223fdb8835142bad7cc3b556a3eca509ddf51cf808741773f31f4dca74e834b612a15854a5e6b fix-pppd-magic.h.patch -d76237c82af0a3ed7ede9e814d6849b94221f1fd15e4ee68cadd33a308a32d87d635acd14f84508c9e38a10ad0a9e96ce391044da37e217d11b89a4f6631abf7 fix-pppd-pppoe.h.patch -55642ce365a7cf7dda05366ac6e74f6badba3cc7bc980760e0a2ee7bfa768ea033c4a3880b3387e0787d719742698f627c624f890d68800344d31c0309c0374d musl-fix-headers.patch -ce1bf3298f3f99a7de643bd070cb0e7e7b1dd9621926637ffc93fd2ef552781424ce9a68c88de6eb25dc2593d543e8e329eccc2d00982bde2493e8efb7903051 pppd-Ignore-received-EAP-messages-when-not-doing-EAP.patch -d175085eaa93ccf8ade7be4f9818efe353017da7cec41d9312ad2c6685e3763834aff76d673e9d2bb0b44336f926537569ddb86a6035ec33ab8b6a7de2340132 radius-Prevent-buffer-overflow-in-rc_mksid.patch -" diff --git a/net/privoxy/privoxy.SMBuild b/net/privoxy/privoxy.SMBuild deleted file mode 100755 index 0d2039c..0000000 --- a/net/privoxy/privoxy.SMBuild +++ /dev/null @@ -1,57 +0,0 @@ -# Maintainer: PktSurf -app=privoxy -version=3.0.33 -build=2sml -homepage="https://www.privoxy.org/" -download="https://www.privoxy.org/sf-download-mirror/Sources/$version%20%28stable%29/privoxy-$version-stable-src.tar.gz" -desc="Web proxy with advanced filtering capabilities" -requires="zlib pcre" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - # Put the docs where we tell them to go: - sed -i "/^DOC_DEST/s/= .*/= @docdir@/" GNUmakefile.in - - # The Makefile checks if certain config files exist, and if so, adds a - # .new suffix. Turn this behavior off. We will do it below. - sed -i "s/\[ -s \"\$(CONF_DEST)\/\$\$i\" \]/false/" GNUmakefile.in - - autoreconf -vif -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin \ - --sysconfdir=/etc/"$app" \ - --localstatedir=/var \ - --with-docbook=no \ - --with-user=nobody \ - --enable-no-gifs \ - --enable-compression \ - --enable-large-file-support - - make - make install DESTDIR=$pkg - - preprunitservice -s privoxy -d - - ( - cd $pkg/etc/privoxy - for f in config match-all.action regression-tests.action trust user.action user.filter ; - do mv $f $f.new - done - ) - - mkfinalpkg -} - -sha512sums=" -081eab421edad8c2d24c82e2e36a9dd63376844c22ffdae5f41aff187d6c279ba1bf4c1de90815b49f9bea71f68941c201189278c185c235a14949efeaa1dd99 privoxy-3.0.33.tar.lz -" diff --git a/net/proftpd/proftpd.SMBuild b/net/proftpd/proftpd.SMBuild deleted file mode 100755 index ad842a4..0000000 --- a/net/proftpd/proftpd.SMBuild +++ /dev/null @@ -1,43 +0,0 @@ -# Maintainer: PktSurf -app=proftpd -version=1.3.6 -build=1sml -homepage="http://www.proftpd.org/" -download="https://github.com/proftpd/proftpd/archive/refs/tags/v$version.tar.gz" -desc="Secure and configurable FTP server" -requires="attr netbsd-curses libcap" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --sbindir=/bin \ - --enable-ipv6 - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - rm -f $pkg/etc/proftpd/* $pkg/etc/proftpd.conf - cat $srcdir/proftpd.conf > $pkg/etc/proftpd.conf.new - cat $srcdir/ftpusers > $pkg/etc/ftpusers.new - - mkdir -p $pkg/var/db/proftpd - chown nobody:nogroup $pkg/var/db/proftpd - - mkfinalpkg -} - -sha512sums=" -434897811595327c368d39f877e1bdf9840682964efc8e71f5a81c85f22451c061fc520e09e26cd0faa6eb69ca7d6bc79ebfd1bf9978c703f6f2277485e50006 proftpd-1.3.6.tar.lz -" diff --git a/net/rp-pppoe/rp-pppoe.SMBuild b/net/rp-pppoe/rp-pppoe.SMBuild deleted file mode 100755 index 641f25a..0000000 --- a/net/rp-pppoe/rp-pppoe.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=rp-pppoe -version=3.13 -build=1sml -homepage="https://dianne.skoll.ca/projects/rp-pppoe/" -desc="Client program for establishing connectivity over PPPoE" -requires="ppp" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/musl-fix.patch -} - -build() { - cd src - - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --sbindir=/bin \ - --enable-plugin=/include/pppd - - make all - make install DESTDIR=$pkg - - mkfinalpkg -} - -sha512sums=" -140e3bf11910cea3c0f04a5b8fe9c72dd607dfdec1a6ef14475c4ff28f1fcb51fb6528d50182d5772e3a7bc3df0f4a795a27de47b0e52b9d3f9443893cc16605 rp-pppoe-3.13.tar.lz -5f7e9d50be7c4b007bc2f86cee42b8e5dc4ead6a8def618441c0db0ecb083a6631bd90d6292279c2188986820f7b8f488b41ff6cb186bb541e3e705858a21034 musl-fix.patch -" diff --git a/net/rrdtool/rrdtool.SMBuild b/net/rrdtool/rrdtool.SMBuild deleted file mode 100755 index 92399d5..0000000 --- a/net/rrdtool/rrdtool.SMBuild +++ /dev/null @@ -1,41 +0,0 @@ -# Maintainer: PktSurf -app=rrdtool -version=1.7.2 -build=1sml -homepage="https://www.rrdtool.org" -download="https://oss.oetiker.ch/rrdtool/pub/rrdtool-$version.tar.gz" -desc="Data logging and graphing application" -requires="perl python3 lua" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --enable-perl \ - --enable-ruby \ - --enable-python \ - --enable-lua \ - --disable-libwrap \ - --enable-perl-site-install \ - --with-perl-options='INSTALLDIRS=vendor' - - make - make install DESTDIR=$pkg - - cp COPYRIGHT $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -ed7331f68f4a53e0409237826bbb9747ba81ac99466d15e33cae267137918180f6db31586d19c4e892d9b62eac06a190e6e7ffceb0052ff47616f77afb2cb709 rrdtool-1.7.2.tar.lz -" diff --git a/net/rsync/rsync.SMBuild b/net/rsync/rsync.SMBuild deleted file mode 100755 index 6a622bf..0000000 --- a/net/rsync/rsync.SMBuild +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: PktSurf -app=rsync -version=3.2.7 -build=2sml -noautoconfsite=1 -homepage="https://rsync.samba.org/" -download="https://download.samba.org/pub/rsync/src/rsync-$version.tar.gz" -desc="Tool to backup and synchronise files over a network" -requires="acl attr popt" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - CFLAGS+=" -include sys/sysmacros.h" \ - ./configure \ - --prefix= \ - --disable-locale \ - --disable-xxhash - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -84cc595340543e3e895c99ec1eba8b5ca0264340ff293db1e1e07f415cdfd781d50f869a96c3e476910a7a32a836bbacc18285f4d6ccca56a4b8dd1cadc195f2 rsync-3.2.7.tar.lz -" diff --git a/net/rtl-sdr/rtl-sdr.SMBuild b/net/rtl-sdr/rtl-sdr.SMBuild deleted file mode 100755 index c442a47..0000000 --- a/net/rtl-sdr/rtl-sdr.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=rtl-sdr -version=20180603 -build=1sml -homepage="https://osmocom.org/projects/rtl-sdr/wiki/Rtl-sdr" -desc="Programs and libraries for communicating with software-defined radios" -requires="eudev libusb" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -9a72bb1c3f65965701b05023aff83e7d71e78be5f7a19aa40cdf2c69d06d2e7d592734e06592a588fd8a76db7c2565f8f594cc18d0e048f47aa6aed6f3c918fe rtl-sdr-20180603.tar.lz -" diff --git a/net/rtorrent/rtorrent.SMBuild b/net/rtorrent/rtorrent.SMBuild deleted file mode 100755 index da5d43c..0000000 --- a/net/rtorrent/rtorrent.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=rtorrent -version=0.9.8 -build=1sml -homepage="https://github.com/rakshasa/rtorrent" -download="https://github.com/rakshasa/rtorrent/archive/refs/tags/v$version.tar.gz" -desc="command-line bittorrent client" -requires="gcc-libs netbsd-curses zlib openssl curl libtorrent" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - CXXFLAGS+=" -lpthread" \ - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -5237eed4c9ffe68db11904a1163cded06110626de5e4d675f38b7b6fdad756e1f2bce64cee2ddb06739d1841ca8ef83c36397f7acab981105bc22e3702b036a1 rtorrent-0.9.8.tar.lz -" diff --git a/net/samba/samba.SMBuild b/net/samba/samba.SMBuild deleted file mode 100755 index c54a692..0000000 --- a/net/samba/samba.SMBuild +++ /dev/null @@ -1,89 +0,0 @@ -# Maintainer: PktSurf -app=samba -version=4.18.0 -build=1sml -homepage="https://www.samba.org" -download="https://download.samba.org/pub/samba/stable/samba-$version.tar.gz" -desc="CIFS file and print server, version 4" -requires="acl attr netbsd-curses readline libcap tar db popt libaio perl-modules" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/add_missing___compar_fn_t.patch - applypatch $srcdir/getpwent_r.patch - applypatch $srcdir/missing-headers.patch - applypatch $srcdir/musl_rm_unistd_incl.patch - applypatch $srcdir/musl_uintptr.patch - applypatch $srcdir/netgroup.patch - applypatch $srcdir/pidl.patch - applypatch $srcdir/samba-bgqd-include-signal-h.patch - - #SAMBAJOBS="$(echo $MAKEFLAGS | sed 's@-j@@')" - - # Enabling quotas results in "[2022/03/05 14:15:09.123806, 0] ../../source3/lib/sysquotas.c:566(sys_get_quota) - # sys_path_to_bdev() failed for path [.]! - # in logs, so disable them - # https://codeberg.org/davidak/nixos-config/issues/5 - # https://lists.samba.org/archive/samba/2010-October/158650.html -} - -build() { - unset CFLAGS CXXFLAGS - ./configure \ - --prefix=/ \ - --bindir=/bin \ - --sbindir=/bin \ - --libexecdir=/lib \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --docdir=/doc/"$app-$version" \ - --with-configdir=/etc/samba \ - --with-lockdir=/var/lock \ - --with-logfilebase=/var/log \ - --with-piddir=/var/run \ - --with-privatedir=/etc/samba \ - --without-ldap \ - --without-ads \ - --without-pam \ - --without-ad-dc \ - --without-systemd \ - --without-gettext \ - --without-gpgme \ - --disable-rpath-install \ - --disable-python \ - --without-regedit \ - --without-quotas \ - --disable-fault-handling - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - cp examples/smb.conf.default $pkg/etc/samba/smb.conf.new - - rmdir $pkg/bind-dns - - preprunitservice -s smbd -d - preprunitservice -s nmbd -d - - mkfinalpkg -} - -sha512sums=" -969acb2ece0c34ff19eac31cdef1362ffc73c6f60abc477a5ab9cb089e13d942b222a7ad7bde8833a551d55d6b42d1cec7d7b19e6919a9a142881458e2611f27 samba-4.18.0.tar.lz -bc2df70e327fea5dfbd923600225f1448815d842c37d6937dd74eab7f7699d7f52cd7a8e28a61233974649cf86661a0107dce5019d33b71205e4b41bac73f4e2 add_missing___compar_fn_t.patch -58de5e79fdfd06e828d478e112d581d333a8bee88d2602b92204d780f0d707b27dd84f8e2e6b00fca40da81c8fe99aa5bcec70d8b393d3a0a83199c72a4aa48b getpwent_r.patch -9642e0de5a39ab940e0f53040ae20fccdbde471bed9bcca713482f26e7c88451e405bd63d719d0548975c7c4c045b51b0006672d34ec4390c3b5a618ea6c8d85 missing-headers.patch -9bf4bbc8b03d9ea17d2f8ffeaf3a83541b171936a90bb8d75b08cc5afbdbaaec545c1b3782c90ae2ffc4568ab4e6f15fb21899d80c654a796301e16429c93b65 musl_rm_unistd_incl.patch -b7906d66fe55a980a54161ee3f311b51bcbce76b8d4c8cc1ba6d0c5bdf98232cb192b9d2c1aa7b3e2742f5b9848c6cf429347940eefe66c3e0eda1d5aac1bf93 musl_uintptr.patch -f997d0bca9de64a567bccc245bec41e4aa00bacb379d8e348678dcafcf7e723e8716608c5d2d266ad816439b8b93bb8ee28371308a01c9d9c50229f1fc8deb67 netgroup.patch -c0bbe1186b150a9bb2a0b741a8cfbd7a5109e5fed1eaa07aaa38cf026ebe054d38cc01e2496f0cab7b40f743e1b7ecfbf8a4d5820810226c4152021df65f36dc pidl.patch -e98fd19f65d954f04f7e3b5be86e9c4bcc9ac090c40037de77bfeb266617747c514aeb42f3daf84113b2f3374480d25e368bc1fdebc1870458eda12329d2062e samba-bgqd-include-signal-h.patch -" diff --git a/net/sshfs/sshfs.SMBuild b/net/sshfs/sshfs.SMBuild deleted file mode 100755 index d2638bf..0000000 --- a/net/sshfs/sshfs.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=sshfs -version=2.8 -build=1sml -homepage="https://github.com/libfuse/sshfs" -download="https://github.com/libfuse/sshfs/archive/refs/tags/sshfs_$version.tar.gz" -desc="Network file system client to connect to SSH servers" -requires="glib fuse pcre" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -0f3d97f6edb458208f9080bbb539220cfe872e712a8ee8c21ecebcea0bb5541e28032ae715192fbcfef8bc3b22b89a3f22ee743cc8eb2bfa9f709855a419a4bd sshfs-2.8.tar.lz -" diff --git a/net/sylpheed/sylpheed.SMBuild b/net/sylpheed/sylpheed.SMBuild deleted file mode 100755 index 8a25cf0..0000000 --- a/net/sylpheed/sylpheed.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=sylpheed -version=3.7.0 -build=2sml -homepage="https://sylpheed.sraoss.jp/en/" -download="https://osdn.net/dl/sylpheed/sylpheed-$version.tar.xz" -desc="Simple, lightweight email client based on GTK+" -requires="openssl dbus-glib gtkspell" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/sylpheed-pop3-cram-md5.patch - applypatch $srcdir/sylpheed-trayicon.patch -} - -build() { - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - cp COPYING* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -20beae25533995694809d14595f6b0bd1bbd1843363fdae8147c7ef0b5b8c4edc573c6d2a5bd3cfe2ed817cb94ae6eba3a8142684f6512384e854b59103f920b sylpheed-3.7.0.tar.lz -9f59ddb37cc22bcd417b2150e2eafa36a3c2b66cfafda10ce38fc2a83cdecd9987d711aadbad4a0cab885fb06d03c2b999742c257811bcd5ef23c7ea3f4d7eb0 sylpheed-pop3-cram-md5.patch -5a673ec49c358b5157e50a8f2149073ab69156380b1b7da6b51045f1434a0e161adb45355bba8b243be38fbde1a8dd7f725def6ff91c45a5ca14e0f40fb3c1ef sylpheed-trayicon.patch -" diff --git a/net/tcpdump/tcpdump.SMBuild b/net/tcpdump/tcpdump.SMBuild deleted file mode 100755 index 4a864f4..0000000 --- a/net/tcpdump/tcpdump.SMBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: PktSurf -app=tcpdump -version=4.9.2 -build=1sml -homepage="https://www.tcpdump.org/" -download="https://www.tcpdump.org/release/tcpdump-$version.tar.gz" -desc="Text-mode network monitoring and packet data acquisition tool" -requires="libpcap openssl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ac_cv_linux_vers=3 \ - ./configure \ - --prefix= \ - --sbindir=/bin - - make - make install DESTDIR=$pkg - - cp LICENSE $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -c299de1f1f12d2fda53b2ae4f60e8930c196d490390d935498970a0d82a76ea2da55dfa67e79784990b01161ed93da521f95e282f997a9081f5fa805ea9f6cb3 tcpdump-4.9.2.tar.lz -" diff --git a/net/tor/tor.SMBuild b/net/tor/tor.SMBuild deleted file mode 100755 index 74644b7..0000000 --- a/net/tor/tor.SMBuild +++ /dev/null @@ -1,44 +0,0 @@ -# Maintainer: PktSurf -app=tor -version=0.4.1.6 -build=2sml -homepage="https://www.torproject.org/" -download="https://archive.torproject.org/tor-package-archive/tor-$version.tar.gz" -desc="The second-generation onion router" -requires="gcc-libs zlib libcap openssl libevent ca-certificates" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --disable-tool-name-check \ - --enable-pic - - make - make install DESTDIR=$pkg - - cp LICENSE $pkgdocs/ - - rm $pkg/etc/tor/torrc.sample - cp $srcdir/torrc.sample $pkg/etc/tor/torrc - - mkdir -p $pkg/var/lib/tor - chown -R tor:tor $pkg/var/lib/tor - - preprunitservice -s tor -d - - mkfinalpkg -} - -sha512sums=" -58bf6c233e13fd7dd1cfdeee55aadd3641e727a1f35173b1c2dfb73412591122499c4f78c03f913fed2780f1f2ed3798ab5bc533b0fd98d3960e12d04d375dba tor-0.4.1.6.tar.lz -" diff --git a/net/traceroute/traceroute.SMBuild b/net/traceroute/traceroute.SMBuild deleted file mode 100755 index 989d266..0000000 --- a/net/traceroute/traceroute.SMBuild +++ /dev/null @@ -1,30 +0,0 @@ -# Maintainer: PktSurf -app=traceroute -version=2.1.0 -build=1sml -homepage="http://traceroute.sourceforge.net/" -download="https://sourceforge.net/projects/traceroute/files/traceroute/traceroute-$version/traceroute-$version.tar.gz" -desc="Utility to track route packets going through a network to a target host" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - make - make install prefix=/ DESTDIR=$pkg - - cp COPYING* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -6683a3d5cd9cdef69f72c0c30ee4d1e8629207f0921a656cd0e8fbb17d809efc4c43b0f75f7c119899ae99b922dcdb4f7ee0bb864b54f8df5c56bdc0586956ca traceroute-2.1.0.tar.lz -" diff --git a/net/transmission/transmission.SMBuild b/net/transmission/transmission.SMBuild deleted file mode 100755 index ebbaa4f..0000000 --- a/net/transmission/transmission.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=transmission -version=2.94 -build=1sml -homepage="https://transmissionbt.com/" -download="https://github.com/transmission/transmission-releases/raw/master/transmission-$version.tar.xz" -desc="Torrent client with text-mode, remote, daemon and GTK+3" -requires="intltool curl desktop-file-utils libevent miniupnpc libnotify hicolor-icon-theme gtk3" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -ded4533415be4f8db35a195215a40e556447bc428422509c21a8f7ecefe3050c93f05b0d0a4af891002e4610ed09511c85e0df0e2526b9318788db009ca3db37 transmission-2.94.tar.lz -" diff --git a/net/unbound/unbound.SMBuild b/net/unbound/unbound.SMBuild deleted file mode 100755 index 9166fa8..0000000 --- a/net/unbound/unbound.SMBuild +++ /dev/null @@ -1,41 +0,0 @@ -# Maintainer: PktSurf -app=unbound -version=1.17.1 -build=1sml -homepage="https://www.nlnetlabs.nl/projects/unbound/about/" -download="https://www.nlnetlabs.nl/downloads/unbound/unbound-$version.tar.gz" -desc="Validating, recursive, and caching DNSSEC resolver written in C" -requires="expat openssl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --sbindir=/bin \ - --with-username=nobody \ - --disable-static - - make - make install DESTDIR=$pkg - - mv $pkg/etc/unbound/unbound.conf $pkg/etc/unbound/unbound.conf.new - - cp LICENSE $pkgdocs/ - - preprunitservice -s unbound -d - - mkfinalpkg -} - -sha512sums=" -a31fea727101180db11fe4ce84c35ca558ba3f45822e8c5b745741c9a9ce2d7bd75e3e2e752866d2ac006b80886098ee591d9f8ed576d0c8baab1c8889862132 unbound-1.17.1.tar.lz -" diff --git a/net/vnstat/vnstat.SMBuild b/net/vnstat/vnstat.SMBuild deleted file mode 100755 index b7c4bfb..0000000 --- a/net/vnstat/vnstat.SMBuild +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: PktSurf -app=vnstat -version=2.10 -build=1sml -homepage="https://humdi.net/vnstat/" -download="https://humdi.net/vnstat/vnstat-$version.tar.gz" -desc="Text-mode network traffic monitor and logger" -requires="bash sqlite libgd" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sbindir=/bin \ - --sysconfdir=/etc - - make all - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - ( cd $pkg/etc ; mv vnstat.conf vnstat.conf.new ) - - preprunitservice -s vnstat -d - - mkfinalpkg -} - -sha512sums=" -73bcd991c8a5dbaf4ac2ae0758230ee14981dea18551cf3632fddd43d59245cf1f82245967ea095f1da803f7022665d96436488fe14a00823fc911ec0380a7a8 vnstat-2.10.tar.lz -" diff --git a/net/wavemon/wavemon.SMBuild b/net/wavemon/wavemon.SMBuild deleted file mode 100755 index 6f45c8b..0000000 --- a/net/wavemon/wavemon.SMBuild +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: PktSurf -app=wavemon -version=0.9.4 -build=1sml -homepage="https://github.com/uoaerg/wavemon" -download="https://github.com/uoaerg/wavemon/archive/refs/tags/v$version.tar.gz" -desc="Text-mode 802.11 wireless network monitor" -requires="netbsd-curses libcap libnl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - # wavemon doesn't like our CFLAGS... - unset CFLAGS - - ./configure \ - --prefix= - - make - make install DESTDIR=$pkg - - ( - mv $pkg/share/wavemon/* $pkgdocs/ - rmdir $pkg/share/wavemon - ) - - mkfinalpkg -} - -sha512sums=" -9868d060bc30bdc1ac456cd4d411a1a48d4649146124e6d993dde6bc72c77436b2cf3f3f5648df1266e0ad8a413f152586285b38059256a9104f6e23764aea4b wavemon-0.9.4.tar.lz -" diff --git a/net/weechat/weechat.SMBuild b/net/weechat/weechat.SMBuild deleted file mode 100755 index 14316d7..0000000 --- a/net/weechat/weechat.SMBuild +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: PktSurf -app=weechat -version=3.8 -build=2sml -homepage="http://www.weechat.org" -download="https://weechat.org/files/src/weechat-$version.tar.xz" -desc="Fast, modular text-mode IRC client" -requires="netbsd-curses openssl curl libidn libtasn1 nettle gmp gnutls libgcrypt aspell perl python3" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - mkdir -p smbuild && cd smbuild - cmake .. \ - -DCMAKE_INSTALL_PREFIX= \ - -DENABLE_PHP=OFF \ - -DENABLE_TCL=OFF \ - -DENABLE_GUILE=OFF \ - - make - make install DESTDIR=$pkg - - cp ../COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -5e12e9cbaf617a2209ccf8486896fc06ef0e8c6fccf230fc9c0f1311ae503a48374bfe7689d737f838195c77b83b53f2331a4b6bb35e73e304d6958316c01bd0 weechat-3.8.tar.lz -" diff --git a/net/wget/wget.SMBuild b/net/wget/wget.SMBuild deleted file mode 100755 index 3590399..0000000 --- a/net/wget/wget.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=wget -version=1.19 -build=2sml -homepage="https://www.gnu.org/software/wget/" -download="https://ftp.gnu.org/gnu/wget/wget-$version.tar.gz" -desc="Non-interactive network resource retriever" -requires="zlib netbsd-curses openssl e2fsprogs pcre" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --with-ssl=openssl \ - --disable-rpath - - make - make install DESTDIR=$pkg - - mv $pkg/etc/wgetrc $pkg/etc/wgetrc.new - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -2ea62e217fe6c9e1ade21fb5d4a797dfdc41f87998a713e9760a56beb000d490a73154bc5f61076ff5c8dfc08beb6c1d372a3ccec856561c4f6de9d965519701 wget-1.19.tar.lz -" diff --git a/net/whois/whois.SMBuild b/net/whois/whois.SMBuild deleted file mode 100755 index b10f098..0000000 --- a/net/whois/whois.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=whois -version=5.4.2 -build=1sml -homepage="https://github.com/rfc1036/whois" -download="https://github.com/rfc1036/whois/archive/refs/tags/v$version.tar.gz" -desc="Improved whois directory client derived from BSD and RIPE whois programs" -requires="perl libidn" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - make - install -Dm 755 whois $pkg/bin/whois - install -Dm 644 whois.conf $pkg/etc/whois.conf - install -Dm 644 whois.1 $pkg/share/man/man1/whois.1 - install -Dm 644 mkpasswd.1 $pkg/share/man/man1/mkpasswd.1 - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -973a09fa52de9e0292a405287a6d3ae281e2feb6d9f92969c6488247e4fbb31e3b5a67f1f2c49e64271ea0c3511e515c3bc42ee16530332c6c15f86d6fdc6b09 whois-5.4.2.tar.lz -" diff --git a/net/wireless-tools/wireless-tools.SMBuild b/net/wireless-tools/wireless-tools.SMBuild deleted file mode 100755 index 2af1bdf..0000000 --- a/net/wireless-tools/wireless-tools.SMBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: PktSurf -app=wireless-tools -version=29 -build=1sml -altname="$(echo $app | sed 's/-/_/')" -homepage="https://hewlettpackard.github.io/wireless-tools/" -download="https://hewlettpackard.github.io/wireless-tools/wireless_tools.$version.tar.gz" -desc="Set of tools allowing manipulation of wireless extensions" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf "$altname.$version" - - tar xf $srcdir/$altname.$version.tar.?z - cd "$altname.$version" - fixbuilddirpermissions - - applypatch $srcdir/wireless-tools-Makefile.patch - applypatch $srcdir/wireless-tools-headers.patch -} - -build() { - make INSTALL_MAN="$pkg/share/man" INSTALL_DIR="$pkg/bin" - make INSTALL_MAN="$pkg/share/man" INSTALL_DIR="$pkg/bin" install DESTDIR="$pkg" - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -d2f182e60aeb2f3fa6dbb52b49be48a7ed25c1e660116c8b763b6d2baf863855c7459f1d8e0d4ae7d9f526a8f47d3cc5deaf1db5fe5352fdd821a427aa31716a wireless_tools.29.tar.lz -629dee411f8b37047613fb8381b431caed8c1dcc24a3ced058c38f3628696ded1b8a0432ce5da75dbc93d42c7c82e54f16c0102fb0d961c840fe925f30377114 wireless-tools-Makefile.patch -502e0b879bed0ccbcb6de0580984f4187cdbf4adc87caae44652a6a9ff786103a3930d9dfecd2fbe4754743cde2cc0a310ab67f4a794d0d18e88bdaf41662f14 wireless-tools-headers.patch -" diff --git a/net/wpa-supplicant/wpa-supplicant.SMBuild b/net/wpa-supplicant/wpa-supplicant.SMBuild deleted file mode 100755 index 0df7106..0000000 --- a/net/wpa-supplicant/wpa-supplicant.SMBuild +++ /dev/null @@ -1,57 +0,0 @@ -# Maintainer: PktSurf -app=wpa-supplicant -sapp="${app/-/_}" -version=2.10 -build=3sml -homepage="https://w1.fi/" -download="https://w1.fi/releases/wpa_supplicant-$version.tar.gz" -desc="WPA/WPA2/IEEE 802.1X Supplicant" -requires="readline openssl libnl dbus" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $sapp-$version - - tar xf $srcdir/$sapp-$version.tar.?z* - cd $sapp-$version - fixbuilddirpermissions - - applypatch $srcdir/eloop.patch - applypatch $srcdir/unsafe-renegotiation-1.patch - applypatch $srcdir/unsafe-renegotiation-2.patch - applypatch $srcdir/allow-tlsv1.patch - applypatch $srcdir/silence-scan-results,patch -} - -build() { - cd wpa_supplicant - cp $srcdir/config .config - - make LIBDIR=/lib BINDIR=/bin all eapol_test - make install LIBDIR=/lib BINDIR=/bin DESTDIR=$pkg - - cp ../COPYING $pkgdocs/LICENSE - - install -Dm 644 dbus/fi.w1.wpa_supplicant1.service $pkg/share/dbus-1/system-services/fi.w1.wpa_supplicant1.service - install -Dm 644 dbus/dbus-wpa_supplicant.conf $pkg/share/dbus-1/system.d/dbus-wpa_supplicant.conf - - mkdir -p $pkg/share/man/man{5,8} - cp doc/docbook/wpa_supplicant.conf.5 $pkg/share/man/man5/ - cp doc/docbook/{wpa_cli.8,wpa_passphrase.8,wpa_supplicant.8} $pkg/share/man/man8/ - - install -Dm 0600 $srcdir/wpa_supplicant.conf $pkg/etc/wpa_supplicant.conf.new - install -m 0755 $srcdir/wpa_connect_action.sh $pkg/etc/wpa_connect_action.sh - mkdir -p $pkg/var/run/wpa_supplicant - - preprunitservice -s wpa-supplicant -d - - mkfinalpkg -} - -sha512sums=" -021c2a48f45d39c1dc6557730be5debaee071bc0ff82a271638beee6e32314e353e49d39e2f0dc8dff6e094dcc7008cfe1c32d0c7a34a1a345a12a3f1c1e11a1 wpa_supplicant-2.10.tar.gz -9c20b646cf89fab8919927f6533fa24d5e0ec2e6ca10fb738c6e1c17ad451978ecc9f26c09d518d8936d63f86994c8658cbf757d1b65ebced0481635ad69d89b allow-tlsv1.patch -2be055dd1f7da5a3d8e79c2f2c0220ddd31df309452da18f290144d2112d6dbde0fc633bb2ad02c386a39d7785323acaf5f70e5969995a1e8303a094eb5fe232 eloop.patch -9528735924faf876a7094de46760605e5e66e265187421a668be06dbf03d7b4db6b84cbad793fcd6bd614e3ba540f82f1f80660d75e8a6070eeb7e9abb54ed28 unsafe-renegotiation-1.patch -a92ba3ed3f41022a8af9396d2b703ee47f78aa05c1fddb42919a7fe6a6fad71e3515c63457e97e252ae0a32c6c34d67ea6efe0278df1e141cf36e650237e5295 unsafe-renegotiation-2.patch -" diff --git a/net/znc/znc.SMBuild b/net/znc/znc.SMBuild deleted file mode 100755 index c4ee2b5..0000000 --- a/net/znc/znc.SMBuild +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: PktSurf -app=znc -version=1.7.5 -build=1sml -homepage="https://wiki.znc.in/ZNC" -download="https://znc.in/releases/archive/znc-$version.tar.gz" -desc="An advanced IRC bouncer" -requires="gcc-libs zlib python3 openssl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix= \ - --sysconfdir=/etc \ - --mandir=/share/man \ - --disable-charset \ - --enable-openssl - - make - make install DESTDIR=$pkg - - cp LICENSE $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -ef0d118c3be309a935c926267d9a72c5614aef368942a2e5c66bcd502f07bcaaf0e214805d3c36eff9039cedd9d3093a6e38cb4cfd1c2d01070e791842790b1f znc-1.7.5.tar.lz -" diff --git a/xfce/exo/exo.SMBuild b/xfce/exo/exo.SMBuild deleted file mode 100755 index 29a4fe4..0000000 --- a/xfce/exo/exo.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=exo -version=4.16.0 -build=1sml -homepage="https://docs.xfce.org/xfce/exo/start" -download="https://archive.xfce.org/xfce/4.16/src/exo-$version.tar.bz2" -desc="Extension library for Xfce" -requires="gtk3 libxfce4util libxfce4ui" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -10cbdfc2d81290e75c07f851ed562fcff4aea8cb709317bb768387f4a955cd208772927d356e7e3582cc4747f237d1dd34c0de1532bc549bece0306c106f411a exo-4.16.0.tar.lz -" diff --git a/xfce/faenza-icon-theme/faenza-icon-theme.SMBuild b/xfce/faenza-icon-theme/faenza-icon-theme.SMBuild deleted file mode 100755 index 1ca3074..0000000 --- a/xfce/faenza-icon-theme/faenza-icon-theme.SMBuild +++ /dev/null @@ -1,31 +0,0 @@ -# Maintainer: PktSurf -app=faenza-icon-theme -version=1.3 -build=1sml -homepage="https://gnome-look.org/content/show.php/Faenza?content=128143" -download="http://ppa.launchpad.net/tiheum/equinox/ubuntu/pool/main/f/faenza-icon-theme/faenza-icon-theme_$version.tar.gz" -desc="Theme pack for GNOME" -requires="gtk2 gtk3" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - mkdir -p $pkg/share/icons - cp -r Faenza{,-Dark,-Darker,-Darkest,-Ambiance,-Radiance} $pkg/share/icons/ - cp -r emesene $pkg/share/ - - cp debian/copyright $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -742c11438fa3a5044765381c4a2a2f9bef3d997ab3bf9a2c2be8fc25f7a9cf95a25b84e5e0dfeeceaeb4b4c3ed6d98c4be860575cd5bebda59226f26e3ed560b faenza-icon-theme-1.3.tar.lz -" diff --git a/xfce/garcon/garcon.SMBuild b/xfce/garcon/garcon.SMBuild deleted file mode 100755 index 612a35c..0000000 --- a/xfce/garcon/garcon.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=garcon -version=4.16.1 -build=1sml -homepage="https://docs.xfce.org/xfce/garcon/start" -download="https://archive.xfce.org/xfce/4.16/src/garcon-0.8.0.tar.bz2" -desc="Menu implementation for Xfce" -requires="libxfce4ui" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -8f1b17daa746bbf8eeddc0eb5a17a20f6b987fd4ac30b0de104c22efe91f293292f3d71c548b14e073b616af4bcc68f2dd3bf950786b3ee78ab118d196711fe4 garcon-4.16.1.tar.lz -" diff --git a/xfce/libxfce4ui/libxfce4ui.SMBuild b/xfce/libxfce4ui/libxfce4ui.SMBuild deleted file mode 100755 index e41517e..0000000 --- a/xfce/libxfce4ui/libxfce4ui.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=libxfce4ui -version=4.16.0 -build=1sml -homepage="https://docs.xfce.org/xfce/libxfce4ui/start" -download="https://archive.xfce.org/xfce/4.16/src/libxfce4ui-$version.tar.bz2" -desc="Xfce widget library" -requires="libsm libepoxy libxfce4util xfconf gtk3" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make -j1 install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -2a4fa253b954e72a5183c1ede7a101b1469e289d4e6bc24e5e7015160fe3393ca7ddc727fcd1b68cad46fb7d1105867ac42cf3c7ffdb339f4c64de2f2f59cd04 libxfce4ui-4.16.0.tar.lz -" diff --git a/xfce/libxfce4util/libxfce4util.SMBuild b/xfce/libxfce4util/libxfce4util.SMBuild deleted file mode 100755 index 5756002..0000000 --- a/xfce/libxfce4util/libxfce4util.SMBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: PktSurf -app=libxfce4util -version=4.16.0 -build=1sml -homepage="https://www.xfce.org" -download="https://archive.xfce.org/xfce/4.16/src/libxfce4util-$version.tar.bz2" -desc="Basic non-GUI utility library for Xfce" -requires="glib" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --sbindir=/bin \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -db9d3da4dda73684ca02eb0ee26ad0120c606095cbacf1264ef0008c3b2dcbda2b2d7f367c4ed442cf4337f939f9c2768fdcc9bee945151612d9c8cc64c1628f libxfce4util-4.16.0.tar.lz -" diff --git a/xfce/mousepad/mousepad.SMBuild b/xfce/mousepad/mousepad.SMBuild deleted file mode 100755 index 4c6f876..0000000 --- a/xfce/mousepad/mousepad.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=mousepad -version=0.5.8 -build=1sml -homepage="https://docs.xfce.org/apps/mousepad/start" -download="https://archive.xfce.org/src/apps/mousepad/0.5/mousepad-$version.tar.bz2" -desc="Fast, easy-to-use text editor for Xfce" -requires="desktop-file-utils gspell" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -206054ccfa94e587410c4a90d22d57356c731d52a364f165866f26876848fd78d4a889fd78361fbd6a6a0a6a035e2bc2836739be0f55a5e6b118f69f3f660ba3 mousepad-0.5.8.tar.lz -" diff --git a/xfce/ristretto/ristretto.SMBuild b/xfce/ristretto/ristretto.SMBuild deleted file mode 100755 index 30ff5a9..0000000 --- a/xfce/ristretto/ristretto.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=ristretto -version=0.12.2 -build=1sml -homepage="https://docs.xfce.org/apps/ristretto/start" -download="https://archive.xfce.org/src/apps/ristretto/0.12/ristretto-$version.tar.bz2" -desc="Lightweight image viewer for Xfce" -requires="file libexif libxfce4ui tumbler xfconf" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -9ef6fc92258e314fdfc8f051061eb5499857831f6323831ecbeeee110eca6584043abcc15749fab90b46cb536a4815da8eceb226251e122e31fd4037c301350b ristretto-0.12.2.tar.lz -" diff --git a/xfce/thunar-archive-plugin/thunar-archive-plugin.SMBuild b/xfce/thunar-archive-plugin/thunar-archive-plugin.SMBuild deleted file mode 100755 index 594ca64..0000000 --- a/xfce/thunar-archive-plugin/thunar-archive-plugin.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=thunar-archive-plugin -version=0.4.0 -build=1sml -homepage="https://docs.xfce.org/xfce/thunar/archive" -download="https://archive.xfce.org/src/thunar-plugins/thunar-archive-plugin/0.4/thunar-archive-plugin-$version.tar.bz2" -desc="Plugin to create and extract archives in Thunar" -requires="xfce4-dev-tools thunar" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static \ - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -91882d89bef2875a46524eb1a16f203e1b54cc63082807fd02d2327d5fdfdffacb8e47e163fe2f79a0c222d48c4314bfa25f664c9c40b7ed3a014335e1214381 thunar-archive-plugin-0.4.0.tar.lz -" diff --git a/xfce/thunar-volman/thunar-volman.SMBuild b/xfce/thunar-volman/thunar-volman.SMBuild deleted file mode 100755 index 9a81038..0000000 --- a/xfce/thunar-volman/thunar-volman.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=thunar-volman -version=4.16.0 -build=1sml -homepage="https://docs.xfce.org/xfce/thunar/thunar-volman" -download="https://archive.xfce.org/xfce/4.16/src/thunar-volman-$version.tar.bz2" -desc="Plugin to auto-manage removable devices in Thunar" -requires="libxfce4ui thunar" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -ad239971f7454301b30f33d6cd0d7fec9ad736558d865ead461d4a11805f11002be9d1298f9981f4b978f2003ba3c4949cb0d5c81c962723a16ec199d19bba96 thunar-volman-4.16.0.tar.lz -" diff --git a/xfce/thunar/thunar.SMBuild b/xfce/thunar/thunar.SMBuild deleted file mode 100755 index 1539a30..0000000 --- a/xfce/thunar/thunar.SMBuild +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: PktSurf -app=thunar -version=4.16.2 -build=1sml -homepage="https://docs.xfce.org/xfce/thunar/start" -download="https://archive.xfce.org/xfce/4.16/src/thunar-$version.tar.bz2" -desc="Modern file manager for Xfce Desktop Environment" -requires="desktop-file-utils libexif libgudev libpng pcre libnotify libxfce4util libxfce4ui exo tumbler gobject-introspection" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --enable-gio-unix \ - --enable-gudev \ - --enable-exif \ - --enable-pcre - - make - make install DESTDIR=$pkg - - cp COPYING* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -bdb5942d92af6e7ef4170964e67a5f5e5ed975e0f068e53e7bf1110f4128f9ab203b275b20742c9897a9d9822a90c5b1bffba94afa67e7597ca3d4d63d7dbe84 thunar-4.16.2.tar.lz -" diff --git a/xfce/tumbler/tumbler.SMBuild b/xfce/tumbler/tumbler.SMBuild deleted file mode 100755 index b652667..0000000 --- a/xfce/tumbler/tumbler.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=tumbler -version=4.16.0 -build=1sml -homepage="https://docs.xfce.org/xfce/tumbler/start" -download="https://archive.xfce.org/xfce/4.16/src/tumbler-$version.tar.bz2" -desc="Thumbnail generator" -requires="glib gobject-introspection" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -e243b79e4bd953c266146905b3717be2ef8b518f4cf1a7d70be8f32056abf4ca4cc113edef2690db19559f1af1c8ed45241bdf7028e5304322371cf399bd9eb7 tumbler-4.16.0.tar.lz -" diff --git a/xfce/upower/upower.SMBuild b/xfce/upower/upower.SMBuild deleted file mode 100755 index 5a5e0b4..0000000 --- a/xfce/upower/upower.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=upower -version=0.99.11 -build=1sml -homepage="http://upower.freedesktop.org" -download="https://upower.freedesktop.org/releases/upower-$version.tar.xz" -desc="Abstraction layer for enumerating power devices" -requires="pcre glib util-linux netbsd-curses libffi eudev libusb dbus" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -1f61e3d47ee62e34a7be15cc7144ee5f684eb204859bbd98c4b697e25ce3a6b7a100cb2354518190ebcaffb2f96d4ffb6464309654c16aea9dc1db727b982aca upower-0.99.11.tar.lz -" diff --git a/xfce/vte5/vte5.SMBuild b/xfce/vte5/vte5.SMBuild deleted file mode 100755 index 188052d..0000000 --- a/xfce/vte5/vte5.SMBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: PktSurf -app=vte5 -version=0.50.4 -build=1sml -homepage="https://wiki.gnome.org/Apps/Terminal/VTE" -download="https://gitlab.gnome.org/GNOME/vte/-/archive/$version/vte-$version.tar.bz2" -desc="GTK+ terminal widget library for use in writing terminal emulators" -requires="gtk3" - -prepbuilddir() { - mkandenterbuilddir - rm -rf vte-$version - - tar xf $srcdir/vte-$version.tar.?z* - cd vte-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --enable-vala=no \ - --disable-introspection \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -7a3fa071559e35151bc72b7f349401844be63b5314aba663591796d694c76e2e84c6bc5f3f14cdccd864546515156c9683be66151c2c6b80ef45921d49f73b27 vte-0.50.4.tar.lz -" diff --git a/xfce/xfce4-appfinder/xfce4-appfinder.SMBuild b/xfce/xfce4-appfinder/xfce4-appfinder.SMBuild deleted file mode 100755 index dc77ed0..0000000 --- a/xfce/xfce4-appfinder/xfce4-appfinder.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-appfinder -version=4.16.1 -build=1sml -homepage="https://docs.xfce.org/xfce/xfce4-appfinder/start" -download="https://archive.xfce.org/xfce/4.16/src/xfce4-appfinder-$version.tar.bz2" -desc="Application finding widget for Xfce" -requires="garcon libxfce4ui xfconf" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -f08f3dc81d9502c136635ec4c85814d606b847f08956ddfbc76285d27e15b205fa0a3f3eff89905fe5bd5faeba790bdd363e438192ec55a59f37d62c424b2a5d xfce4-appfinder-4.16.1.tar.lz -" diff --git a/xfce/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SMBuild b/xfce/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SMBuild deleted file mode 100755 index aa55bc4..0000000 --- a/xfce/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-cpugraph-plugin -version=1.2.6 -build=1sml -homepage="https://docs.xfce.org/panel-plugins/xfce4-cpugraph-plugin" -download="https://archive.xfce.org/src/panel-plugins/xfce4-cpugraph-plugin/1.2/xfce4-cpugraph-plugin-$version.tar.bz2" -desc="Xfce Panel plugin to show graphically show CPU load" -requires="xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -8e26f22639189a896c3f0d7fa6b73e2fb38418f3046c1153d2c8a264c0a4ce3d60182a6faca2a3589ddddb61e9c93f420110d00aa5f12af01984f0a1a4958ac3 xfce4-cpugraph-plugin-1.2.6.tar.lz -" diff --git a/xfce/xfce4-datetime-plugin/xfce4-datetime-plugin.SMBuild b/xfce/xfce4-datetime-plugin/xfce4-datetime-plugin.SMBuild deleted file mode 100755 index afc5027..0000000 --- a/xfce/xfce4-datetime-plugin/xfce4-datetime-plugin.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-datetime-plugin -version=0.8.1 -build=1sml -homepage="https://docs.xfce.org/panel-plugins/xfce4-datetime-plugin" -download="https://archive.xfce.org/src/panel-plugins/xfce4-datetime-plugin/0.8/xfce4-datetime-plugin-$version.tar.bz2" -desc="Xfce panel plugin to show date and time" -requires="xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -f58a8b39ed21764c0453fb41263fce52ac10e5711056bd4dded030754fbbcda61d82782049e423021119053200af5eb3bf680e733b3f6a31216e2423355e2fa7 xfce4-datetime-plugin-0.8.1.tar.lz -" diff --git a/xfce/xfce4-dev-tools/xfce4-dev-tools.SMBuild b/xfce/xfce4-dev-tools/xfce4-dev-tools.SMBuild deleted file mode 100755 index 6681131..0000000 --- a/xfce/xfce4-dev-tools/xfce4-dev-tools.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-dev-tools -version=4.16.0 -build=1sml -homepage="https://docs.xfce.org/xfce/xfce4-dev-tools/start" -download="https://archive.xfce.org/xfce/4.16/src/xfce4-dev-tools-$version.tar.bz2" -desc="XFCE developer tools and macros" -requires="musl" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -22784f256124ef6f49e768a89047986317cc79e10b4638d1409def006002e22b0be38edce06db21b7d0b8ca5b775c50f97d03252d0bf8df88540f004b9c446eb xfce4-dev-tools-4.16.0.tar.lz -" diff --git a/xfce/xfce4-dict/xfce4-dict.SMBuild b/xfce/xfce4-dict/xfce4-dict.SMBuild deleted file mode 100755 index af27789..0000000 --- a/xfce/xfce4-dict/xfce4-dict.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-dict -version=0.8.4 -build=1sml -homepage="https://docs.xfce.org/apps/xfce4-dict/start" -download="https://archive.xfce.org/src/apps/xfce4-dict/0.8/xfce4-dict-$version.tar.bz2" -desc="Dictionary plugin for Xfce panel" -requires="librsvg xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -583a3b15c0daf8c1916579ac589f1ed36090fd2e162e2c22d09a7fe23bba365b59d47faf0766822d4cb2fab8ffc99b0c2f87616ceec65480703d667d59c1b95a xfce4-dict-0.8.4.tar.lz -" diff --git a/xfce/xfce4-diskperf-plugin/xfce4-diskperf-plugin.SMBuild b/xfce/xfce4-diskperf-plugin/xfce4-diskperf-plugin.SMBuild deleted file mode 100755 index fe3d1cf..0000000 --- a/xfce/xfce4-diskperf-plugin/xfce4-diskperf-plugin.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-diskperf-plugin -version=2.6.3 -build=1sml -homepage="https://docs.xfce.org/panel-plugins/xfce4-diskperf-plugin" -download="https://archive.xfce.org/src/panel-plugins/xfce4-diskperf-plugin/2.6/xfce4-diskperf-plugin-$version.tar.bz2" -desc="Xfce panel plugin to show disk and partition performance" -requires="xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -a354ebc4056ce1447c0d2c97a9848d3038c9e5a78e8442d992bce3700e0e1c67353a970f7dc55ec861dc1621439d0a7c3d6b51b2267477ab15357cb522f20e34 xfce4-diskperf-plugin-2.6.3.tar.lz -" diff --git a/xfce/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SMBuild b/xfce/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SMBuild deleted file mode 100755 index 0bd0f19..0000000 --- a/xfce/xfce4-fsguard-plugin/xfce4-fsguard-plugin.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-fsguard-plugin -version=1.1.2 -build=1sml -homepage="https://docs.xfce.org/panel-plugins/xfce4-fsguard-plugin/start" -download="https://archive.xfce.org/src/panel-plugins/xfce4-fsguard-plugin/1.1/xfce4-fsguard-plugin-$version.tar.bz2" -desc="File system usage plugin for Xfce panel" -requires="xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -350485341152f9113049e273df61f1cdc8185880d7f2d93a283b842b91f46e1d8f4e2fe5f943b1ac1e11e2e2be37f76e0162e1fbb2cf0c819141f552f574702c xfce4-fsguard-plugin-1.1.2.tar.lz -" diff --git a/xfce/xfce4-netload-plugin/xfce4-netload-plugin.SMBuild b/xfce/xfce4-netload-plugin/xfce4-netload-plugin.SMBuild deleted file mode 100755 index 7551168..0000000 --- a/xfce/xfce4-netload-plugin/xfce4-netload-plugin.SMBuild +++ /dev/null @@ -1,31 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-netload-plugin -version=1.4.0 -build=1sml -homepage="https://docs.xfce.org/panel-plugins/xfce4-netload-plugin" -download="https://archive.xfce.org/src/panel-plugins/xfce4-netload-plugin/1.4/xfce4-netload-plugin-$version.tar.bz2" -desc="Network load plugin for Xfce panel" -requires="xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" - - make - make install DESTDIR=$pkg - - mkfinalpkg -} - -sha512sums=" -e8d95f8845f3017ebe73b47fcc32d6f7df99e0fdbc46b3632b5fed646ccd3374fe25b0908456dd7465d3e3ee8a321c39cb8f305aee12fab58de5f18c07a94ff6 xfce4-netload-plugin-1.4.0.tar.lz -" diff --git a/xfce/xfce4-notifyd/xfce4-notifyd.SMBuild b/xfce/xfce4-notifyd/xfce4-notifyd.SMBuild deleted file mode 100755 index 1b27cdf..0000000 --- a/xfce/xfce4-notifyd/xfce4-notifyd.SMBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-notifyd -version=0.6.2 -build=1sml -homepage="https://docs.xfce.org/apps/notifyd/start" -download="https://archive.xfce.org/src/apps/xfce4-notifyd/0.6/xfce4-notifyd-$version.tar.bz2" -desc="Notification daemon for the Xfce desktop" -requires="libnotify libxfce4ui" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - sed -e "s/^systemd_user_in_files =.*/systemd_user_in_files =/" -i Makefile.in - - ./configure \ - --prefix="" - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -e991397c47f7ed66c05f96a29f34c5403fbcfc7400aff01e40ce77bb7107733e1c9491beab6fc8cbee9174f74be6dd6369cf344f14fa50ac7bde637e18b935ee xfce4-notifyd-0.6.2.tar.lz -" diff --git a/xfce/xfce4-panel/xfce4-panel.SMBuild b/xfce/xfce4-panel/xfce4-panel.SMBuild deleted file mode 100755 index 5f591de..0000000 --- a/xfce/xfce4-panel/xfce4-panel.SMBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-panel -version=4.16.1 -build=1sml -homepage="https://docs.xfce.org/xfce/xfce4-panel/start" -download="https://archive.xfce.org/xfce/4.16/src/xfce4-panel-$version.tar.bz2" -desc="Panel for the Xfce Desktop Environment" -requires="desktop-file-utils exo garcon libxfce4ui xfconf" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --enable-gio-unix \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -0cec3ce868184eaf7d8f5c17c51556313b53f424a3e62e939fa293fcb49d1f5b3554ca6dba907a24b7b39e46a371d9ce75b908ed209876a77b22c37761ab44b1 xfce4-panel-4.16.1.tar.lz -" diff --git a/xfce/xfce4-power-manager/xfce4-power-manager.SMBuild b/xfce/xfce4-power-manager/xfce4-power-manager.SMBuild deleted file mode 100755 index d8e977c..0000000 --- a/xfce/xfce4-power-manager/xfce4-power-manager.SMBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-power-manager -version=4.16.0 -build=1sml -homepage="https://docs.xfce.org/xfce/xfce4-power-manager/start" -download="https://archive.xfce.org/xfce/4.16/src/xfce4-power-manager-$version.tar.bz2" -desc="Power manager for Xfce" -requires="upower libnotify libxfce4ui xfce4-panel xfce4-notifyd" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-polkit \ - --disable-network-manager - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -2480d6ac40d7108d7b026a8e47e3ba34e343a07caed26e6ad37777d35ca714268e4716140fd5edaa492fd45cf9c0ce849b9a33733cd63a75bbca42f9ecd5a681 xfce4-power-manager-4.16.0.tar.lz -" diff --git a/xfce/xfce4-screenshooter/xfce4-screenshooter.SMBuild b/xfce/xfce4-screenshooter/xfce4-screenshooter.SMBuild deleted file mode 100755 index ee742df..0000000 --- a/xfce/xfce4-screenshooter/xfce4-screenshooter.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-screenshooter -version=1.9.8 -build=1sml -homepage="https://docs.xfce.org/apps/screenshooter/start" -download="https://archive.xfce.org/src/apps/xfce4-screenshooter/1.9/xfce4-screenshooter-$version.tar.bz2" -desc="Program to take screenshots in Xfce" -requires="libsoup xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -a037f291dc1a128d41b7ece84310e45d9f93cc4a19c85ed8917a4fb514cf95caafc0886d43bc6255f3548976c160f2ce3612dc013caf605179af6ddaaa9eb0c1 xfce4-screenshooter-1.9.8.tar.lz -" diff --git a/xfce/xfce4-sensors-plugin/xfce4-sensors-plugin.SMBuild b/xfce/xfce4-sensors-plugin/xfce4-sensors-plugin.SMBuild deleted file mode 100755 index 2d63ed6..0000000 --- a/xfce/xfce4-sensors-plugin/xfce4-sensors-plugin.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-sensors-plugin -version=1.4.3 -build=1sml -homepage="https://docs.xfce.org/panel-plugins/xfce4-sensors-plugin/start" -download="https://archive.xfce.org/src/panel-plugins/xfce4-sensors-plugin/1.4/xfce4-sensors-plugin-$version.tar.bz2" -desc="Sensors plugin for XFCE panel" -requires="lm-sensors xfce4-panel libnotify" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" - - make - make install DESTDIR=$pkg - - cp LICENSE $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -50dd07d52abe1bd71aedf965df0e228bfa16c75f4d36733febaa146f66a559734cd8c9aca51e22ba2857b26639de9f65d4da1d1e2543efd39325d68197f142e4 xfce4-sensors-plugin-1.4.3.tar.lz -" diff --git a/xfce/xfce4-session/xfce4-session.SMBuild b/xfce/xfce4-session/xfce4-session.SMBuild deleted file mode 100755 index 488ed92..0000000 --- a/xfce/xfce4-session/xfce4-session.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-session -version=4.16.0 -build=1sml -homepage="https://docs.xfce.org/xfce/xfce4-session/start" -download="https://archive.xfce.org/xfce/4.16/src/xfce4-session-$version.tar.bz2" -desc="Xfce Session Manager" -requires="libsm xinit xrdb libxfce4ui" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="/" \ - --disable-static \ - --disable-polkit \ - --disable-legacy-sm - - make - make install XSESSION_PREFIX="/" DESTDIR=$pkg - - mkfinalpkg -} - -sha512sums=" -8740a030b3840fa798951075ad50854f65df8fd9da7276c87b3aa78b20ff34225d8e06efd3fc996fb11641715a9c741b84f8b2aaa49e4068df412f736c43a236 xfce4-session-4.16.0.tar.lz -" diff --git a/xfce/xfce4-settings/xfce4-settings.SMBuild b/xfce/xfce4-settings/xfce4-settings.SMBuild deleted file mode 100755 index ecf376d..0000000 --- a/xfce/xfce4-settings/xfce4-settings.SMBuild +++ /dev/null @@ -1,40 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-settings -version=4.16.5 -build=1sml -homepage="https://docs.xfce.org/xfce/xfce4-settings/start" -download="https://archive.xfce.org/src/xfce/xfce4-settings/4.16/xfce4-settings-$version.tar.bz2" -desc="Settings Manager for Xfce" -requires="libnotify exo garcon libxfce4ui xfconf" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - applypatch $srcdir/default-xsettings-xml.patch - - ./configure \ - --prefix="" \ - --disable-static \ - --enable-sound-settings \ - --enable-pluggable-dialogs \ - --disable-upower-glib - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -1334875d8ae02a63312a3973f310138640b1a1ee80ad6665ee0f45d544092ef556b89259da613c53ab51219c9ac97fee860292133716da136792cdfd3d646e4e xfce4-settings-4.16.5.tar.bz2 -09fe6b214dbf5638d9ba47e40f67a22a1d96d61031b3c9e6e971cefc8b0f511ed37bdc90c1a906f26522ebb04a6c458b82f4e23ed84cb90772445be961b244c3 default-xsettings-xml.patch -" diff --git a/xfce/xfce4-systemload-plugin/xfce4-systemload-plugin.SMBuild b/xfce/xfce4-systemload-plugin/xfce4-systemload-plugin.SMBuild deleted file mode 100755 index 33d7513..0000000 --- a/xfce/xfce4-systemload-plugin/xfce4-systemload-plugin.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-systemload-plugin -version=1.3.1 -build=1sml -homepage="https://docs.xfce.org/panel-plugins/xfce4-systemload-plugin" -download="https://archive.xfce.org/src/panel-plugins/xfce4-systemload-plugin/1.3/xfce4-systemload-plugin-$version.tar.bz2" -desc="System load plugin for the Xfce panel" -requires="xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -3a05924693be074a8ddbd1a6811e3dd367a0524ff6d31dc42bf50985b54f46054db5a4543b94e1948f97e2f066ca277ad41b727af1d7f47dac9d21592dc6e496 xfce4-systemload-plugin-1.3.1.tar.lz -" diff --git a/xfce/xfce4-taskmanager/xfce4-taskmanager.SMBuild b/xfce/xfce4-taskmanager/xfce4-taskmanager.SMBuild deleted file mode 100755 index f482bbe..0000000 --- a/xfce/xfce4-taskmanager/xfce4-taskmanager.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-taskmanager -version=1.5.2 -build=1sml -homepage="https://docs.xfce.org/apps/xfce4-taskmanager" -download="https://archive.xfce.org/src/apps/xfce4-taskmanager/1.5/xfce4-taskmanager-$version.tar.bz2" -desc="Task manager for Xfce Desktop Environment" -requires="libwnck3 libxmu" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -c3bf11695e10d647f8cf7d137d22e55e4c2ba2c9637df1b2547e47a49310756b9dc18e03b97a4d08e7e59fb554ff452959e60d1527bbea8e0b8038c389d4f9af xfce4-taskmanager-1.5.2.tar.lz -" diff --git a/xfce/xfce4-terminal/xfce4-terminal.SMBuild b/xfce/xfce4-terminal/xfce4-terminal.SMBuild deleted file mode 100755 index e86c094..0000000 --- a/xfce/xfce4-terminal/xfce4-terminal.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-terminal -version=0.8.10 -build=1sml -homepage="https://docs.xfce.org/apps/terminal/start" -download="https://archive.xfce.org/src/apps/xfce4-terminal/0.8/xfce4-terminal-$version.tar.bz2" -desc="Modern terminal emulator for the Xfce Desktop Environment" -requires="libxfce4ui vte5" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -6e6718f269fc528aeb02921ebc0c7a9cbfa2135decc163561fcfe2a71d669e338cf03e7a26da98fb385385f86f2c308e9826dc81a6ddf0627cd8c0f43cda0374 xfce4-terminal-0.8.10.tar.lz -" diff --git a/xfce/xfce4-wavelan-plugin/xfce4-wavelan-plugin.SMBuild b/xfce/xfce4-wavelan-plugin/xfce4-wavelan-plugin.SMBuild deleted file mode 100755 index 73a8699..0000000 --- a/xfce/xfce4-wavelan-plugin/xfce4-wavelan-plugin.SMBuild +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-wavelan-plugin -version=0.6.2 -build=1sml -homepage="https://docs.xfce.org/panel-plugins/xfce4-wavelan-plugin" -download="https://archive.xfce.org/src/panel-plugins/xfce4-wavelan-plugin/0.6/xfce4-wavelan-plugin-$version.tar.bz2" -desc="Xfce panel plugin to display wifi connectivity monitor" -requires="xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -96b8fa09c9f9d01a575627b23ddd5503d9437e04a17ad724f499c74bb0312d030116b13f28481bb5794ebb2c9c7b69b04121f8bf52ee5aa38b0fda19a2b0ae9a xfce4-wavelan-plugin-0.6.2.tar.lz -" diff --git a/xfce/xfce4-weather-plugin/xfce4-weather-plugin.SMBuild b/xfce/xfce4-weather-plugin/xfce4-weather-plugin.SMBuild deleted file mode 100755 index 844a401..0000000 --- a/xfce/xfce4-weather-plugin/xfce4-weather-plugin.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-weather-plugin -version=0.11.0 -build=1sml -homepage="https://docs.xfce.org/panel-plugins/xfce4-weather-plugin" -download="https://archive.xfce.org/src/panel-plugins/xfce4-weather-plugin/0.11/xfce4-weather-plugin-$version.tar.bz2" -desc="Weather plugin for Xfce panel" -requires="libsoup libxml2 xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} -sha512sums=" -60fb097c9e206f1d7c5a5575f06e103036089fb54c218a0a297b7c197a1a59d5fb5c37f7d4e42e70fdbdb2ee1a082853617c0f209833a8f9809b8f750e0f0e33 xfce4-weather-plugin-0.11.0.tar.lz -" diff --git a/xfce/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.SMBuild b/xfce/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.SMBuild deleted file mode 100755 index c5cfb70..0000000 --- a/xfce/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.SMBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: PktSurf -app=xfce4-whiskermenu-plugin -version=2.7.1 -build=1sml -homepage="https://gottcode.org/xfce4-whiskermenu-plugin/" -download="https://gottcode.org/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-$version-src.tar.bz2" -desc="Alternate application launcher for Xfce" -requires="gtk3 garcon xfce4-panel" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - mkdir -p smbuild && cd smbuild - cmake .. \ - -DCMAKE_INSTALL_PREFIX="" \ - -DCMAKE_INSTALL_LIBDIR=lib - - make - make install DESTDIR=$pkg - - cp ../COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -1a0ee8b7a641d7c6784d606c6081bc1589e3422b5fdab00d8440afe4ad3eba0ea536599a7c3e020433009e741d0421000765ff1717fcdd21b865261c3480e263 xfce4-whiskermenu-plugin-2.7.1.tar.lz -" diff --git a/xfce/xfconf/xfconf.SMBuild b/xfce/xfconf/xfconf.SMBuild deleted file mode 100755 index 63f68e1..0000000 --- a/xfce/xfconf/xfconf.SMBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: PktSurf -app=xfconf -version=4.16.0 -build=2sml -homepage="https://docs.xfce.org/xfce/xfconf/start" -download="https://archive.xfce.org/xfce/4.16/src/xfconf-$version.tar.bz2" -desc="Xfce configuration storage system" -requires="libxfce4util gobject-introspection" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - - ./configure \ - --prefix="" \ - --disable-static - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -54b8ef8d94bca9fcf64523a84bbe0ca8936caba0ef95b4b7a62815fe985006974567147a70c63a4ce119dd16a24b9fc2ea610d6609c9f0e93ba15f9d63cef574 xfconf-4.16.0.tar.lz -" diff --git a/xfce/xfdesktop/xfdesktop.SMBuild b/xfce/xfdesktop/xfdesktop.SMBuild deleted file mode 100755 index c2a9f1a..0000000 --- a/xfce/xfdesktop/xfdesktop.SMBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: PktSurf -app=xfdesktop -version=4.16.0 -build=1sml -homepage="https://docs.xfce.org/xfce/xfdesktop/start" -download="https://archive.xfce.org/xfce/4.16/src/xfdesktop-$version.tar.bz2" -desc="Xfce Desktop Manager" -requires="exo garcon libxfce4ui thunar" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - - ./configure \ - --prefix="" \ - --enable-thunarx \ - --enable-notifications - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -70ce063b7ed853457997ff27051a207b7e879567c78ca95f690fef09b0495d860eb8a834556bb01585aa6ac3e77edc1e324f5fbe6c3a29134fa05e33f5ccc0f4 xfdesktop-4.16.0.tar.lz -" diff --git a/xfce/xfwm4-themes/xfwm4-themes.SMBuild b/xfce/xfwm4-themes/xfwm4-themes.SMBuild deleted file mode 100755 index e3f20a1..0000000 --- a/xfce/xfwm4-themes/xfwm4-themes.SMBuild +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: PktSurf -app=xfwm4-themes -version=4.10.0 -build=1sml -homepage="https://www.xfce.org" -download="https://archive.xfce.org/src/art/xfwm4-themes/4.10/xfwm4-themes-$version.tar.bz2" -desc="Collection of Xfce Window Manager Themes" -requires="xfwm4" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - - ./configure \ - --prefix="" \ - --libexecdir=/lib - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -f0717659b782123b9fd287d8e48facfe7e66e6f0d23b88ddd3571549b4df3fe713198fa1fe0c635b42bc7697dc790da6814c20fa211a8d52485e9a120000711e xfwm4-themes-4.10.0.tar.lz -" diff --git a/xfce/xfwm4/xfwm4.SMBuild b/xfce/xfwm4/xfwm4.SMBuild deleted file mode 100755 index f33f9c6..0000000 --- a/xfce/xfwm4/xfwm4.SMBuild +++ /dev/null @@ -1,46 +0,0 @@ -# Maintainer: PktSurf -app=xfwm4 -version=4.16.1 -build=1sml -homepage="https://docs.xfce.org/xfce/xfwm4/start" -download="https://archive.xfce.org/src/xfce/xfwm4/4.16/xfwm4-$version.tar.bz2" -desc="Xfce Window Manager" -requires="libepoxy libxpresent libxfce4ui xfconf" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - - # Results in faster window draw and less CPU on the pi - if [ "$aarch" = "aarch64" ]; then - compositingflag="--disable-compositor" - else - compositingflag="--enable-compositor" - fi - - ./configure \ - --prefix="" \ - --disable-static \ - --enable-startup-notification \ - --enable-randr \ - --enable-xsync \ - $compositingflag - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -51c42e908c1807809488a4b168b8a56a29c629889123d9ec84f7b1a6f284f6ba06e40e8034846049d57a2e1623f19584605331841043eaa9464a7ff88896d78f xfwm4-4.16.1.tar.lz -" diff --git a/xorg/.buildlist.xorg b/xorg/.buildlist.xorg index deb3c0f..5779c3f 100644 --- a/xorg/.buildlist.xorg +++ b/xorg/.buildlist.xorg @@ -45,6 +45,7 @@ libxaw3dxft libxscrnsaver spirv-headers glslang-vulkan-sdk +vulkan-headers libva mesa glew @@ -61,7 +62,6 @@ xf86-video-fbdev xf86-video-vesa xf86-video-fbturbo xf86-video-ati -xf86-video-intel xf86-video-dummy bdftopcf imake @@ -120,4 +120,4 @@ spandsp xdg-dbus-proxy font-util xorg-fonts -xdg-utils +libplacebo diff --git a/xorg/at-spi2-core/at-spi2-core.SMBuild b/xorg/at-spi2-core/smbuild similarity index 100% rename from xorg/at-spi2-core/at-spi2-core.SMBuild rename to xorg/at-spi2-core/smbuild diff --git a/xorg/bdftopcf/bdftopcf.SMBuild b/xorg/bdftopcf/smbuild similarity index 100% rename from xorg/bdftopcf/bdftopcf.SMBuild rename to xorg/bdftopcf/smbuild diff --git a/xorg/dbus/dbus.SMBuild b/xorg/dbus/smbuild similarity index 100% rename from xorg/dbus/dbus.SMBuild rename to xorg/dbus/smbuild diff --git a/xorg/dconf/dconf.SMBuild b/xorg/dconf/smbuild similarity index 100% rename from xorg/dconf/dconf.SMBuild rename to xorg/dconf/smbuild diff --git a/xorg/dejavu-fonts-ttf/dejavu-fonts-ttf.SMBuild b/xorg/dejavu-fonts-ttf/smbuild similarity index 100% rename from xorg/dejavu-fonts-ttf/dejavu-fonts-ttf.SMBuild rename to xorg/dejavu-fonts-ttf/smbuild diff --git a/xorg/font-util/font-util.SMBuild b/xorg/font-util/smbuild similarity index 100% rename from xorg/font-util/font-util.SMBuild rename to xorg/font-util/smbuild diff --git a/xorg/fontconfig/fontconfig.SMBuild b/xorg/fontconfig/smbuild similarity index 100% rename from xorg/fontconfig/fontconfig.SMBuild rename to xorg/fontconfig/smbuild diff --git a/xorg/freeglut/freeglut.SMBuild b/xorg/freeglut/smbuild similarity index 100% rename from xorg/freeglut/freeglut.SMBuild rename to xorg/freeglut/smbuild diff --git a/xorg/freetype/freetype.SMBuild b/xorg/freetype/smbuild similarity index 100% rename from xorg/freetype/freetype.SMBuild rename to xorg/freetype/smbuild diff --git a/xorg/gccmakedep/gccmakedep.SMBuild b/xorg/gccmakedep/smbuild old mode 100755 new mode 100644 similarity index 100% rename from xorg/gccmakedep/gccmakedep.SMBuild rename to xorg/gccmakedep/smbuild diff --git a/xorg/glew/glew.SMBuild b/xorg/glew/smbuild old mode 100755 new mode 100644 similarity index 81% rename from xorg/glew/glew.SMBuild rename to xorg/glew/smbuild index 6ea4965..2574d91 --- a/xorg/glew/glew.SMBuild +++ b/xorg/glew/smbuild @@ -21,7 +21,10 @@ build() { TEMPFILE=$(mktemp) fromdos < config/config.guess ; rm -f $TEMPFILE - make install.all GLEW_DEST="$pkg" LIBDIR="$pkg"/usr/lib + # Fix libdir so that it doesn't include /tmp/package-glew: + sed -i "s|@libdir@|/usr/lib|g" glew.pc.in + + make install.all GLEW_DEST="$pkg/usr" LIBDIR="$pkg/usr/lib" cp LICENSE.txt $pkgdocs/ diff --git a/xorg/glslang-vulkan-sdk/glslang-vulkan-sdk.SMBuild b/xorg/glslang-vulkan-sdk/smbuild similarity index 100% rename from xorg/glslang-vulkan-sdk/glslang-vulkan-sdk.SMBuild rename to xorg/glslang-vulkan-sdk/smbuild diff --git a/xorg/glslang/glslang.SMBuild b/xorg/glslang/glslang.SMBuild deleted file mode 100644 index 3253b1b..0000000 --- a/xorg/glslang/glslang.SMBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: PktSurf -app=glslang -version=1.3.268 -build=1sml -homepage="https://xorg.freedesktop.org/" -download="https://xorg.freedesktop.org/releases/individual/lib/libICE-$version.tar.bz2" -desc="OpenGL and OpenGL ES shader front end and validato" -requires="xorgproto xorg-macros xtrans" - -prepbuilddir() { - mkandenterbuilddir - rm -rf glslang-vulkan-sdk-$version - - tar xf $srcdir/glslang-vulkan-sdk-$version.tar.?z* - cd glslang-vulkan-sdk-$version - fixbuilddirpermissions -} - -build() { - mkdir -p smbuild && cd smbuild - cmake .. \ - -DCMAKE_BUILD_TYPE=None \ - -DCMAKE_INSTALL_PREFIX="" \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -DBUILD_SHARED_LIBS=On \ - -DENABLE_OPT=0 - - make - make install DESTDIR=$pkg - - cp ../LICENSE* $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -623fb8070a54be2068f9ea1ee80c1fc7ba0be314213b5f691a482241c76df75baa26d40f9c2ca2f8de3d247965b15203d82cbd69d8e888e18dfe4533c2a79abb glslang-vulkan-sdk-1.3.268.tar.lz -" \ No newline at end of file diff --git a/xorg/glu/glu.SMBuild b/xorg/glu/smbuild similarity index 100% rename from xorg/glu/glu.SMBuild rename to xorg/glu/smbuild diff --git a/xorg/iceauth/iceauth.SMBuild b/xorg/iceauth/smbuild similarity index 100% rename from xorg/iceauth/iceauth.SMBuild rename to xorg/iceauth/smbuild diff --git a/xorg/imake/imake.SMBuild b/xorg/imake/smbuild similarity index 100% rename from xorg/imake/imake.SMBuild rename to xorg/imake/smbuild diff --git a/xorg/imlib2/imlib2.SMBuild b/xorg/imlib2/smbuild similarity index 100% rename from xorg/imlib2/imlib2.SMBuild rename to xorg/imlib2/smbuild diff --git a/xorg/jasper/jasper.SMBuild b/xorg/jasper/smbuild similarity index 100% rename from xorg/jasper/jasper.SMBuild rename to xorg/jasper/smbuild diff --git a/xorg/lcms2/lcms2.SMBuild b/xorg/lcms2/smbuild similarity index 100% rename from xorg/lcms2/lcms2.SMBuild rename to xorg/lcms2/smbuild diff --git a/xorg/libdrm/libdrm.SMBuild b/xorg/libdrm/smbuild similarity index 100% rename from xorg/libdrm/libdrm.SMBuild rename to xorg/libdrm/smbuild diff --git a/xorg/libepoxy/libepoxy.SMBuild b/xorg/libepoxy/smbuild similarity index 100% rename from xorg/libepoxy/libepoxy.SMBuild rename to xorg/libepoxy/smbuild diff --git a/xorg/liberation-fonts-ttf/liberation-fonts-ttf.SMBuild b/xorg/liberation-fonts-ttf/smbuild similarity index 100% rename from xorg/liberation-fonts-ttf/liberation-fonts-ttf.SMBuild rename to xorg/liberation-fonts-ttf/smbuild diff --git a/xorg/libevdev/libevdev.SMBuild b/xorg/libevdev/smbuild old mode 100755 new mode 100644 similarity index 97% rename from xorg/libevdev/libevdev.SMBuild rename to xorg/libevdev/smbuild index cdbb731..3613afd --- a/xorg/libevdev/libevdev.SMBuild +++ b/xorg/libevdev/smbuild @@ -20,7 +20,6 @@ build() { mkdir -p smbuild && cd smbuild meson .. \ --prefix=/usr \ - --bindir=/bin \ -Dtests=disabled \ -Ddocumentation=disabled diff --git a/xorg/libfontenc/libfontenc.SMBuild b/xorg/libfontenc/smbuild similarity index 100% rename from xorg/libfontenc/libfontenc.SMBuild rename to xorg/libfontenc/smbuild diff --git a/xorg/libgudev/libgudev.SMBuild b/xorg/libgudev/smbuild similarity index 100% rename from xorg/libgudev/libgudev.SMBuild rename to xorg/libgudev/smbuild diff --git a/xorg/libice/libice.SMBuild b/xorg/libice/smbuild similarity index 100% rename from xorg/libice/libice.SMBuild rename to xorg/libice/smbuild diff --git a/xorg/libinput/libinput.SMBuild b/xorg/libinput/smbuild similarity index 100% rename from xorg/libinput/libinput.SMBuild rename to xorg/libinput/smbuild diff --git a/xorg/libpciaccess/libpciaccess.SMBuild b/xorg/libpciaccess/smbuild similarity index 100% rename from xorg/libpciaccess/libpciaccess.SMBuild rename to xorg/libpciaccess/smbuild diff --git a/xorg/libplacebo/smbuild b/xorg/libplacebo/smbuild new file mode 100644 index 0000000..41685b1 --- /dev/null +++ b/xorg/libplacebo/smbuild @@ -0,0 +1,35 @@ +# Maintainer: PktSurf +app=libplacebo +version=6.338.1 +build=1sml +homepage="https://code.videolan.org/videolan/libplacebo/" +download="https://code.videolan.org/videolan/libplacebo/-/archive/v$version/libplacebo-v$version.tar.bz2" +desc="User-space library oriented to Netlink developers" +requires="vulkan-headers mesa python-glad" + +prepbuilddir() { + mkandenterbuilddir + rm -rf $app-$version + + tar xf $srcdir/$app-$version.tar.?z* + cd $app-$version + fixbuilddirpermissions +} + +build() { + mkdir -p smbuild && cd smbuild + meson .. \ + --prefix=/usr \ + -Ddemos=false + + ninja + DESTDIR="$pkg" ninja install + + cp ../LICENSE $pkgdocs/ + + mkfinalpkg +} + +sha512sums=" +b11ccd1026f637f7849ade9d374658098dacdb99498464432f13a2ef03dbe03245277ccf0e3ab04260a2bd1549e04a69f3668ea8ad66a6057945829fbfe47d0c libplacebo-6.338.1.tar.lz +" diff --git a/xorg/libraw/libraw.SMBuild b/xorg/libraw/smbuild similarity index 100% rename from xorg/libraw/libraw.SMBuild rename to xorg/libraw/smbuild diff --git a/xorg/libsm/libsm.SMBuild b/xorg/libsm/smbuild similarity index 100% rename from xorg/libsm/libsm.SMBuild rename to xorg/libsm/smbuild diff --git a/xorg/libtiff/libtiff.SMBuild b/xorg/libtiff/smbuild similarity index 100% rename from xorg/libtiff/libtiff.SMBuild rename to xorg/libtiff/smbuild diff --git a/xorg/libva/libva.SMBuild b/xorg/libva/smbuild similarity index 100% rename from xorg/libva/libva.SMBuild rename to xorg/libva/smbuild diff --git a/xorg/libvdpau/libvdpau.SMBuild b/xorg/libvdpau/smbuild similarity index 100% rename from xorg/libvdpau/libvdpau.SMBuild rename to xorg/libvdpau/smbuild diff --git a/xorg/libwacom/libwacom.SMBuild b/xorg/libwacom/smbuild old mode 100755 new mode 100644 similarity index 97% rename from xorg/libwacom/libwacom.SMBuild rename to xorg/libwacom/smbuild index e697ce6..2397262 --- a/xorg/libwacom/libwacom.SMBuild +++ b/xorg/libwacom/smbuild @@ -19,7 +19,6 @@ prepbuilddir() { build() { ./configure \ --prefix=/usr \ - --bindir=/bin \ --disable-static make diff --git a/xorg/libx11/libx11.SMBuild b/xorg/libx11/smbuild similarity index 100% rename from xorg/libx11/libx11.SMBuild rename to xorg/libx11/smbuild diff --git a/xorg/libxau/libxau.SMBuild b/xorg/libxau/smbuild similarity index 100% rename from xorg/libxau/libxau.SMBuild rename to xorg/libxau/smbuild diff --git a/xorg/libxaw/libxaw.SMBuild b/xorg/libxaw/smbuild similarity index 100% rename from xorg/libxaw/libxaw.SMBuild rename to xorg/libxaw/smbuild diff --git a/xorg/libxaw3d/libxaw3d.SMBuild b/xorg/libxaw3d/smbuild similarity index 100% rename from xorg/libxaw3d/libxaw3d.SMBuild rename to xorg/libxaw3d/smbuild diff --git a/xorg/libxaw3dxft/libxaw3dxft.SMBuild b/xorg/libxaw3dxft/smbuild similarity index 100% rename from xorg/libxaw3dxft/libxaw3dxft.SMBuild rename to xorg/libxaw3dxft/smbuild diff --git a/xorg/libxcb/libxcb.SMBuild b/xorg/libxcb/smbuild similarity index 100% rename from xorg/libxcb/libxcb.SMBuild rename to xorg/libxcb/smbuild diff --git a/xorg/libxcomposite/libxcomposite.SMBuild b/xorg/libxcomposite/smbuild similarity index 100% rename from xorg/libxcomposite/libxcomposite.SMBuild rename to xorg/libxcomposite/smbuild diff --git a/xorg/libxcursor/libxcursor.SMBuild b/xorg/libxcursor/smbuild similarity index 100% rename from xorg/libxcursor/libxcursor.SMBuild rename to xorg/libxcursor/smbuild diff --git a/xorg/libxdamage/libxdamage.SMBuild b/xorg/libxdamage/smbuild similarity index 100% rename from xorg/libxdamage/libxdamage.SMBuild rename to xorg/libxdamage/smbuild diff --git a/xorg/libxdmcp/libxdmcp.SMBuild b/xorg/libxdmcp/smbuild similarity index 100% rename from xorg/libxdmcp/libxdmcp.SMBuild rename to xorg/libxdmcp/smbuild diff --git a/xorg/libxext/libxext.SMBuild b/xorg/libxext/smbuild similarity index 100% rename from xorg/libxext/libxext.SMBuild rename to xorg/libxext/smbuild diff --git a/xorg/libxfixes/libxfixes.SMBuild b/xorg/libxfixes/smbuild similarity index 100% rename from xorg/libxfixes/libxfixes.SMBuild rename to xorg/libxfixes/smbuild diff --git a/xorg/libxfont2/libxfont2.SMBuild b/xorg/libxfont2/smbuild similarity index 100% rename from xorg/libxfont2/libxfont2.SMBuild rename to xorg/libxfont2/smbuild diff --git a/xorg/libxft/libxft.SMBuild b/xorg/libxft/smbuild similarity index 100% rename from xorg/libxft/libxft.SMBuild rename to xorg/libxft/smbuild diff --git a/xorg/libxi/libxi.SMBuild b/xorg/libxi/smbuild similarity index 100% rename from xorg/libxi/libxi.SMBuild rename to xorg/libxi/smbuild diff --git a/xorg/libxinerama/libxinerama.SMBuild b/xorg/libxinerama/smbuild similarity index 100% rename from xorg/libxinerama/libxinerama.SMBuild rename to xorg/libxinerama/smbuild diff --git a/xorg/libxkbcommon/libxkbcommon.SMBuild b/xorg/libxkbcommon/smbuild similarity index 100% rename from xorg/libxkbcommon/libxkbcommon.SMBuild rename to xorg/libxkbcommon/smbuild diff --git a/xorg/libxkbfile/libxkbfile.SMBuild b/xorg/libxkbfile/smbuild similarity index 100% rename from xorg/libxkbfile/libxkbfile.SMBuild rename to xorg/libxkbfile/smbuild diff --git a/xorg/libxklavier/libxklavier.SMBuild b/xorg/libxklavier/smbuild similarity index 100% rename from xorg/libxklavier/libxklavier.SMBuild rename to xorg/libxklavier/smbuild diff --git a/xorg/libxmu/libxmu.SMBuild b/xorg/libxmu/smbuild similarity index 100% rename from xorg/libxmu/libxmu.SMBuild rename to xorg/libxmu/smbuild diff --git a/xorg/libxpm/libxpm.SMBuild b/xorg/libxpm/smbuild similarity index 100% rename from xorg/libxpm/libxpm.SMBuild rename to xorg/libxpm/smbuild diff --git a/xorg/libxpresent/libxpresent.SMBuild b/xorg/libxpresent/smbuild similarity index 100% rename from xorg/libxpresent/libxpresent.SMBuild rename to xorg/libxpresent/smbuild diff --git a/xorg/libxrandr/libxrandr.SMBuild b/xorg/libxrandr/smbuild similarity index 100% rename from xorg/libxrandr/libxrandr.SMBuild rename to xorg/libxrandr/smbuild diff --git a/xorg/libxrender/libxrender.SMBuild b/xorg/libxrender/smbuild similarity index 100% rename from xorg/libxrender/libxrender.SMBuild rename to xorg/libxrender/smbuild diff --git a/xorg/libxscrnsaver/libxscrnsaver.SMBuild b/xorg/libxscrnsaver/smbuild similarity index 100% rename from xorg/libxscrnsaver/libxscrnsaver.SMBuild rename to xorg/libxscrnsaver/smbuild diff --git a/xorg/libxshmfence/libxshmfence.SMBuild b/xorg/libxshmfence/smbuild similarity index 100% rename from xorg/libxshmfence/libxshmfence.SMBuild rename to xorg/libxshmfence/smbuild diff --git a/xorg/libxt/libxt.SMBuild b/xorg/libxt/smbuild similarity index 100% rename from xorg/libxt/libxt.SMBuild rename to xorg/libxt/smbuild diff --git a/xorg/libxtst/libxtst.SMBuild b/xorg/libxtst/smbuild similarity index 100% rename from xorg/libxtst/libxtst.SMBuild rename to xorg/libxtst/smbuild diff --git a/xorg/libxv/libxv.SMBuild b/xorg/libxv/smbuild similarity index 100% rename from xorg/libxv/libxv.SMBuild rename to xorg/libxv/smbuild diff --git a/xorg/libxxf86vm/libxxf86vm.SMBuild b/xorg/libxxf86vm/smbuild similarity index 100% rename from xorg/libxxf86vm/libxxf86vm.SMBuild rename to xorg/libxxf86vm/smbuild diff --git a/xorg/makedepend/makedepend.SMBuild b/xorg/makedepend/smbuild old mode 100755 new mode 100644 similarity index 100% rename from xorg/makedepend/makedepend.SMBuild rename to xorg/makedepend/smbuild diff --git a/xorg/mesa-demos/mesa-demos.SMBuild b/xorg/mesa-demos/smbuild old mode 100755 new mode 100644 similarity index 93% rename from xorg/mesa-demos/mesa-demos.SMBuild rename to xorg/mesa-demos/smbuild index f7375dc..f0739a4 --- a/xorg/mesa-demos/mesa-demos.SMBuild +++ b/xorg/mesa-demos/smbuild @@ -25,7 +25,7 @@ build() { make make install DESTDIR=$pkg - install -m 0755 src/egl/opengl/{eglgears_x11,eglinfo,eglkms,egltri_x11,peglgears,xeglgears,xeglthreads} "$pkg/bin/" + install -m 0755 src/egl/opengl/{eglgears_x11,eglinfo,eglkms,egltri_x11,peglgears,xeglgears,xeglthreads} "$pkg/usr/bin/" cp $srcdir/LICENSE $pkgdocs/ diff --git a/xorg/mesa/llvm17.patch b/xorg/mesa/llvm17.patch new file mode 100644 index 0000000..2e6f9a6 --- /dev/null +++ b/xorg/mesa/llvm17.patch @@ -0,0 +1,29 @@ +upstream: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23827 + +diff --git a/src/gallium/auxiliary/gallivm/lp_bld_init.c b/src/gallium/auxiliary/gallivm/lp_bld_init.c +index 24d0823..a7c6c37 100644 +--- a/src/gallium/auxiliary/gallivm/lp_bld_init.c ++++ b/src/gallium/auxiliary/gallivm/lp_bld_init.c +@@ -42,8 +42,10 @@ + + #include + #include ++#if LLVM_VERSION_MAJOR < 17 + #include +-#if LLVM_VERSION_MAJOR >= 7 ++#endif ++#if LLVM_VERSION_MAJOR >= 7 && LLVM_VERSION_MAJOR < 17 + #include + #endif + #include +@@ -53,8 +55,10 @@ + #if LLVM_VERSION_MAJOR <= 8 && (DETECT_ARCH_AARCH64 || DETECT_ARCH_ARM || DETECT_ARCH_S390 || DETECT_ARCH_MIPS64) + #include + #endif ++#if LLVM_VERSION_MAJOR < 17 + #include + #endif ++#endif + + unsigned gallivm_perf = 0; + diff --git a/xorg/mesa/mesa.SMBuild b/xorg/mesa/smbuild old mode 100755 new mode 100644 similarity index 60% rename from xorg/mesa/mesa.SMBuild rename to xorg/mesa/smbuild index 6113894..b42c942 --- a/xorg/mesa/mesa.SMBuild +++ b/xorg/mesa/smbuild @@ -1,11 +1,11 @@ # Maintainer: PktSurf app=mesa -version=22.3.6 +version=23.1.9 build=1sml homepage="https://www.mesa3d.org/" download="https://archive.mesa3d.org/mesa-$version.tar.xz" desc="An open-source implementation of the OpenGL specification" -requires="gcc-libs expat libxml2 llvm libdrm libx11 libxrandr libxdamage libxshmfence libxxf86vm libvdpau" +requires="gcc-libs libelf expat libxml2 llvm libdrm libx11 libxrandr libxdamage libxshmfence libxxf86vm libvdpau" prepbuilddir() { mkandenterbuilddir @@ -14,19 +14,16 @@ prepbuilddir() { tar xf $srcdir/$app-$version.tar.?z* cd $app-$version fixbuilddirpermissions + + applypatch $srcdir/llvm17.patch } build() { - if [[ $arch = aarch64 ]]; then - galliumdrivers="swrast,v3d,vc4,kmsro" - - elif [[ $arch = x86_64 ]]; then - galliumdrivers="nouveau,radeonsi,swrast,r300,i915,iris,zink" - fi + galliumdrivers="nouveau,radeonsi,swrast,r300,i915,iris,zink" mkdir -p smbuild && cd smbuild meson .. \ - --prefix=/ \ + --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ -Dbuildtype=release \ @@ -41,11 +38,8 @@ build() { -Dgles2=enabled \ -Dglx=dri \ -Dopengl=true \ - -Dvalgrind=false \ - -Dlibunwind=false \ - -Db_lto=false \ - -Dllvm=enabled \ - -Dshared-llvm=enabled + -Dvalgrind=disabled \ + -Dlibunwind=disabled ninja DESTDIR="$pkg" ninja install @@ -56,5 +50,6 @@ build() { } sha512sums=" -1346ff598ab783b726cc07fa4fee6f307a3ec610541a336411d95bfca9bd79f13040ec1f7d1e73a7b29c1a3e2e236e710344c79c867f44c5a2440df67841a6d3 mesa-22.3.6.tar.lz -" +886403cd9133e64c741a65497891aa868127f3d97583f908056c2b196690b562173a31f4573656fdd35ec89e22dd95ce02e0d683e5bf6261500420485ed268af mesa-23.1.9.tar.lz +2026e88c245da00c5170e7ce658c783427569787805e024fbea333d24da399e46ca0d4403e222e8138911c7f76216852c9214a800e3a84cac1993379abb5a621 llvm17.patch +" \ No newline at end of file diff --git a/xorg/mkfontscale/mkfontscale.SMBuild b/xorg/mkfontscale/smbuild similarity index 100% rename from xorg/mkfontscale/mkfontscale.SMBuild rename to xorg/mkfontscale/smbuild diff --git a/xorg/mtdev/mtdev.SMBuild b/xorg/mtdev/smbuild similarity index 100% rename from xorg/mtdev/mtdev.SMBuild rename to xorg/mtdev/smbuild diff --git a/xorg/numlockx/numlockx.SMBuild b/xorg/numlockx/smbuild similarity index 100% rename from xorg/numlockx/numlockx.SMBuild rename to xorg/numlockx/smbuild diff --git a/xorg/pixman/pixman.SMBuild b/xorg/pixman/smbuild similarity index 100% rename from xorg/pixman/pixman.SMBuild rename to xorg/pixman/smbuild diff --git a/xorg/setxkbmap/setxkbmap.SMBuild b/xorg/setxkbmap/smbuild similarity index 100% rename from xorg/setxkbmap/setxkbmap.SMBuild rename to xorg/setxkbmap/smbuild diff --git a/xorg/spandsp/spandsp.SMBuild b/xorg/spandsp/smbuild similarity index 100% rename from xorg/spandsp/spandsp.SMBuild rename to xorg/spandsp/smbuild diff --git a/xorg/spirv-headers/spirv-headers.SMBuild b/xorg/spirv-headers/smbuild similarity index 100% rename from xorg/spirv-headers/spirv-headers.SMBuild rename to xorg/spirv-headers/smbuild diff --git a/xorg/startup-notification/startup-notification.SMBuild b/xorg/startup-notification/smbuild similarity index 100% rename from xorg/startup-notification/startup-notification.SMBuild rename to xorg/startup-notification/smbuild diff --git a/xorg/terminus-font/terminus-font.SMBuild b/xorg/terminus-font/smbuild similarity index 100% rename from xorg/terminus-font/terminus-font.SMBuild rename to xorg/terminus-font/smbuild diff --git a/xorg/ttf-indic-fonts/ttf-indic-fonts.SMBuild b/xorg/ttf-indic-fonts/smbuild similarity index 100% rename from xorg/ttf-indic-fonts/ttf-indic-fonts.SMBuild rename to xorg/ttf-indic-fonts/smbuild diff --git a/xorg/twm/twm.SMBuild b/xorg/twm/smbuild similarity index 100% rename from xorg/twm/twm.SMBuild rename to xorg/twm/smbuild diff --git a/xorg/vala/vala.SMBuild b/xorg/vala/smbuild similarity index 100% rename from xorg/vala/vala.SMBuild rename to xorg/vala/smbuild diff --git a/xorg/vulkan-headers/smbuild b/xorg/vulkan-headers/smbuild new file mode 100644 index 0000000..2f48aa5 --- /dev/null +++ b/xorg/vulkan-headers/smbuild @@ -0,0 +1,39 @@ +# Maintainer: PktSurf +# Generated by mksm SMLinux build file generator version 0.100 +app=vulkan-headers +version=1.3.272 +build=1sml +homepage="https://github.com/KhronosGroup/Vulkan-Headers" +download="https://github.com/KhronosGroup/Vulkan-Headers/archive/refs/tags/v$version.tar.gz" +desc="Mesa's Vulkan layers" +requires="cmake" + +prepbuilddir() { + mkandenterbuilddir + rm -rf $app-$version + + tar xf $srcdir/$app-$version.tar.?z* + cd $app-$version + fixbuilddirpermissions +} + +build() { + mkdir -p smbuild && cd smbuild + cmake .. \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DCMAKE_C_FLAGS="$CFLAGS" \ + -DCMAKE_CXX_FLAGS="$CXXFLAGS" \ + -Wno-dev + + make + make install DESTDIR=$pkg + + cp ../LICENSE.* $pkgdocs/ + + mkfinalpkg +} + +sha512sums=" +9269940726523854c6d93da7d9ebf68cbd2828e414d117e53e4c01c6f8d654db46b8a660e05092cac7f690fecf1f37f0fa702368f79b2a247f8857614b85dd4a vulkan-headers-1.3.272.tar.lz +" \ No newline at end of file diff --git a/xorg/xauth/xauth.SMBuild b/xorg/xauth/smbuild similarity index 100% rename from xorg/xauth/xauth.SMBuild rename to xorg/xauth/smbuild diff --git a/xorg/xbitmaps/xbitmaps.SMBuild b/xorg/xbitmaps/smbuild similarity index 100% rename from xorg/xbitmaps/xbitmaps.SMBuild rename to xorg/xbitmaps/smbuild diff --git a/xorg/xcalc/xcalc.SMBuild b/xorg/xcalc/smbuild similarity index 100% rename from xorg/xcalc/xcalc.SMBuild rename to xorg/xcalc/smbuild diff --git a/xorg/xcb-proto/xcb-proto.SMBuild b/xorg/xcb-proto/smbuild similarity index 100% rename from xorg/xcb-proto/xcb-proto.SMBuild rename to xorg/xcb-proto/smbuild diff --git a/xorg/xcb-util-cursor/xcb-util-cursor.SMBuild b/xorg/xcb-util-cursor/smbuild similarity index 100% rename from xorg/xcb-util-cursor/xcb-util-cursor.SMBuild rename to xorg/xcb-util-cursor/smbuild diff --git a/xorg/xcb-util-image/xcb-util-image.SMBuild b/xorg/xcb-util-image/smbuild similarity index 100% rename from xorg/xcb-util-image/xcb-util-image.SMBuild rename to xorg/xcb-util-image/smbuild diff --git a/xorg/xcb-util-keysyms/xcb-util-keysyms.SMBuild b/xorg/xcb-util-keysyms/smbuild similarity index 100% rename from xorg/xcb-util-keysyms/xcb-util-keysyms.SMBuild rename to xorg/xcb-util-keysyms/smbuild diff --git a/xorg/xcb-util-renderutil/xcb-util-renderutil.SMBuild b/xorg/xcb-util-renderutil/smbuild similarity index 100% rename from xorg/xcb-util-renderutil/xcb-util-renderutil.SMBuild rename to xorg/xcb-util-renderutil/smbuild diff --git a/xorg/xcb-util-wm/xcb-util-wm.SMBuild b/xorg/xcb-util-wm/smbuild similarity index 100% rename from xorg/xcb-util-wm/xcb-util-wm.SMBuild rename to xorg/xcb-util-wm/smbuild diff --git a/xorg/xcb-util/xcb-util.SMBuild b/xorg/xcb-util/smbuild similarity index 100% rename from xorg/xcb-util/xcb-util.SMBuild rename to xorg/xcb-util/smbuild diff --git a/xorg/xclipboard/xclipboard.SMBuild b/xorg/xclipboard/smbuild similarity index 100% rename from xorg/xclipboard/xclipboard.SMBuild rename to xorg/xclipboard/smbuild diff --git a/xorg/xclock/xclock.SMBuild b/xorg/xclock/smbuild similarity index 100% rename from xorg/xclock/xclock.SMBuild rename to xorg/xclock/smbuild diff --git a/xorg/xdg-dbus-proxy/xdg-dbus-proxy.SMBuild b/xorg/xdg-dbus-proxy/smbuild similarity index 100% rename from xorg/xdg-dbus-proxy/xdg-dbus-proxy.SMBuild rename to xorg/xdg-dbus-proxy/smbuild diff --git a/xorg/xdg-user-dirs/xdg-user-dirs.SMBuild b/xorg/xdg-user-dirs/smbuild similarity index 100% rename from xorg/xdg-user-dirs/xdg-user-dirs.SMBuild rename to xorg/xdg-user-dirs/smbuild diff --git a/xorg/xdg-utils/xdg-utils.SMBuild b/xorg/xdg-utils/xdg-utils.SMBuild deleted file mode 100644 index ec6c70a..0000000 --- a/xorg/xdg-utils/xdg-utils.SMBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: PktSurf -app=xdg-utils -version=1.1.3 -build=1sml -homepage="https://www.freedesktop.org/wiki/Software/xdg-utils/" -download="https://portland.freedesktop.org/download/xdg-utils-$version.tar.gz" -desc="Command line tools that assist applications in desktop integration" -requires="xmlto file docbook xset" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions -} - -build() { - ./configure \ - --prefix=/usr - - make - make install DESTDIR=$pkg - - cp LICENSE $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -8b4bcb4167b094ee5cc59d9f2f61062f6d69e4d1d3ec38b199eaa2f83e4e96b7f9b126e7a67054e929f7edb31f1c0778f59c7e113b7a766e3327bc6d894582c8 xdg-utils-1.1.3.tar.lz -" diff --git a/xorg/xev/xev.SMBuild b/xorg/xev/smbuild old mode 100755 new mode 100644 similarity index 100% rename from xorg/xev/xev.SMBuild rename to xorg/xev/smbuild diff --git a/xorg/xf86-input-evdev/xf86-input-evdev.SMBuild b/xorg/xf86-input-evdev/smbuild similarity index 100% rename from xorg/xf86-input-evdev/xf86-input-evdev.SMBuild rename to xorg/xf86-input-evdev/smbuild diff --git a/xorg/xf86-input-keyboard/xf86-input-keyboard.SMBuild b/xorg/xf86-input-keyboard/smbuild similarity index 100% rename from xorg/xf86-input-keyboard/xf86-input-keyboard.SMBuild rename to xorg/xf86-input-keyboard/smbuild diff --git a/xorg/xf86-input-libinput/xf86-input-libinput.SMBuild b/xorg/xf86-input-libinput/smbuild similarity index 100% rename from xorg/xf86-input-libinput/xf86-input-libinput.SMBuild rename to xorg/xf86-input-libinput/smbuild diff --git a/xorg/xf86-input-mouse/xf86-input-mouse.SMBuild b/xorg/xf86-input-mouse/smbuild similarity index 100% rename from xorg/xf86-input-mouse/xf86-input-mouse.SMBuild rename to xorg/xf86-input-mouse/smbuild diff --git a/xorg/xf86-video-ati/xf86-video-ati.SMBuild b/xorg/xf86-video-ati/smbuild similarity index 100% rename from xorg/xf86-video-ati/xf86-video-ati.SMBuild rename to xorg/xf86-video-ati/smbuild diff --git a/xorg/xf86-video-dummy/xf86-video-dummy.SMBuild b/xorg/xf86-video-dummy/smbuild similarity index 100% rename from xorg/xf86-video-dummy/xf86-video-dummy.SMBuild rename to xorg/xf86-video-dummy/smbuild diff --git a/xorg/xf86-video-fbdev/xf86-video-fbdev.SMBuild b/xorg/xf86-video-fbdev/smbuild similarity index 100% rename from xorg/xf86-video-fbdev/xf86-video-fbdev.SMBuild rename to xorg/xf86-video-fbdev/smbuild diff --git a/xorg/xf86-video-fbturbo/xf86-video-fbturbo.SMBuild b/xorg/xf86-video-fbturbo/smbuild similarity index 100% rename from xorg/xf86-video-fbturbo/xf86-video-fbturbo.SMBuild rename to xorg/xf86-video-fbturbo/smbuild diff --git a/xorg/xf86-video-intel/xf86-video-intel.SMBuild b/xorg/xf86-video-intel/xf86-video-intel.SMBuild deleted file mode 100755 index daa3797..0000000 --- a/xorg/xf86-video-intel/xf86-video-intel.SMBuild +++ /dev/null @@ -1,44 +0,0 @@ -# Maintainer: PktSurf -app=xf86-video-intel -version=2.99.917 -build=1sml -homepage="https://xorg.freedesktop.org/" -download="https://xorg.freedesktop.org/releases/individual/driver/xf86-video-intel-$version.tar.bz2" -desc="X.org Intel i810/i830/i915/945G/G965+ video drivers" -requires="pixman libxv libxinerama libxtst libxrandr libxcursor xorg-server" -sm_noautoconfsite=1 -apparch="x86_64" - -prepbuilddir() { - mkandenterbuilddir - rm -rf $app-$version - - tar xf $srcdir/$app-$version.tar.?z* - cd $app-$version - fixbuilddirpermissions - - applypatch $srcdir/git.patch - - autoreconf -vif -} - -build() { - ./configure \ - --prefix= \ - --enable-xvmc \ - --disable-dga \ - --with-default-dri=3 \ - --disable-selective-werror - - make - make install DESTDIR=$pkg - - cp COPYING $pkgdocs/ - - mkfinalpkg -} - -sha512sums=" -c7d33a0efe36aa46f2d3ba8c3d48675492ded43515a4b015ec789f3a8ac72639690f11003372e4537a261cdaa602fc7600719c74134bbaeec60bdd5cdca345e5 xf86-video-intel-2.99.917.tar.lz -0fe4e455dcbc4ae6622dca483ef3ddc765c43009fdb0fef82bdaa835a737796a6caf8afa9c6630919f43c977a6f736770c3779f04d8c823da4fc9cee17d16f19 git.patch -" diff --git a/xorg/xf86-video-vesa/xf86-video-vesa.SMBuild b/xorg/xf86-video-vesa/smbuild similarity index 100% rename from xorg/xf86-video-vesa/xf86-video-vesa.SMBuild rename to xorg/xf86-video-vesa/smbuild diff --git a/xorg/xfontsel/xfontsel.SMBuild b/xorg/xfontsel/smbuild similarity index 100% rename from xorg/xfontsel/xfontsel.SMBuild rename to xorg/xfontsel/smbuild diff --git a/xorg/xhost/xhost.SMBuild b/xorg/xhost/smbuild similarity index 100% rename from xorg/xhost/xhost.SMBuild rename to xorg/xhost/smbuild diff --git a/xorg/xinit/xinit.SMBuild b/xorg/xinit/smbuild similarity index 100% rename from xorg/xinit/xinit.SMBuild rename to xorg/xinit/smbuild diff --git a/xorg/xinput/xinput.SMBuild b/xorg/xinput/smbuild similarity index 100% rename from xorg/xinput/xinput.SMBuild rename to xorg/xinput/smbuild diff --git a/xorg/xkbcomp/xkbcomp.SMBuild b/xorg/xkbcomp/smbuild similarity index 100% rename from xorg/xkbcomp/xkbcomp.SMBuild rename to xorg/xkbcomp/smbuild diff --git a/xorg/xkeyboard-config/xkeyboard-config.SMBuild b/xorg/xkeyboard-config/smbuild similarity index 100% rename from xorg/xkeyboard-config/xkeyboard-config.SMBuild rename to xorg/xkeyboard-config/smbuild diff --git a/xorg/xmodmap/xmodmap.SMBuild b/xorg/xmodmap/smbuild similarity index 100% rename from xorg/xmodmap/xmodmap.SMBuild rename to xorg/xmodmap/smbuild diff --git a/xorg/xorg-cf-files/xorg-cf-files.SMBuild b/xorg/xorg-cf-files/smbuild similarity index 100% rename from xorg/xorg-cf-files/xorg-cf-files.SMBuild rename to xorg/xorg-cf-files/smbuild diff --git a/xorg/xorg-fonts/xorg-fonts.SMBuild b/xorg/xorg-fonts/smbuild similarity index 100% rename from xorg/xorg-fonts/xorg-fonts.SMBuild rename to xorg/xorg-fonts/smbuild diff --git a/xorg/xorg-macros/xorg-macros.SMBuild b/xorg/xorg-macros/smbuild similarity index 100% rename from xorg/xorg-macros/xorg-macros.SMBuild rename to xorg/xorg-macros/smbuild diff --git a/xorg/xorg-server/xorg-server.SMBuild b/xorg/xorg-server/smbuild similarity index 100% rename from xorg/xorg-server/xorg-server.SMBuild rename to xorg/xorg-server/smbuild diff --git a/xorg/xorgproto/xorgproto.SMBuild b/xorg/xorgproto/smbuild similarity index 100% rename from xorg/xorgproto/xorgproto.SMBuild rename to xorg/xorgproto/smbuild diff --git a/xorg/xrandr/xrandr.SMBuild b/xorg/xrandr/smbuild similarity index 100% rename from xorg/xrandr/xrandr.SMBuild rename to xorg/xrandr/smbuild diff --git a/xorg/xrdb/xrdb.SMBuild b/xorg/xrdb/smbuild similarity index 100% rename from xorg/xrdb/xrdb.SMBuild rename to xorg/xrdb/smbuild diff --git a/xorg/xset/xset.SMBuild b/xorg/xset/smbuild similarity index 100% rename from xorg/xset/xset.SMBuild rename to xorg/xset/smbuild diff --git a/xorg/xsetroot/xsetroot.SMBuild b/xorg/xsetroot/smbuild similarity index 100% rename from xorg/xsetroot/xsetroot.SMBuild rename to xorg/xsetroot/smbuild diff --git a/xorg/xtrans/xtrans.SMBuild b/xorg/xtrans/smbuild similarity index 100% rename from xorg/xtrans/xtrans.SMBuild rename to xorg/xtrans/smbuild diff --git a/xorg/xvinfo/xvinfo.SMBuild b/xorg/xvinfo/smbuild similarity index 100% rename from xorg/xvinfo/xvinfo.SMBuild rename to xorg/xvinfo/smbuild diff --git a/xorg/xwd/xwd.SMBuild b/xorg/xwd/smbuild similarity index 100% rename from xorg/xwd/xwd.SMBuild rename to xorg/xwd/smbuild