Added xorg, gtk and extra

This commit is contained in:
SMLinux 2022-01-28 23:22:14 +05:30
parent 98e71a6096
commit 7f19a9d366
374 changed files with 57627 additions and 0 deletions

51
extra/.buildlist.extra Normal file
View file

@ -0,0 +1,51 @@
sdl
sdl2
libass
ffmpeg
ffmpegthumbnailer
rdesktop
mtpaint
rxvt-unicode
dmenu
dwm
bluez
blueman
feh
galculator
imagemagick
abiword
gnumeric
xarchiver
gtkterm
mupdf
mplayer
spacefm
gtypist
testdisk
fceux
wmstickynotes
audacious
ace
gpaint
gparted
iotop
gftp
cmus
gnuchess
aisleriot
usbreset
mtd-utils
freerdp
gimp
gthumb
mpv
dia
v4l-utils
scrcpy
slock
heimdall
tmux
calcurse
florence
micro-tetris
cmatrix

45
extra/abiword/abiword.SMBuild Executable file
View file

@ -0,0 +1,45 @@
APP=abiword
VERSION=3.0.4
BUILD=2sml
HOMEPAGE="www.abisource.com"
DOWNLOAD="https://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz"
DESC="Opensource full-featured word processor"
REQUIRES="desktop-file-utils enchant libical goffice libgsf librsvg libsoup wv gtk3 "
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
_plugins="applix babelfish bmp clarisworks collab docbook eml epub \
freetranslation garble gdict gimp google hancom hrtext iscii kword \
latex loadbindings mht mif mswrite openwriter openxml opml paint \
passepartout pdb pdf presentation s5 sdw t602 urldict wikipedia wml \
xslfo"
patch -p1 < $SRCDIR/enchant_checker.cpp.patch
patch -p1 < $SRCDIR/unixmouse.diff
./configure \
--prefix="" \
--sysconfdir=/etc \
--enable-shared \
--disable-static \
--enable-plugins="$_plugins"
make
make install DESTDIR=$PKG
cp COPY* $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
d0a7fd6873862e4da9cd4ecc384b9cc8ec8f2bbf23bdec8c4c56fed16ca274fbecedf11dc80c6d835eaad8b316b143e3cb3adea162fc74984fa4725c906c5821 abiword-3.0.4.tar.lz
0163d3275a7f260431885d9ea20bcb0c2cd52e19a062141422187f4df2f51c9613a90f1b7151fd50e2c1b7f511b767f1a2082c30792e59939ab0f3cf1c8aca65 enchant_checker.cpp.patch
b8634c410485b2a5c8495bf5bcbdda027aca2e7028efc6ea06763d1df121409434cab53f370b55d409fb99e6dbb72819b99cb596ee735fe97aa235d0ed7b0124 unixmouse.diff
"

1
extra/abiword/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

View file

@ -0,0 +1,29 @@
--- a/src/af/xap/xp/enchant_checker.cpp.orig 2020-06-02 19:00:17.626941767 +0530
+++ b/src/af/xap/xp/enchant_checker.cpp 2020-06-02 19:01:36.075993221 +0530
@@ -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)

View file

@ -0,0 +1,12 @@
--- a/src/af/ev/gtk/ev_UnixMouse.cpp 2021-03-20 19:24:22.219913596 +0530
+++ b/src/af/ev/gtk/ev_UnixMouse.cpp 2021-03-20 19:24:07.341070272 +0530
@@ -20,6 +20,9 @@
// TODO see if we need to do the GTK absolute-to-relative coordinate
// TODO trick like we did in the top ruler.
+#include <cstdlib>
+#include <cmath>
+
#include "ut_assert.h"
#include "ut_debugmsg.h"
#include "ut_types.h"

38
extra/ace/ace.SMBuild Executable file
View file

@ -0,0 +1,38 @@
APP=ace
VERSION=1.4
BUILD=1sml
HOMEPAGE="https://www.delorie.com/store/ace/"
DOWNLOAD="https://www.delorie.com/store/ace/ace-1.4.tar.gz"
DESC="A set of Xorg solitaire games"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
patch -p1 < $SRCDIR/ace14_fixes.patch
LDFLAGS="-lpng -lz -lm" \
./configure \
--prefix="" \
--disable-static \
$BUILDDIST
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkdir -p $PKG/share/applications
cp $SRCDIR/*.desktop $PKG/share/applications/
mkfinalpkg
}
SHA512SUMS="
3be9ac04faa48e1464f1877553ff2717829ae5aa0398dd99d044fbf4a55f5a62e4443a3fc71f9a5f7ceb7a1bd02c126098b2f2b9f70c1315e86e465d3e556bec ace-1.4.tar.lz
16fa23cd3d30c8044ba35244f75d7d234eb7f4baaf0904ccd3412d0cd084315fb0691f0ea4da1084482bd47875a21cc423b29f83f501c93249430f89c01c6a2d ace14_fixes.patch
"

View file

@ -0,0 +1,57 @@
--- ace14/lib/xwin.c
+++ ace-1.4/lib/xwin.c
@@ -89,10 +89,10 @@
/* Motif window hints */
typedef struct
{
- unsigned flags;
- unsigned functions;
- unsigned decorations;
- int inputMode;
+ unsigned long flags;
+ unsigned long functions;
+ unsigned long decorations;
+ long inputMode;
} PropMotifWmHints;
typedef PropMotifWmHints PropMwmHints;
@@ -841,13 +841,13 @@
png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, 0, 0, 0);
info_ptr = png_create_info_struct (png_ptr);
- if (setjmp (png_ptr->jmpbuf)) {
+ if (setjmp (png_jmpbuf (png_ptr))) {
fprintf(stderr, "Invalid PNG image!\n");
return;
}
file_bytes = src->file_data;
- png_set_read_fn (png_ptr, (voidp)&file_bytes, (png_rw_ptr)png_reader);
+ png_set_read_fn (png_ptr, (void *)&file_bytes, (png_rw_ptr)png_reader);
png_read_info (png_ptr, info_ptr);
--- ace14/lib/make-imglib.c
+++ ace-1.4/lib/make-imglib.c
@@ -86,7 +86,7 @@
png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, 0, 0, 0);
info_ptr = png_create_info_struct (png_ptr);
- if (setjmp (png_ptr->jmpbuf)) {
+ if (setjmp (png_jmpbuf (png_ptr))) {
fclose (f);
continue;
}
--- ace14/lib/Makefile.am
+++ ace-1.4/lib/Makefile.am
@@ -6,7 +6,7 @@
CLEANFILES = images.c images.d
INCLUDES = $(X_CFLAGS) @PDA@
-AM_LDFLAGS = $(X_LIBS)
+AM_LDFLAGS = $(X_LIBS) -lpng -lz -lm
BUILD_CC = @BUILD_CC@
AR = @AR@

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Canfield
GenericName=
Comment=Solitary card-game
Icon=
Exec=/bin/canfield
Terminal=false
Categories=Game;BoardGame;

1
extra/ace/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Freecell
GenericName=
Comment=Solitary card-game
Icon=
Exec=/bin/freecell
Terminal=false
Categories=Game;CardGame;

9
extra/ace/golf.desktop Normal file
View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Golf
GenericName=
Comment=Another solitary card-game
Icon=
Exec=/bin/golf
Terminal=false
Categories=Game;CardGame;

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Mastermind
GenericName=
Comment=Guess a secret combination of colors
Icon=
Exec=/bin/mastermind
Terminal=false
Categories=Game;LogicGame;

9
extra/ace/merlin.desktop Normal file
View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Merlin
GenericName=
Comment=Classical puzzle
Icon=
Exec=/bin/merlin
Terminal=false
Categories=Game;LogicGame;

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Minesweeper
GenericName=
Comment=Find all hidden mines in a minefield
Icon=
Exec=/bin/minesweeper
Terminal=false
Categories=Game;LogicGame;

9
extra/ace/pegged.desktop Normal file
View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Pegged
GenericName=
Comment=Classical board game
Icon=
Exec=/bin/pegged
Terminal=false
Categories=Game;LogicGame;

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Penguins
GenericName=
Comment=Solitary card-game
Icon=
Exec=/bin/penguins
Terminal=false
Categories=Game;CardGame;

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Solitaire
GenericName=
Comment=Solitary card-game
Icon=
Exec=/bin/solitaire
Terminal=false
Categories=Game;CardGame;

9
extra/ace/spider.desktop Normal file
View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Spider
GenericName=
Comment=Solitary card-game
Icon=
Exec=/bin/spider
Terminal=false
Categories=Game;BoardGame;

View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Taipei-Editor
GenericName=
Comment=Editor for your own taipei levels
Icon=
Exec=/bin/taipedit
Terminal=false
Categories=Game;BoardGame;

9
extra/ace/taipei.desktop Normal file
View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Taipei
GenericName=
Comment=Asian puzzle, remove pairs of equal stones
Icon=
Exec=/bin/taipei
Terminal=false
Categories=Game;BoardGame;

9
extra/ace/thornq.desktop Normal file
View file

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=Penguin Thornq
GenericName=
Comment=Solitary card-game
Icon=
Exec=/bin/thornq
Terminal=false
Categories=Game;CardGame;

View file

@ -0,0 +1,40 @@
APP=aisleriot
VERSION=3.22.9
BUILD=1sml
HOMEPAGE="https://wiki.gnome.org/Apps/Aisleriot"
DOWNLOAD="https://gitlab.gnome.org/GNOME/aisleriot/-/archive/3.22.9/aisleriot-3.22.9.tar.bz2"
DESC="Card games collection written in guile"
REQUIRES="guile gtk3 libcanberra librsvg "
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
patch -p1 < $SRCDIR/guile3.diff
CONFIG_SHELL=bash \
./configure \
--prefix="" \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-sound \
--with-card-theme-formats=svg \
--disable-schemas-install \
--with-platform=gtk-only
make
make install DESTDIR=$PKG
cp COPYING* $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
a93779fea92542caa29117bd76c3df524924fa8a0aae0ae2b4d831c311acbaa6c061cbb98e269937b694e99c98226d58e84ce266fe34cf4261602f4bb4e7906e aisleriot-3.22.9.tar.xz
637410e68bfaea366830d9d6e9ef3b2f03153b8406a209163c694d0a0e26b1f4bd87cfe1868c2ad25913ca73bdf75fbb1a00e001a053bfee286521c9e5d8feef guile3.diff
"

View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

View file

@ -0,0 +1,20 @@
--- a/configure 2020-02-05 00:02:14.990196320 +0100
+++ b/configure 2020-02-05 00:03:41.968108947 +0100
@@ -1610,7 +1610,7 @@
Config database for installing schema files.
--with-gconf-schema-file-dir=dir
Directory for installing schema files.
- --with-guile=2.2|2.0|auto
+ --with-guile=3.0|2.2|2.0|auto
Which guile version to use (default: auto)
--with-help-method which help method to use (ghelp|file|library;
default: ghelp)
@@ -18995,7 +18995,7 @@
# Guile
# *****
-guile_versions_all="2.2 2.0"
+guile_versions_all="3.0 2.2 2.0"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking which guile version to use" >&5
$as_echo_n "checking which guile version to use... " >&6; }

View file

@ -0,0 +1,33 @@
APP=audacious
VERSION=4.0.2
BUILD=1sml
HOMEPAGE="http://www.audacious-media-player.org"
DOWNLOAD=""
DESC="Lightweight, advanced audio player focused on audio quality"
REQUIRES="desktop-file-utils unzip hicolor-icon-theme gtk2 "
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
./configure \
--prefix="" \
--with-buildstamp='SMLinux' \
--enable-gtk \
--disable-qt
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
74f65d4e7975357f1492a4169f2c5d710d71f0021851853f47acbd8ea8da9678fca8f0363eeb97072be73129e4676bf76c9adb8fa6db7dbcd0f9ca4113265702 audacious-4.0.2.tar.lz
"

View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

1
extra/blueman/README Normal file
View file

@ -0,0 +1 @@
blueman requires that the user be a part of the 'lp' group to prevent "Access Denied" errors when launching the blueman applet.

39
extra/blueman/blueman.SMBuild Executable file
View file

@ -0,0 +1,39 @@
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/2.1.4.tar.gz"
DESC="Graphical GTK+ Bluetooth Manager"
REQUIRES="py3cairo pygobject3 cython"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
./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/
rm -rfv $PKG/usr
mkfinalpkg
}
SHA512SUMS="
b8b54942092c1984cfac0cf73e2ac23f7693cb3ee0aa4cfaab1fa0282de4afd539f6860d5541523b542956b2efa31da3ec012dcc39d92fd699d0b8479df641ff blueman-2.1.4.tar.xz
"

1
extra/blueman/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

View file

@ -0,0 +1,24 @@
# /etc/udev/rules.d/99-serial.rules
# Copied from Raspbian's 99-com.rules
KERNEL=="ttyAMA[01]", PROGRAM="/bin/sh -c '\
ALIASES=/proc/device-tree/aliases; \
if cmp -s $ALIASES/uart0 $ALIASES/serial0; then \
echo 0;\
elif cmp -s $ALIASES/uart0 $ALIASES/serial1; then \
echo 1; \
else \
exit 1; \
fi\
'", SYMLINK+="serial%c"
KERNEL=="ttyS0", PROGRAM="/bin/sh -c '\
ALIASES=/proc/device-tree/aliases; \
if cmp -s $ALIASES/uart1 $ALIASES/serial0; then \
echo 0; \
elif cmp -s $ALIASES/uart1 $ALIASES/serial1; then \
echo 1; \
else \
exit 1; \
fi \
'", SYMLINK+="serial%c"

View file

@ -0,0 +1,61 @@
Submitted By: Armin K. <krejzi at email dot com>
Date: 2013-04-29
Initial Package Version: 5.17
Upstream Status: unknown
Origin: Arch Linux (Giovanni Campagna)
Description: Allow using obexd without systemd in the user session
Not all sessions run systemd --user (actually, the majority
doesn't), so the dbus daemon must be able to spawn obexd
directly, and to do so it needs the full path of the daemon.
---
Makefile.obexd | 4 ++--
obexd/src/org.bluez.obex.service | 4 ----
obexd/src/org.bluez.obex.service.in | 4 ++++
3 files changed, 6 insertions(+), 6 deletions(-)
delete mode 100644 obexd/src/org.bluez.obex.service
create mode 100644 obexd/src/org.bluez.obex.service.in
diff --git a/Makefile.obexd b/Makefile.obexd
index 3760867..142e7c3 100644
--- a/Makefile.obexd
+++ b/Makefile.obexd
@@ -2,12 +2,12 @@
if SYSTEMD
systemduserunitdir = @SYSTEMD_USERUNITDIR@
systemduserunit_DATA = obexd/src/obex.service
+endif
dbussessionbusdir = @DBUS_SESSIONBUSDIR@
dbussessionbus_DATA = obexd/src/org.bluez.obex.service
-endif
-EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service
+EXTRA_DIST += obexd/src/obex.service.in obexd/src/org.bluez.obex.service.in
obex_plugindir = $(libdir)/obex/plugins
diff --git a/obexd/src/org.bluez.obex.service b/obexd/src/org.bluez.obex.service
deleted file mode 100644
index a538088..0000000
--- a/obexd/src/org.bluez.obex.service
+++ /dev/null
@@ -1,4 +0,0 @@
-[D-BUS Service]
-Name=org.bluez.obex
-Exec=/bin/false
-SystemdService=dbus-org.bluez.obex.service
diff --git a/obexd/src/org.bluez.obex.service.in b/obexd/src/org.bluez.obex.service.in
new file mode 100644
index 0000000..9c815f2
--- /dev/null
+++ b/obexd/src/org.bluez.obex.service.in
@@ -0,0 +1,4 @@
+[D-BUS Service]
+Name=org.bluez.obex
+Exec=@libexecdir@/obexd
+SystemdService=dbus-org.bluez.obex.service
--
1.8.3.1

View file

@ -0,0 +1,67 @@
Origin: https://gist.github.com/pelwell/c8230c48ea24698527cd
diff -ur bluez-5.40-orig/tools/hciattach_bcm43xx.c bluez-5.40/tools/hciattach_bcm43xx.c
--- bluez-5.40-orig/tools/hciattach_bcm43xx.c 2015-03-11 10:01:57.000000000 +0000
+++ bluez-5.40/tools/hciattach_bcm43xx.c 2016-06-03 19:44:08.726997105 +0100
@@ -43,7 +43,7 @@
#include "hciattach.h"
#ifndef FIRMWARE_DIR
-#define FIRMWARE_DIR "/etc/firmware"
+#define FIRMWARE_DIR "/lib/firmware/brcm"
#endif
#define FW_EXT ".hcd"
@@ -366,11 +366,8 @@
return -1;
if (bcm43xx_locate_patch(FIRMWARE_DIR, chip_name, fw_path)) {
- fprintf(stderr, "Patch not found, continue anyway\n");
+ fprintf(stderr, "Patch not found for %s, continue anyway\n", chip_name);
} else {
- if (bcm43xx_set_speed(fd, ti, speed))
- return -1;
-
if (bcm43xx_load_firmware(fd, fw_path))
return -1;
@@ -380,6 +377,7 @@
return -1;
}
+ sleep(1);
if (bcm43xx_reset(fd))
return -1;
}
diff -ur bluez-5.40-orig/tools/hciattach.c bluez-5.40/tools/hciattach.c
--- bluez-5.40-orig/tools/hciattach.c 2016-05-26 17:51:11.000000000 +0100
+++ bluez-5.40/tools/hciattach.c 2016-06-03 19:44:08.716997563 +0100
@@ -1090,6 +1090,9 @@
{ "bcm43xx", 0x0000, 0x0000, HCI_UART_H4, 115200, 3000000,
FLOW_CTL, DISABLE_PM, NULL, bcm43xx, NULL },
+ { "bcm43xx-3wire", 0x0000, 0x0000, HCI_UART_3WIRE, 115200, 3000000,
+ 0, DISABLE_PM, NULL, bcm43xx, NULL },
+
{ "ath3k", 0x0000, 0x0000, HCI_UART_ATH3K, 115200, 115200,
FLOW_CTL, DISABLE_PM, NULL, ath3k_ps, ath3k_pm },
@@ -1236,7 +1239,7 @@
{
struct uart_t *u = NULL;
int detach, printpid, raw, opt, i, n, ld, err;
- int to = 10;
+ int to = 30;
int init_speed = 0;
int send_break = 0;
pid_t pid;
--- a/src/shared/util.h 2020-06-27 14:59:15.658492350 +0530
+++ b/src/shared/util.h 2020-06-27 14:59:56.525772841 +0530
@@ -26,6 +26,7 @@
#include <alloca.h>
#include <byteswap.h>
#include <string.h>
+#include <endian.h>
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define le16_to_cpu(val) (val)

66
extra/bluez/bluez.SMBuild Executable file
View file

@ -0,0 +1,66 @@
APP=bluez
VERSION=5.40
BUILD=1sml
HOMEPAGE="http://www.bluez.org"
DOWNLOAD=""
DESC="Bluetooth libraries and utilities"
REQUIRES="libical alsa-lib json-c glib eudev dbus icu"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
patch -p1 < $SRCDIR/bluez-5.30-obexd_without_systemd-1.patch
[ "$ARCH" = "aarch64" ] && patch -p1 < $SRCDIR/bluez-5.40-rpi-fixes.patch
sed -i -e 's|-lreadline|\0 -lncursesw|g' Makefile.{in,tools}
autoreconf -vif
./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
mkfinalpkg
}
SHA512SUMS="
9f392eaabaef1104d09c8820350cb1c2e7fb09c13cfaa68742459c26d35e00a4aa860963dec345e1b48deba591f1ecebfa5131c7689b30129fd9f28dc4e5405e bluez-5.40.tar.lz
41ce7ccf78cca97563f0ef31e01dac6eb4484c24fe57be360b5e8de8c5bff5845e9d395766f891bd3f123788344456c88c9fc00cd1bb7c6a1dca89d09f19172b bluez-5.30-obexd_without_systemd-1.patch
bd6004cf97ade648fcaecc4c363e4d4c6ce2ac8ff66c66d66ec1b1ba445806e2163a765d04b70be97454b1e9cdfee26879bda34a7a197195c11834e1456e98b8 bluez-5.40-rpi-fixes.patch
"

31
extra/bluez/btuart Normal file
View file

@ -0,0 +1,31 @@
#!/bin/sh
HCIATTACH=/bin/hciattach
if grep -q "Pi 4" /proc/device-tree/model; then
BDADDR=
else
SERIAL=`cat /proc/device-tree/serial-number | cut -c9-`
B1=`echo $SERIAL | cut -c3-4`
B2=`echo $SERIAL | cut -c5-6`
B3=`echo $SERIAL | cut -c7-8`
BDADDR=`printf b8:27:eb:%02x:%02x:%02x $((0x$B1 ^ 0xaa)) $((0x$B2 ^ 0xaa)) $((0x$B3 ^ 0xaa))`
fi
if [ -e /sys/class/bluetooth/hci0 ]; then
# Bluetooth is already enabled
exit 0
fi
uart0="`cat /proc/device-tree/aliases/uart0`"
serial1="`cat /proc/device-tree/aliases/serial1`"
if [ "$uart0" = "$serial1" ] ; then
uart0_pins="`wc -c /proc/device-tree/soc/gpio@7e200000/uart0_pins/brcm\,pins | cut -f 1 -d ' '`"
if [ "$uart0_pins" = "16" ] ; then
$HCIATTACH /dev/serial1 bcm43xx 3000000 flow - $BDADDR
else
$HCIATTACH /dev/serial1 bcm43xx 921600 noflow - $BDADDR
fi
else
$HCIATTACH /dev/serial1 bcm43xx 460800 noflow - $BDADDR
fi

3
extra/bluez/btusb.conf Normal file
View file

@ -0,0 +1,3 @@
# use "reset=1" as default, since it should be safe for recent devices and
# solves all kind of problems.
options btusb reset=1

View file

@ -0,0 +1,9 @@
# /etc/default/bluetooth
# A space delimied list of devices to start at boot time
ACTIVE_HCI_DEVICES_ON_BOOT="hci0"
# A semicolon delimited list of SDP (Service Discovery Protocol)
# operations for bluetooth devices. See the sdptool for more details.
SDPTOOL_OPTIONS=""

27
extra/bluez/doinst.sh Normal file
View file

@ -0,0 +1,27 @@
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...
}
# Keep same perms on rc.bluetooth.new:
if [ -e etc/rc.d/rc.bluetooth ]; then
cp -a etc/rc.d/rc.bluetooth etc/rc.d/rc.bluetooth.new.incoming
cat etc/rc.d/rc.bluetooth.new > etc/rc.d/rc.bluetooth.new.incoming
mv etc/rc.d/rc.bluetooth.new.incoming etc/rc.d/rc.bluetooth.new
fi
config etc/rc.d/rc.bluetooth.new
config etc/bluetooth/input.conf.new
config etc/bluetooth/main.conf.new
config etc/bluetooth/network.conf.new
config etc/bluetooth/proximity.conf.new
config etc/bluetooth/uart.conf.new
config etc/default/bluetooth.new

76
extra/bluez/rc.bluetooth Normal file
View file

@ -0,0 +1,76 @@
#!/bin/sh
# /etc/rc.d/rc.bluetooth (based on BLFS script)
# Populated from /etc/default/bluetooth:
# ACTIVE_HCI_DEVICES_ON_BOOT and SDPTOOL_OPTIONS
[ -r /etc/default/bluetooth ] && . /etc/default/bluetooth
start_hci_dev() {
for dev in ${ACTIVE_HCI_DEVICES_ON_BOOT} ; do
hciconfig $dev up > /dev/null 2>&1
done
}
run_sdptool() {
# Declaring IFS local in this function, removes the need to save/restore it
local IFS option
test -x /bin/sdptool || return 1
IFS=";"
for option in ${SDPTOOL_OPTIONS}; do
IFS=" "
/bin/sdptool $option > /dev/null 2>&1
done
}
start_uarts() {
[ -r /etc/bluetooth/uart.conf ] || return
grep -v '^[[:space:]]*(#|$)' /etc/bluetooth/uart.conf | while read i; do
/bin/hciattach $i > /dev/null 2>&1
done
}
stop_uarts() {
killall /bin/hciattach > /dev/null 2>&1
}
start() {
if [ -d /sys/class/bluetooth ]; then
# This one is for the raspberry pis
[ -x /bin/btuart ] && /bin/btuart
# Start as background process and assume OK
echo -n "Starting Bluetooth services: bluetoothd "
/lib/bluetooth/bluetoothd &
echo -n "hciconfig "
start_hci_dev
echo -n "sdptool "
run_sdptool
echo "hciattach"
start_uarts
fi
}
stop() {
stop_uarts
killall /lib/bluetooth/bluetoothd > /dev/null 2>&1
}
case "${1}" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 1
start
;;
*)
echo "Usage: ${0} {start|stop|restart}"
exit 1
;;
esac

6
extra/bluez/uart.conf Normal file
View file

@ -0,0 +1,6 @@
# /etc/bluetooth/uart.conf
# Attach serial devices via UART HCI to BlueZ stack
# Use one line per device
# See the hciattach man page for options

View file

@ -0,0 +1,7 @@
# /etc/bluetooth/uart.conf
# Attach serial devices via UART HCI to BlueZ stack
# Use one line per device
# See the hciattach man page for options
ttyAMA0 bcm43xx 921600 noflow

View file

@ -0,0 +1,8 @@
# /etc/bluetooth/uart.conf
# Attach serial devices via UART HCI to BlueZ stack
# Use one line per device
# See the hciattach man page for options
serial1 bcm43xx 460800 noflow

30
extra/calcurse/calcurse.SMBuild Executable file
View file

@ -0,0 +1,30 @@
APP=calcurse
VERSION=4.0.0
BUILD=1sml
HOMEPAGE="https://calcurse.org/"
DOWNLOAD="https://calcurse.org/files/calcurse-4.0.0.tar.gz"
DESC="text-based calendar and scheduling application"
REQUIRES="netbsd-curses"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
./configure \
--prefix=""
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
a34b78437398160124d59e706aab2ff460fb726ad208ff05e8a2c404a21d9ab8b460aff9499eba239ccf82cf93dd0cf96d52ef22f597272e6d85c2ec6d5e3a3d calcurse-4.0.0.tar.lz
"

33
extra/cmatrix/cmatrix.SMBuild Executable file
View file

@ -0,0 +1,33 @@
APP=cmatrix
VERSION=2.0
BUILD=1sml
HOMEPAGE="https://github.com/abishekvashok/cmatrix"
DOWNLOAD="https://github.com/abishekvashok/cmatrix/archive/refs/tags/v2.0.tar.gz"
DESC="Terminal application that emulates The Matrix movie scroll lines on the screen"
REQUIRES="netbsd-curses"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
autoreconf -vif
./configure \
--prefix="" \
--sysconfdir=/etc
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
1aeecd8e8abb6f87fc54f88a8c25478f69d42d450af782e73c0fca7f051669a415c0505ca61c904f960b46bbddf98cfb3dd1f9b18917b0b39e95d8c899889530 cmatrix-2.0.tar.gz
"

32
extra/cmus/cmus.SMBuild Executable file
View file

@ -0,0 +1,32 @@
APP=cmus
VERSION=2.8.0
BUILD=1sml
HOMEPAGE="https://cmus.github.io/"
DOWNLOAD="https://github.com/cmus/cmus/archive/v2.8.0.tar.gz"
DESC="Fast text-mode music player"
REQUIRES="faad2 flac libao libsamplerate ffmpeg"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
./configure \
prefix="" \
exampledir="/doc/$APP-$VERSION/examples" \
DEBUG=0
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
471ca1a87792c5a63f56815b24c6d6d3237dc4ce18485dbada9010fa281c0d49b6282fb04e9274dd8ecfd2ade94e5fc6688701aa4479cb43e93d07f720e67785 cmus-2.8.0.tar.lz
"

View file

@ -0,0 +1,12 @@
diff --git a/app/app_procs.c b/app/app_procs.c
index d0f2d3d..423fe2f 100644
--- a/app/app_procs.c
+++ b/app/app_procs.c
@@ -801,6 +801,7 @@ app_init (int argc, char **argv)
if (!filename) {
g_print (_("Filename conversion failed: %s\n"), filenames[i]);
+ ++i;
continue;
}

View file

@ -0,0 +1,37 @@
From a6e2409b85414b3d82dacd390ce9c9f007e254e8 Mon Sep 17 00:00:00 2001
From: Jiri Popelka <jpopelka@redhat.com>
Date: Wed, 5 Sep 2012 11:12:59 +0200
Subject: [PATCH] Unregister vdx, xfig import filters during plugin unloading.
---
plug-ins/vdx/vdx.c | 1 +
plug-ins/xfig/xfig.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/plug-ins/vdx/vdx.c b/plug-ins/vdx/vdx.c
index 64bc4b0..82ddc4b 100644
--- a/plug-ins/vdx/vdx.c
+++ b/plug-ins/vdx/vdx.c
@@ -43,6 +43,7 @@ static void
_plugin_unload (PluginInfo *info)
{
filter_unregister_export(&vdx_export_filter);
+ filter_unregister_import(&vdx_import_filter);
}
diff --git a/plug-ins/xfig/xfig.c b/plug-ins/xfig/xfig.c
index 966c294..10d68aa 100644
--- a/plug-ins/xfig/xfig.c
+++ b/plug-ins/xfig/xfig.c
@@ -41,6 +41,7 @@ static void
_plugin_unload (PluginInfo *info)
{
filter_unregister_export(&xfig_export_filter);
+ filter_unregister_import(&xfig_import_filter);
}
--
1.7.11.4

41
extra/dia/dia.SMBuild Executable file
View file

@ -0,0 +1,41 @@
APP=dia
VERSION=0.97.3
BUILD=1sml
HOMEPAGE="https://wiki.gnome.org/Apps/Dia"
DOWNLOAD="https://download.gnome.org/sources/dia/0.97/dia-0.97.3.tar.xz"
DESC="Diagram creation app written in GTK2"
REQUIRES="gtk2"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z**
cd $APP-$VERSION
fixbuilddirpermissions
patch -p1 < $SRCDIR/CVE-2019-19451.patch
patch -p1 < $SRCDIR/dia-unregister-import.patch
patch -p1 < $SRCDIR/isinf.patch
./configure \
--prefix="" \
--with-cairo \
--disable-gnome \
--with-hardbooks=no \
--disable-nls
make || true
make install DESTDIR=$PKG || true
cp COPYING $PKGDOCS
mkfinalpkg
}
SHA512SUMS="
3f798a1ad88cc73be0f3da1981d8766c9d03e2765904c7b883a06d88beca952b7a3b87e8d4a26556d07c8a4afc89c8c4dd8e8fe96ebc2787fe97203ec6cb389b dia-0.97.3.tar.lz
c78b78bd4ce7bfab9babfc887fb98571849246d1ca78e6c69a4413c7881d30358e1287bd9b0d9ba50cbcc540cf5f0e28333b31f467dbe5579ad5c97148b3b512 CVE-2019-19451.patch
24267507ff08ac589ec1015e55637586a9fd97802893a77849d1e7bce67135fbd3d55611e2c80be1d5f87b92406c95cd5fe484175037297ebe1dbc8eb509a7d4 dia-unregister-import.patch
cfa8fd8fecc7f0e3da185b512c169b156363a73c151547725f964e1cf7b1a305e44c493d0490c680c5f25859acee74fe4ef942ae9ee634b370bd9b9952186c5a isinf.patch
"

16
extra/dia/isinf.patch Normal file
View file

@ -0,0 +1,16 @@
--- ./configure.orig
+++ ./configure
@@ -17436,11 +17436,11 @@
#ifdef __cplusplus
extern "C"
#endif
-char isinf ();
+#include <math.h>
int
main ()
{
-return isinf ();
+return isinf (0.0);
;
return 0;
}

27
extra/dmenu/dmenu.SMBuild Executable file
View file

@ -0,0 +1,27 @@
APP=dmenu
VERSION=4.5
BUILD=1sml
HOMEPAGE="http://tools.suckless.org/dmenu"
DOWNLOAD="https://dl.suckless.org/tools/dmenu-4.5.tar.gz"
DESC="Dynamic menu for X"
REQUIRES="libxext libxinerama"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
make
make install PREFIX="/" MANPREFIX=/share/man DESTDIR=$PKG
cp LICENSE $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
3a3acd9072b7e558e0f8b3bc69e4a63e9ac6918bac6b4c408c489ebc5c66542c5d29f249a06250f2e4cd9df81a4059aeef43153e793653f27a800193f4714b88 dmenu-4.5.tar.lz
"

27
extra/dwm/dwm.SMBuild Executable file
View file

@ -0,0 +1,27 @@
APP=dwm
VERSION=6.0
BUILD=1sml
HOMEPAGE="https://dwm.suckless.org"
DOWNLOAD="https://dl.suckless.org/dwm/dwm-6.0.tar.gz"
DESC="Suckless dynamic window manager"
REQUIRES="libxinerama libxext"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
make
make install PREFIX="/" MANPREFIX=/share/man DESTDIR=$PKG
cp LICENSE $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
4db1c21d87b030236c381209ed56eedd15f47faf225a33ffa240f82612b9e0ec0287fa3c7c3e446704416032ae7c52559b482db9f60500ec0d6f5ad88328066a dwm-6.0.tar.lz
"

1
extra/fceux/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

45
extra/fceux/fceux.SMBuild Executable file
View file

@ -0,0 +1,45 @@
APP=fceux
VERSION=2.2.3
BUILD=1sml
HOMEPAGE="https://github.com/TASEmulators/fceux"
DOWNLOAD="https://github.com/TASEmulators/fceux/archive/refs/tags/fceux-2.2.3.tar.gz"
DESC="An 8-bit NES emulator based on FCE Ultra"
REQUIRES="libgd gtk2"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
# cc/gcc should either be in /bin or /usr/bin else the SCostruct file in
# scons will fail with a stupid error that zlib.h was not found, even
# though zlib is there.
# g++ is needed in /bin or /usr/bin else midway compile will fail.
patch -p1 < $SRCDIR/ioapi.patch
patch -p1 < $SRCDIR/scons-python3.patch
sed -i \
-e "s|symbols', 1|symbols', 0|" \
-e "s|release', 0|release', 1|" \
SConstruct
scons install -i --prefix=$PKG
# Delete low res icon and replace below, also delete unneeded .dll files
#rm -f $PKG/usr/share/pixmaps/fceux.png
#rm -f $PKG/usr/share/$PRGNAME/*.dll
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
cd8053f0cef3df30e3d009bf0a53ef59d9fa2b342d03300a75caafb0591e62a6bfbc6c12b3efe72e0aba050dc58e401daf54298328979e5b1b9552a91b1d1459 fceux-2.2.3.tar.lz
799b42272c637c90e7389b7907e9d36956a0640366d80ea71a4416237178461f4f39b863c230f878b0adfa7ceec4ed2379b58e07dcecd2c49269739e3e158c03 ioapi.patch
2c2cf6d7eac03a4cf7f66118e0f8af9562eb5497c2e3159952eced1edee5f38c983ede704536eade645f5c028635b8ff0ceca8769dcf0d50b3159a1666660ae0 scons-python3.patch
"

13
extra/fceux/ioapi.patch Normal file
View file

@ -0,0 +1,13 @@
--- a/src/utils/ioapi.h.bak 2018-09-20 12:25:16.118605266 +0530
+++ b/src/utils/ioapi.h 2018-09-20 12:25:56.974424536 +0530
@@ -108,6 +108,10 @@
extern "C" {
#endif
+#ifdef _Z_OF
+#undef OF
+#define OF _Z_OF
+#endif
#define ZLIB_FILEFUNC_SEEK_CUR (1)
#define ZLIB_FILEFUNC_SEEK_END (2)

View file

@ -0,0 +1,108 @@
--- fceux-2.2.3/SConstruct.orig 2019-07-26 18:04:29.368573309 +0000
+++ fceux-2.2.3/SConstruct 2019-07-26 18:04:31.975265342 +0000
@@ -46,30 +46,30 @@
# Default compiler flags:
env.Append(CCFLAGS = ['-Wall', '-Wno-write-strings', '-Wno-sign-compare'])
-if os.environ.has_key('PLATFORM'):
+if os.environ.get('PLATFORM'):
env.Replace(PLATFORM = os.environ['PLATFORM'])
-if os.environ.has_key('CC'):
+if os.environ.get('CC'):
env.Replace(CC = os.environ['CC'])
-if os.environ.has_key('CXX'):
+if os.environ.get('CXX'):
env.Replace(CXX = os.environ['CXX'])
-if os.environ.has_key('WINDRES'):
+if os.environ.get('WINDRES'):
env.Replace(WINDRES = os.environ['WINDRES'])
-if os.environ.has_key('CFLAGS'):
+if os.environ.get('CFLAGS'):
env.Append(CCFLAGS = os.environ['CFLAGS'].split())
-if os.environ.has_key('CXXFLAGS'):
+if os.environ.get('CXXFLAGS'):
env.Append(CXXFLAGS = os.environ['CXXFLAGS'].split())
-if os.environ.has_key('CPPFLAGS'):
+if os.environ.get('CPPFLAGS'):
env.Append(CPPFLAGS = os.environ['CPPFLAGS'].split())
-if os.environ.has_key('LDFLAGS'):
+if os.environ.get('LDFLAGS'):
env.Append(LINKFLAGS = os.environ['LDFLAGS'].split())
-if os.environ.has_key('PKG_CONFIG_PATH'):
+if os.environ.get('PKG_CONFIG_PATH'):
env['ENV']['PKG_CONFIG_PATH'] = os.environ['PKG_CONFIG_PATH']
-if not os.environ.has_key('PKG_CONFIG_PATH') and env['PLATFORM'] == 'darwin':
+if not os.environ.get('PKG_CONFIG_PATH') and env['PLATFORM'] == 'darwin':
env['ENV']['PKG_CONFIG_PATH'] = "/usr/local/lib/pkgconfig:/opt/X11/lib/pkgconfig"
-if os.environ.has_key('PKG_CONFIG_LIBDIR'):
+if os.environ.get('PKG_CONFIG_LIBDIR'):
env['ENV']['PKG_CONFIG_LIBDIR'] = os.environ['PKG_CONFIG_LIBDIR']
-print "platform: ", env['PLATFORM']
+print ("platform: ", env['PLATFORM'])
# compile with clang
if env['CLANG']:
@@ -103,18 +103,18 @@
assert conf.CheckLibWithHeader('z', 'zlib.h', 'c', 'inflate;', 1), "please install: zlib"
if env['SDL2']:
if not conf.CheckLib('SDL2'):
- print 'Did not find libSDL2 or SDL2.lib, exiting!'
+ print ('Did not find libSDL2 or SDL2.lib, exiting!')
Exit(1)
env.Append(CPPDEFINES=["_SDL2"])
env.ParseConfig('pkg-config sdl2 --cflags --libs')
else:
if not conf.CheckLib('SDL'):
- print 'Did not find libSDL or SDL.lib, exiting!'
+ print ('Did not find libSDL or SDL.lib, exiting!')
Exit(1)
env.ParseConfig('sdl-config --cflags --libs')
if env['GTK']:
if not conf.CheckLib('gtk-x11-2.0'):
- print 'Could not find libgtk-2.0, exiting!'
+ print ('Could not find libgtk-2.0, exiting!')
Exit(1)
# Add compiler and linker flags from pkg-config
config_string = 'pkg-config --cflags --libs gtk+-2.0'
@@ -153,7 +153,7 @@
env.Append(CCFLAGS = ["-I/usr/include/lua"])
lua_available = True
if lua_available == False:
- print 'Could not find liblua, exiting!'
+ print ('Could not find liblua, exiting!')
Exit(1)
else:
env.Append(CCFLAGS = ["-Isrc/lua/src"])
@@ -167,7 +167,7 @@
gd = conf.CheckLib('gd', autoadd=1)
if gd == 0:
env['LOGO'] = 0
- print 'Did not find libgd, you won\'t be able to create a logo screen for your avis.'
+ print ('Did not find libgd, you won\'t be able to create a logo screen for your avis.')
if env['OPENGL'] and conf.CheckLibWithHeader('GL', 'GL/gl.h', 'c', autoadd=1):
conf.env.Append(CCFLAGS = "-DOPENGL")
@@ -181,8 +181,8 @@
if env['FRAMESKIP']:
env.Append(CPPDEFINES = ['FRAMESKIP'])
-print "base CPPDEFINES:",env['CPPDEFINES']
-print "base CCFLAGS:",env['CCFLAGS']
+print ("base CPPDEFINES:",env['CPPDEFINES'])
+print ("base CCFLAGS:",env['CCFLAGS'])
if env['DEBUG']:
env.Append(CPPDEFINES=["_DEBUG"], CCFLAGS = ['-g', '-O0'])
--- fceux-2.2.3/src/SConscript.orig 2019-07-26 18:08:11.297535443 +0000
+++ fceux-2.2.3/src/SConscript 2019-07-26 18:08:33.857781956 +0000
@@ -33,7 +33,7 @@
platform_files = SConscript('drivers/sdl/SConscript')
file_list.append(platform_files)
-print env['LINKFLAGS']
+print (env['LINKFLAGS'])
if env['PLATFORM'] == 'win32':
fceux = env.Program('fceux.exe', file_list)

6
extra/feh/README Normal file
View file

@ -0,0 +1,6 @@
feh is an image viewer at heart, though it does other cool stuff.
feh features include simple image viewing, multiple image viewing
(slideshow), multiple image viewing in multiwindows, image viewing
in fullscreen, image list mode, loadable/unloadable listing,
recursive file opening, saving/loading filelists, loading images
via http, reloading after delay, montage creation, and more.

1
extra/feh/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

33
extra/feh/feh.SMBuild Executable file
View file

@ -0,0 +1,33 @@
APP=feh
VERSION=3.1.1
BUILD=1sml
HOMEPAGE="https://feh.finalrewind.org"
HOMEPAGE="https://feh.finalrewind.org/feh-3.1.1.tar.bz2"
DESC="Fast and lightweight image viewer for X"
REQUIRES="curl imlib2 libexif libxinerama libxt "
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
CFLAGS="$CFLAGS -D_GNU_SOURCE -include string.h" \
make PREFIX="/" \
exif=1 help=1
make install DESTDIR=$PKG PREFIX="/" \
man_dir=$PKG/share/man \
doc_dir=$PKG/doc/$APP-$VERSION \
example_dir=$PKG/doc/$APP-$VERSION/examples
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
b1a20463c9c54212f51af0af98d762dc1d1c774105c69b9c21a04b3835b817af47a5efd1c2ff741cc596c53844d09c20c979d606a82a1915aa4ad2cdf2a3fca4 feh-3.1.1.tar.lz
"

65
extra/ffmpeg/ffmpeg.SMBuild Executable file
View file

@ -0,0 +1,65 @@
APP=ffmpeg
VERSION=4.3
BUILD=1sml
HOMEPAGE="https://ffmpeg.org/"
DOWNLOAD="https://ffmpeg.org/releases/ffmpeg-4.3.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 wavpack sdl2 twolame librsvg libcdio openjpeg"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
./configure \
--prefix="" \
--bindir=/bin \
--incdir=/include \
--libdir=/lib \
--docdir=/share \
--mandir=/share/man \
--datadir=/share \
--enable-shared \
--disable-static \
--disable-debug \
--disable-htmlpages \
--disable-txtpages \
--enable-gpl \
--enable-version3 \
--enable-shared \
--enable-libx264 \
--enable-libass \
--enable-libdrm \
--enable-libfreetype \
--enable-libfribidi \
--enable-libmodplug \
--enable-libmp3lame \
--enable-libopus \
--enable-libsoxr \
--enable-libtheora \
--enable-libvorbis \
--enable-libvpx \
--enable-libwebp \
--enable-libxml2 \
--enable-libwavpack \
--enable-sdl2 \
--enable-libtwolame \
--enable-librsvg \
--enable-libopenjpeg \
--enable-libcdio
# For some reason ffmpeg's make does not pick up MAKEFLAGS from the env
make $MAKEFLAGS
make install DESTDIR=$PKG
cp LICENSE.md COPYING* $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
12cc3a9337f6d9e1c7a63120f3fd8a92e5ac6031e9ba8893dc6b4b799befed08d54983b088e711705629b9a8fea9c6ada4887e845b1d0166e78a778b239af896 ffmpeg-4.3.tar.lz
"

View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

View file

@ -0,0 +1,36 @@
APP=ffmpegthumbnailer
VERSION=2.2.2
BUILD=1sml
HOMEPAGE="https://github.com/dirkvdb/ffmpegthumbnailer/"
DOWNLOAD="https://github.com/dirkvdb/ffmpegthumbnailer/archive/refs/tags/2.2.2.tar.gz"
DESC="Utility to create video thumbnails for file managers"
REQUIRES="cmake libpng libjpeg-turbo ffmpeg"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
mkdir -p smbuild && cd smbuild
cmake .. \
-DCMAKE_INSTALL_PREFIX="" \
-DCMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES=/include \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_GIO=True \
-DENABLE_THUMBNAILER=True
make
make install DESTDIR=$PKG
cp ../COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
cbfb8ce4eebb0331260b060592322566075862182bc6f4b7410e686b4260395ea64ab341330212bcd08b1889f4fc9da13bf50b45ce800466d5d1e05a08cc722e ffmpegthumbnailer-2.2.2.tar.lz
"

1
extra/florence/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

32
extra/florence/florence.SMBuild Executable file
View file

@ -0,0 +1,32 @@
APP=florence
VERSION=0.6.3
BUILD=1sml
HOMEPAGE="http://florence.sourceforge.net/"
DOWNLOAD="https://downloads.sourceforge.net/project/florence/florence/0.6.3/florence-0.6.3.tar.bz2"
DESC="Virtual keyboard for X"
REQUIRES="glib libxext librsvg libxml2 dbus gtk3 zlib pango cairo gdk-pixbuf gstreamer"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
./configure \
--prefix="" \
--without-docs \
--disable-static
make || true
make install DESTDIR=$PKG
cp COPYING* $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
947ef1d5670ceb5b3050311ca15143335abd49660c3f058ac441d153d49a25bc003f6d0f2610c2199048bec7000f8e19ae27f486cfb233471db05e664b3569ef florence-0.6.3.tar.lz
"

48
extra/freerdp/freerdp.SMBuild Executable file
View file

@ -0,0 +1,48 @@
APP=freerdp
VERSION=2.2.0
BUILD=1sml
HOMEPAGE="https://www.freerdp.com"
DOWNLOAD="https://pub.freerdp.com/releases/freerdp-2.2.0.tar.gz"
DESC="Free implementation of the RDP protocol"
REQUIRES=""
build() {
mkandenterbuilddir
rm -rf FreeRDP-$VERSION
tar xf $SRCDIR/FreeRDP-$VERSION.tar.?z*
cd FreeRDP-$VERSION
fixbuilddirpermissions
mkdir -p smbuild && cd smbuild
export CFLAGS="$CFLAGS -D_GNU_SOURCE"
cmake .. \
-DCMAKE_INSTALL_PREFIX="" \
-DCMAKE_INSTALL_LIBDIR="lib" \
-DWITH_CUPS=OFF \
-DWITH_FFMPEG=ON \
-DWITH_JPEG=ON \
-DWITH_SERVER=ON \
-DWITH_SWSCALE=ON \
-DWITH_CHANNELS=ON \
-DWITH_CLIENT_CHANNELS=ON \
-DWITH_SERVER_CHANNELS=ON \
-DWITH_VAAPI=ON \
-DCHANNEL_URBRDC_CLIENT=ON \
-DWITH_SYSTEMD=OFF \
-DWITH_WAYLAND=ON \
-DWITH_PULSE=OFF \
-DCMAKE_BUILD_TYPE=None \
-Wno-dev
make
make install DESTDIR=$PKG
cp ../LICENSE $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
e14185db3f9e9900427c3149eef872ab9939ac33e307f7e7c73323e463f05b87f9ee8e6157a38a6dcb3d859039dd220b42b4a470c2d8b6c58045092960102135 FreeRDP-2.2.0.tar.lz
"

View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

View file

@ -0,0 +1,33 @@
APP=galculator
VERSION=2.1.4
BUILD=1sml
HOMEPAGE="http://galculator.mnim.org/"
DOWNLOAD="http://galculator.mnim.org/downloads/galculator-2.1.4.tar.bz2"
DESC="GTK calculator for GNOME"
REQUIRES="intltool gtk2 graphite2"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
./configure \
--prefix="" \
--disable-gtk3 \
--disable-nls \
$BUILDDIST
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
909efb8cd5bc9fd4997a9025106656ce13b83b1dbfa039822f01421c6cfe46b57dbf683743a5d60be606fa1d80cf9bdf86ad37bb676592d0c637e964058a0904 galculator-2.1.4.tar.lz
"

10
extra/gftp/fsplib.h.patch Normal file
View file

@ -0,0 +1,10 @@
--- a/lib/fsplib/fsplib.h 2020-05-25 11:40:47.858122926 +0530
+++ b/lib/fsplib/fsplib.h 2020-05-25 11:40:59.067910611 +0530
@@ -4,6 +4,7 @@
#include <dirent.h>
#include <sys/stat.h>
#include <stddef.h>
+#include <sys/param.h>
/* The FSP v2 protocol support library - public interface */

41
extra/gftp/gftp.SMBuild Executable file
View file

@ -0,0 +1,41 @@
APP=gftp
VERSION=2.0.19
BUILD=1sml
HOMEPAGE="https://github.com/masneyb/gftp"
DOWNLOAD="https://github.com/masneyb/gftp/archive/refs/tags/2.0.19.tar.gz"
DESC="Multi-threaded GTK FTP client for X"
REQUIRES="openssl gtk2"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
patch -p1 < $SRCDIR/gftp.glibc-2.30.diff
patch -p1 < $SRCDIR/gftp.expand.path.sigsegv.diff
patch -p1 < $SRCDIR/gftp.desktop.diff
patch -p1 < $SRCDIR/fsplib.h.patch
./configure \
--prefix="" \
--sysconfdir=/etc \
$BUILDDIST
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
5331b62a6e10bcc7cd7e12143ea8d0b0de517c77ba676d8981a9c1419e026dda7ce9d7155730e37deecb62ef96bff8db09a756b39bfcd4772bde72a88e6440b4 gftp-2.0.19.tar.lz
1e3a84244920eeeed3a35d7d80bc66cdf5226e56e9a8b2d069f2d9d94ee2b2013823dbc0a7ed24f8a06193b81ae876001c06575d627f68ffc1ea58298b22e9ce fsplib.h.patch
0315ca0bcf5cecb6059481a4260dc17ea885b66460da4b6c9ec545c1f7a7ca095f2de8d628ad89de6d4b74b5eedf44d469c101f54bdafabb627995d40e0838af gftp.desktop.diff
8c8650b67defab611e31ffb819d78561cc72c4d7b806bc355a038521b85af111a2cce4376aa788f20280338f241a8c3ee6fdb0737e3ed9a83e873e87ac19d6a7 gftp.expand.path.sigsegv.diff
58611bf94787f5adbe45bcc869876a02bef7cd45a6007d9c370592944612cb842b630ffa4cb279b9cb5a90b516474cb20287c212b35977c6db620e52a2684135 gftp.glibc-2.30.diff
"

View file

@ -0,0 +1,19 @@
--- a/docs/gftp.desktop 2020-05-24 11:09:50.990007957 +0530
+++ b/docs/gftp.desktop 2020-05-24 11:10:12.519565106 +0530
@@ -1,5 +1,4 @@
[Desktop Entry]
-Encoding=UTF-8
Name=gFTP
Comment=Download and upload files using multiple file transfer protocols
Comment[fr]=Télécharge des fichiers en utilisant le protocole FTP
@@ -8,8 +7,8 @@
Terminal=false
X-MultipleArgs=false
Type=Application
-Icon=gftp.png
-Categories=Application;Network;
+Icon=gftp
+Categories=Network;
X-GNOME-Bugzilla-Bugzilla=GNOME
X-GNOME-Bugzilla-Product=gftp
X-GNOME-Bugzilla-Component=general

View file

@ -0,0 +1,11 @@
--- a/lib/misc.c 2020-05-24 11:11:32.867925303 +0530
+++ b/lib/misc.c 2020-05-24 11:12:22.136929746 +0530
@@ -143,6 +143,8 @@
tempchar;
struct passwd *pw;
+ g_return_val_if_fail(src != NULL, NULL);
+
pw = NULL;
str = g_strdup (src);

View file

@ -0,0 +1,11 @@
--- a/lib/pty.c 2020-05-24 11:07:18.423188979 +0530
+++ b/lib/pty.c 2020-05-24 11:07:59.092333611 +0530
@@ -61,7 +61,7 @@
#elif HAVE_GRANTPT
-#if !(defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__))
+#if !(defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__) || defined(__linux__))
#include <stropts.h>
#endif

1
extra/gimp/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

View file

@ -0,0 +1,11 @@
--- gimp-2.8.2.org/app/config/gimpguiconfig.c 2013-01-02 21:54:13.666000002 +0000
+++ gimp-2.8.2/app/config/gimpguiconfig.c 2013-01-10 15:07:06.807000004 +0000
@@ -197,7 +197,7 @@
GIMP_CONFIG_INSTALL_PROP_BOOLEAN (object_class, PROP_TOOLBOX_WILBER,
"toolbox-wilber",
TOOLBOX_WILBER_BLURB,
- TRUE,
+ FALSE,
GIMP_PARAM_STATIC_STRINGS);
path = gimp_config_build_data_path ("themes");
GIMP_CONFIG_INSTALL_PROP_PATH (object_class, PROP_THEME_PATH,

58
extra/gimp/gimp.SMBuild Executable file
View file

@ -0,0 +1,58 @@
APP=gimp
VERSION=2.8.22
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"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
# We might have an issue with pagecurl causing gimp to segfault
# https://gitlab.gnome.org/GNOME/gimp/-/issues/4392
# remove /lib/gimp/2.0/plug-ins/pagecurl ?
# credits: sabotage linux
patch -p1 < $SRCDIR/gimp-toolbox-wilber.patch
sed -i 's@^[[:space:]]*-I$(includedir)@@' $(find . -name Makefile.in)
sed -i 's@^libgimpui = .*$@libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la@' $(find plug-ins/ -name Makefile.in)
printf '#!/bin/sh\necho -lfreetype -I/usr/include/freetype2\n' > freetype-config
chmod +x freetype-config
export PATH="$PWD:$PATH"
CXXFLAGS="$CFLAGS -D_GNU_SOURCE" \
./configure \
--prefix="/" \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-altivec \
--disable-python \
--disable-alsatest \
--disable-nls \
--disable-silent-rules \
--disable-glibtest \
--without-webkit
for i in po po-plug-ins po-python po-libgimp po-script-fu po-tips ; 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="
b54b7c2788ce4f55887d7c4dbdd4879754b313cab813e1e5cda28419f41e16ed0eafb112763bc865a989634b290d6317b85bf70108977f9819f475f8f36dbc85 gimp-2.8.22.tar.lz
c1cea444156555bfe0c5d3a20733e04fb15a4ddaf0fd3f6f814d12bef554f3598ef9a27cd171df70e069e57f8d4fe661d8ef1691fef2ff7e44937cbb46e579b7 gimp-toolbox-wilber.patch
"

Binary file not shown.

BIN
extra/gnuchess/chess.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 652 B

15
extra/gnuchess/doinst.sh Normal file
View file

@ -0,0 +1,15 @@
#!/bin/sh
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/xboard.conf.new
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

73
extra/gnuchess/gnuchess.SMBuild Executable file
View file

@ -0,0 +1,73 @@
APP=gnuchess
VERSION=6.2.6
JENGVER=11.2
XBOARDVER=4.9.1
BUILD=1sml
HOMEPAGE="https://www.gnu.org/software/chess/"
DOWNLOAD="http://ftp.gnu.org/gnu/chess/gnuchess-6.2.6.tar.gz"
DESC="GPL licensed chess engines and graphical frontends"
REQUIRES="gcc-libs gdbm gtk2 graphite2 libpng netbsd-curses gobject-introspection"
build() {
mkandenterbuilddir
rm -rf gnuchess-$VERSION
tar xf $SRCDIR/gnuchess-$VERSION.tar.?z*
cd gnuchess-$VERSION
fixbuilddirpermissions
./configure \
--prefix="" \
--sysconfdir=/etc
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/COPYING.gnuchess
mkandenterbuilddir
rm -rf Sjeng-Free-$JENGVER
tar xf $SRCDIR/Sjeng-Free-$JENGVER.tar.?z*
cd Sjeng-Free-$JENGVER
fixbuilddirpermissions
./configure \
--prefix=""
make
make install DESTDIR=$PKG
mkandenterbuilddir
rm -rf xboard-$XBOARDVER
tar xf $SRCDIR/xboard-$XBOARDVER.tar.?z*
cd xboard-$XBOARDVER
fixbuilddirpermissions
patch -p1 < $SRCDIR/xboard.conf.diff
./configure \
--prefix="" \
--sysconfdir=/etc \
--with-gtk \
--enable-zippy
make
make install DESTDIR=$PKG
install -c cmail $PKG/bin/cmail
install -Dm 644 $SRCDIR/chess.png $PKG/share/pixmaps/chess.png
cp COPYING $PKGDOCS/COPYING.xboard
cp COPYRIGHT $PKGDOCS/COPYRIGHT.xboard
mv $PKG/etc/xboard.conf $PKG/etc/xboard.conf.new
mkfinalpkg
}
SHA512SUMS="
2a42baee5c64a8083e587fa0c748beac5a08906e95d46c7343955b336124f1fb560e8284a36d595839a190e9f784fe1f9d1cf7e79601373bbec05c4433108471 Sjeng-Free-11.2.tar.lz
d6adb251eeea0f1f962955dee1f0125e3e76893f6a6c30e774bd496515334572c8e906ac8cad140e1950fcc40cfe88ac05fbae8b08595acd7b86722e486ebae9 gnuchess-6.2.6.tar.lz
0ef5a24e19693ea768c01ae5891f7fb3f37ae6bdbee853f002f1ed5f9a4141452b8d32c49dfef69d591bc95aff8ce9e6a718aae16ba9ce50da7b43752ff9fcbf xboard-4.9.1.tar.lz
fe9435e56f549703127576f4c614a6ad7bda67f7e5f6542a61889ed364a2ab6529c6ec1a1dc6435f3937e97a5f201d672e87ac448a3cb7466ba23de07676473a xboard.conf.diff
"

View file

@ -0,0 +1,17 @@
--- ./xboard.conf.orig 2015-03-20 13:32:54.035406604 -0500
+++ ./xboard.conf 2015-03-20 13:35:24.433417456 -0500
@@ -73,11 +73,11 @@
;
; Engines & adjudicatons in engine-engine games
;
--firstChessProgram fairymax
--firstChessProgramNames {fairymax
+-firstChessProgram gnuchess
+-firstChessProgramNames {"GNU Chess" -fcp gnuchess
+fairymax
"Fruit 2.1" -fcp fruit -fUCI
"Crafty" -fcp crafty
-"GNU Chess" -fcp gnuchess
}
-niceEngines 0
-polyglotDir ""

1
extra/gnumeric/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

33
extra/gnumeric/gnumeric.SMBuild Executable file
View file

@ -0,0 +1,33 @@
APP=gnumeric
VERSION=1.12.46
BUILD=1sml
HOMEPAGE="http://projects.gnome.org/gnumeric/"
DOWNLOAD="https://download.gnome.org/sources/gnumeric/1.12/gnumeric-1.12.46.tar.xz"
DESC="Spreadsheet application for GNOME"
REQUIRES="perl intltool python3 gobject-introspection goffice "
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
./configure \
--prefix="" \
--sysconfdir=/etc \
--disable-introspection \
--disable-silent-rules
make
make install DESTDIR=$PKG
cp COPYING* $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
30f3cf05bac4b77e1dfd5f48dc29d7da3b6a70f10e41d5ea0410cf74a9d18dc639da60abc0e5db9efca643dadb8696d2a3779fcf80003c8ac927c4c9e8f21bd7 gnumeric-1.12.46.tar.lz
"

1
extra/gpaint/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

36
extra/gpaint/gpaint.SMBuild Executable file
View file

@ -0,0 +1,36 @@
APP=gpaint
VERSION=0.3.2
BUILD=1sml
HOMEPAGE="https://www.gnu.org/software/gpaint/"
DOWNLOAD="ftp://alpha.gnu.org/gnu/gpaint/gpaint-2-0.3.2.tar.gz"
DESC="Simple and lightweight alternative to MS-paint written in GTK2"
REQUIRES="gtk2 "
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
sed -i 's/GTK_RESPONSE_DISCARD/GTK_RESPONSE_NO/' src/drawing.c
./configure \
--prefix="" \
--sysconfdir=/etc \
--disable-nls
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mv $PKG/bin/gpaint-2 $PKG/bin/gpaint
mkfinalpkg
}
SHA512SUMS="
6e8de4793e6e74676efbf190b117af0de1af8320c60ae160092c9d0fb7977215979abf607ffb172b2cb99eb50dece481d008bb42c0062d65023915290c26c397 gpaint-0.3.2.tar.lz
"

1
extra/gparted/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

33
extra/gparted/gparted.SMBuild Executable file
View file

@ -0,0 +1,33 @@
APP=gparted
VERSION=1.1.0
BUILD=1sml
HOMEPAGE="http://gparted.org"
DOWNLOAD="https://sourceforge.net/projects/gparted/files/gparted/gparted-1.1.0/gparted-1.1.0.tar.gz"
DESC="Graphical partition editor written in GTK3"
REQUIRES="pkgconf lvm dosfstools e2fsprogs mtools ntfs-3g itstool intltool parted gtkmm3 "
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
./configure \
--prefix="" \
--sysconfdir=/etc \
--sbindir=/bin \
--disable-doc
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
b5f0d8d216f663f686d41347dc9dd1dbe370e25d2e9f321e6a109630aa9ba2a20ffb19dbccf5af1b701fb65d15c297033894583661bd66e88b8cbe84dd793453 gparted-1.1.0.tar.lz
"

1
extra/gthumb/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

31
extra/gthumb/gthumb.SMBuild Executable file
View file

@ -0,0 +1,31 @@
APP=gthumb
VERSION=3.8.3
BUILD=1sml
HOMEPAGE="https://wiki.gnome.org/Apps/Gthumb"
DOWNLOAD="https://gitlab.gnome.org/GNOME/gthumb/-/archive/3.8.3/gthumb-3.8.3.tar.bz2"
DESC="An image viewer and browser"
REQUIRES="exiv2 json-glib librsvg libsecret libsoup libwebp dconf gtk2 gsettings-desktop-schemas "
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
mkdir smbuild && cd smbuild
meson .. \
--prefix="/"
ninja
DESTDIR="$PKG" ninja install
cp ../COPYING $PKGDOCS
mkfinalpkg
}
SHA512SUMS="
ed8be7421494b1cb1c4ae87d5703ef398e4c887f081a71a5a0dbb3ef4950784c334685a46f68650e4f4f665b3444104133b9b567d0a3842651ba62d27c6f8c2a gthumb-3.8.3.tar.lz
"

31
extra/gtkterm/gtkterm.SMBuild Executable file
View file

@ -0,0 +1,31 @@
APP=gtkterm
VERSION=0.99.7
BUILD=1sml
HOMEPAGE="https://github.com/Jeija/gtkterm"
DOWNLOAD="https://github.com/Jeija/gtkterm/archive/refs/tags/0.99.7.tar.gz"
DESC="Lightweight GTK2 serial port terminal emulator "
REQUIRES="vte gtk2"
build() {
mkandenterbuilddir
rm -rf "$APP-$VERSION-rc1"
tar xf $SRCDIR/$APP-$VERSION-rc1.tar.?z*
cd "$APP-$VERSION-rc1"
fixbuilddirpermissions
./configure \
--prefix="" \
--disable-nls
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
990407ae5882031cfbfa1a0291fcbc78616293fe8625813c2cb783958188c949e659f077e2239a3d309707abb0e5b812a2d399decbef7e0343cba78e61032125 gtkterm-0.99.7-rc1.tar.lz
"

37
extra/gtypist/gtypist.SMBuild Executable file
View file

@ -0,0 +1,37 @@
APP=gtypist
VERSION=2.9.5
BUILD=1sml
HOMEPAGE="https://www.gnu.org/savannah-checkouts/gnu/gtypist/gtypist.html"
DOWNLOAD="http://ftp.gnu.org/gnu/gtypist/gtypist-2.9.tar.xz"
DESC="Terminal-based universal typing tutor"
REQUIRES="netbsd-curses"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
patch -p1 < $SRCDIR/ncurses.patch
autoreconf -vif
CFLAGS="$CFLAGS -D_GNU_SOURCE" \
LDFLAGS="-lterminfo -lncurses" \
./configure \
--prefix="" \
--sysconfdir=/etc
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
397b2e7570f1702b1e355cf2e6ce8b0a78aa0f7e2493dcf0a39a07e1dc9e4c2bf01d16759dfcfffef3bb505b73435b6e4fb8e2565a20b7180a1867d4d3d68346 gtypist-2.9.5.tar.lz
84a29d4008f13ee0dc434b551b6846d94373679fa718d54a0cf52aeeaba8f1485e40d55f66c336bb33e23f1f939ea1711190c2a16903671febcdb191b4ffb94c ncurses.patch
"

View file

@ -0,0 +1,96 @@
diff --git configure.ac configure.ac
index 8742d93..cb0c62c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -44,20 +44,20 @@ AC_TYPE_SIGNAL
AC_FUNC_STRTOD
AC_CHECK_FUNCS([__argz_count __argz_next __argz_stringify dcgettext getcwd getwd mempcpy memset munmap nl_langinfo setlocale stpcpy strcasecmp strchr strcspn strdup strstr strtoul])
-# check for libncursesw
+# check for libncurses
-AC_CHECK_HEADER(ncursesw/ncurses.h, HAVE_NCURSESW_H=1)
-AC_CHECK_LIB(ncursesw, add_wch, HAVE_LIBNCURSESW=1)
+AC_CHECK_HEADER(ncurses.h, HAVE_NCURSESW_H=1)
+AC_CHECK_LIB(ncurses, add_wch, HAVE_LIBNCURSESW=1)
if test -n "$HAVE_NCURSESW_H" -a -n "$HAVE_LIBNCURSESW"; then
- LIBS="-lncursesw $LIBS"
+ LIBS="-lncurses $LIBS"
else
- echo -e "Error: both library and header files for the ncursesw library\n"\
+ echo -e "Error: both library and header files for the ncurses library\n"\
"are required to build this package. See INSTALL file for"\
"further information. On Debian/Ubuntu you need to install libncursesw5-dev."
exit 1;
fi
AC_SEARCH_LIBS(cbreak, tinfo, [],
- [AC_MSG_ERROR([Can't find cbreak() in -lncursesw or -ltinfo])])
+ [AC_MSG_ERROR([Can't find cbreak() in -lncurses or -ltinfo])])
# iconv
diff --git src/cursmenu.c src/cursmenu.c
index 1c3990e..f0fc21a 100644
--- a/src/cursmenu.c
+++ b/src/cursmenu.c
@@ -24,7 +24,7 @@
#ifdef HAVE_PDCURSES
#include <curses.h>
#else
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
#endif
#include "error.h"
diff --git src/error.c src/error.c
index 2022f2b..4ab6741 100644
--- a/src/error.c
+++ b/src/error.c
@@ -25,7 +25,7 @@
#ifdef HAVE_PDCURSES
#include <curses.h>
#else
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
#endif
#include <stdlib.h>
diff --git src/gtypist.c src/gtypist.c
index 7328ac6..cb9dd61 100644
--- a/src/gtypist.c
+++ b/src/gtypist.c
@@ -32,7 +32,7 @@
#ifdef HAVE_PDCURSES
#include <curses.h>
#else
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
#endif
#include <time.h>
diff --git src/script.c src/script.c
index ce04d68..f4032e2 100644
--- a/src/script.c
+++ b/src/script.c
@@ -24,7 +24,7 @@
#ifdef HAVE_PDCURSES
#include <curses.h>
#else
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
#endif
#include "error.h"
diff --git src/utf8.c src/utf8.c
index 8eab3d3..e3194df 100644
--- a/src/utf8.c
+++ b/src/utf8.c
@@ -23,7 +23,7 @@
#ifdef HAVE_PDCURSES
#include <curses.h>
#else
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
#endif
#include <stdlib.h>

1
extra/heimdall/LINK Normal file
View file

@ -0,0 +1 @@
https://glassechidna.com.au/heimdall/

33
extra/heimdall/heimdall.SMBuild Executable file
View file

@ -0,0 +1,33 @@
APP=heimdall
VERSION=1.4.2
BUILD=1sml
HOMEPAGE="https://www.glassechidna.com.au/products/heimdall/"
DOWNLOAD="https://github.com/Benjamin-Dobell/Heimdall/archive/refs/tags/v1.4.2.tar.gz"
DESC="Cross-platform open-source tool suite to flash ROMs onto Samsung mobile devices"
REQUIRES="gcc-libs libusb eudev"
build() {
mkandenterbuilddir
rm -rf Heimdall-$VERSION
tar xf $SRCDIR/Heimdall-$VERSION.tar.?z*
cd Heimdall-$VERSION
fixbuilddirpermissions
mkdir -p smbuild && cd smbuild
cmake .. \
-DCMAKE_INSTALL_PREFIX="/" \
-DDISABLE_FRONTEND=ON \
make
install -Dm 0755 bin/heimdall $PKG/bin/heimdall
install -Dm 0644 ../heimdall/60-heimdall.rules $PKG/lib/udev/rules.d/60-heimdall.rules
cp ../LICENSE $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
fc461d5281a3e8a6188ec5ba845d6e719285c91e2874fbbc62b6c54a8494c84fa1b93c15c2684ed936061c861b9a892aaca0a69efe692534e4f09da13077472d Heimdall-1.4.2.tar.lz
"

View file

@ -0,0 +1,37 @@
APP=imagemagick
VERSION=7.0.8
BUILD=1sml
HOMEPAGE="http://www.imagemagick.org/"
DOWNLOAD=""
DESC="Robust collection of image processing tools"
REQUIRES="libtool libxml2 libpng fftw fontconfig libxext lcms2 glu pango libraqm librsvg libwebp openjpeg "
build() {
mkandenterbuilddir
rm -rf ImageMagick-$VERSION-14
tar xf $SRCDIR/ImageMagick-$VERSION-14.tar.?z*
cd ImageMagick-$VERSION-14
fixbuilddirpermissions
./configure \
--prefix="" \
--sysconfdir=/etc \
--without-modules \
--with-x \
--with-frozenpaths=no \
--disable-openmp \
--enable-static=no \
--enable-shared
make
make install DESTDIR=$PKG
cp LICENSE $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
a86a745a1b693ed825bd167e8c2f9333e188c903cd0beb3295aba537aab022de50fe7b1d92756ea32ed19684806e694c8e3dd3f5cc79fb653338220739aad260 ImageMagick-7.0.8-14.tar.lz
"

View file

@ -0,0 +1,10 @@
--- iotop-0.6.orig/iotop/data.py 2013-05-26 18:44:18.000000000 -0400
+++ iotop-0.6/iotop/data.py 2018-08-18 23:21:03.528110821 -0400
@@ -193,6 +193,7 @@
result_dict = {}
try:
for line in open('/proc/%d/status' % pid):
+ if not line.strip(): continue
key, value = line.split(':\t', 1)
result_dict[key] = value.strip()
except IOError:

View file

@ -0,0 +1,19 @@
--- a/setup.py
+++ b/setup.py
@@ -1,15 +1,8 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
from distutils.core import setup
from distutils.command import install as distutils_install
from iotop.version import VERSION
-
-# Dirty hack to make setup.py install the iotop script to sbin/ instead of bin/
-# while still honoring the choice of installing into local/ or not.
-if hasattr(distutils_install, 'INSTALL_SCHEMES'):
- for d in distutils_install.INSTALL_SCHEMES.itervalues():
- if d.get('scripts', '').endswith('/bin'):
- d['scripts'] = d['scripts'][:-len('/bin')] + '/sbin'
setup(name='iotop',
version=VERSION,

31
extra/iotop/iotop.SMBuild Executable file
View file

@ -0,0 +1,31 @@
APP=iotop
VERSION=0.6
BUILD=2sml
HOMEPAGE="http://guichaz.free.fr/iotop"
DOWNLOAD="http://guichaz.free.fr/iotop/files/iotop-0.6.tar.gz"
DESC="Top-like I/O monitor written in python"
REQUIRES="python3"
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
patch -p1 < $SRCDIR/fix-python.patch
python3 setup.py build
python3 setup.py install --prefix="" --root=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
27d2525fa88d11f14ba477a570cdf5ef09b591846c31bc7a3970b92f22aa687e1182f1e08bbdddf400f17b10425d6426969be2846210b4714a922d1a92fb2fe6 iotop-0.6.tar.lz
e4c5aee993e7971dd731202f69e2c0a704833dce26c09329e9d7fa8d5f37c9584082a165ceaab8a07aa2421f0debf9af16f41f6b657d841ae6cc7bb2e7fb8d79 fix-proc-status-read.patch
df5b09b20dc5ca3a8e73f39089f8ef2dbc5060b35178067a41ab1fd075922a860458611d5b0e7beb7aca8c9c5853998aeb7529dbccff9ef39daf17cd997cd698 fix-python.patch
"

34
extra/libass/libass.SMBuild Executable file
View file

@ -0,0 +1,34 @@
APP=libass
VERSION=0.14.0
BUILD=1sml
HOMEPAGE="http://code.google.com/p/libass/"
DOWNLOAD="https://github.com/libass/libass/archive/refs/tags/0.14.0.tar.gz"
DESC="Subtitle renderer for the ASS/SSA formats"
REQUIRES="glib nasm fribidi fontconfig freetype harfbuzz "
build() {
mkandenterbuilddir
rm -rf $APP-$VERSION
tar xf $SRCDIR/$APP-$VERSION.tar.?z*
cd $APP-$VERSION
fixbuilddirpermissions
./configure \
--prefix="" \
--sysconfdir=/etc \
--enable-static=no \
--enable-shared=yes \
--disable-silent-rules
make
make install DESTDIR=$PKG
cp COPYING $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
1876292d06d2f68938f1b4140dad4871fa2614fd84ac9cfb35bbdeb26130c3db96a345572f1f236c2ab2a902b0f2f288d4bdc60d1443ce80ccce43f51e6ae102 libass-0.14.0.tar.lz
"

View file

@ -0,0 +1,27 @@
APP=micro-tetris
VERSION=1.4.0
BUILD=1sml
HOMEPAGE="https://github.com/troglobit/tetris/archive/refs/tags/1.4.0.tar.gz"
DOWNLOAD="https://github.com/troglobit/tetris/"
DESC="Small Tetris implementations utilising ANSI escape sequences"
REQUIRES="musl "
build() {
mkandenterbuilddir
rm -rf tetris-$VERSION
tar xf $SRCDIR/tetris-$VERSION.tar.?z**
cd tetris-$VERSION
fixbuilddirpermissions
make
make install DESTDIR=$PKG
cp LICENSE $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
034e85028ab71e050de14775da2538ed6f2e27db9ae095c32982d5d32effdf17643f68cb43d72ef176855c909f264e45b9b6ae05c39bfd240ae08277f4523c78 tetris-1.4.0.tar.gz
"

1
extra/mplayer/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

37
extra/mplayer/mplayer.SMBuild Executable file
View file

@ -0,0 +1,37 @@
APP=mplayer
VERSION=20180720
BUILD=1sml
HOMEPAGE="http://www.mplayerhq.hu/"
DOWNLOAD=""
DESC="The Linux movie player with support for several dozen formats"
REQUIRES="libpng zlib gnutls libjpeg-turbo giflib alsa-lib libcdio-paranoia freetype fontconfig fribidi bzip2 lzo libvorbis libtheora lame libass libogg mpg123 faad2 ffmpeg opus opusfile libxext libx11 libxv libvdpau libxinerama sdl mesa libopenal x264 gtk2 libidn libtasn1 nettle gmp expat e2fsprogs harfbuzz pcre libxcb libxdamage libdrm libffi libxrender libxscrnsaver"
build() {
mkandenterbuilddir
rm -rf MPlayer-$VERSION
tar xf $SRCDIR/MPlayer-$VERSION.tar.?z
cd MPlayer-$VERSION
fixbuilddirpermissions
./configure \
--prefix="" \
--confdir=/etc/mplayer \
--disable-ffmpeg_a \
--disable-arts \
--enable-gui \
--enable-menu \
--enable-vdpau \
--disable-ossaudio
make
make install DESTDIR=$PKG
cp Copyright LICENSE $PKGDOCS/
mkfinalpkg
}
SHA512SUMS="
6d081ff29d4f6cbeef7692561b9eb4a1776efa74692a8b9338affac44d997d45e822a16a69e5abbcae46ef4a4b1f896f9f56b70eb90a53d82790c9c853e8496e MPlayer-20180720.tar.xz
"

1
extra/mpv/doinst.sh Normal file
View file

@ -0,0 +1 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

Some files were not shown because too many files have changed in this diff Show more