Removed some packages in extra and net sections temporarily
This commit is contained in:
parent
2e10ab6dad
commit
17f2f4cd42
60 changed files with 0 additions and 1635 deletions
|
@ -1,39 +0,0 @@
|
||||||
app=ace
|
|
||||||
version=1.4
|
|
||||||
build=1sml
|
|
||||||
homepage="https://www.delorie.com/store/ace/"
|
|
||||||
download="https://www.delorie.com/store/ace/ace-$version.tar.gz"
|
|
||||||
desc="A set of Xorg solitaire games"
|
|
||||||
requires="guile"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
applypatch $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
|
|
||||||
"
|
|
|
@ -1,57 +0,0 @@
|
||||||
--- 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@
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Penguin Canfield
|
|
||||||
GenericName=
|
|
||||||
Comment=Solitary card-game
|
|
||||||
Icon=
|
|
||||||
Exec=/bin/canfield
|
|
||||||
Terminal=false
|
|
||||||
Categories=Game;BoardGame;
|
|
|
@ -1 +0,0 @@
|
||||||
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Penguin Freecell
|
|
||||||
GenericName=
|
|
||||||
Comment=Solitary card-game
|
|
||||||
Icon=
|
|
||||||
Exec=/bin/freecell
|
|
||||||
Terminal=false
|
|
||||||
Categories=Game;CardGame;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Penguin Golf
|
|
||||||
GenericName=
|
|
||||||
Comment=Another solitary card-game
|
|
||||||
Icon=
|
|
||||||
Exec=/bin/golf
|
|
||||||
Terminal=false
|
|
||||||
Categories=Game;CardGame;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Penguin Mastermind
|
|
||||||
GenericName=
|
|
||||||
Comment=Guess a secret combination of colors
|
|
||||||
Icon=
|
|
||||||
Exec=/bin/mastermind
|
|
||||||
Terminal=false
|
|
||||||
Categories=Game;LogicGame;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Penguin Merlin
|
|
||||||
GenericName=
|
|
||||||
Comment=Classical puzzle
|
|
||||||
Icon=
|
|
||||||
Exec=/bin/merlin
|
|
||||||
Terminal=false
|
|
||||||
Categories=Game;LogicGame;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[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;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Penguin Pegged
|
|
||||||
GenericName=
|
|
||||||
Comment=Classical board game
|
|
||||||
Icon=
|
|
||||||
Exec=/bin/pegged
|
|
||||||
Terminal=false
|
|
||||||
Categories=Game;LogicGame;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Penguin Penguins
|
|
||||||
GenericName=
|
|
||||||
Comment=Solitary card-game
|
|
||||||
Icon=
|
|
||||||
Exec=/bin/penguins
|
|
||||||
Terminal=false
|
|
||||||
Categories=Game;CardGame;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Penguin Solitaire
|
|
||||||
GenericName=
|
|
||||||
Comment=Solitary card-game
|
|
||||||
Icon=
|
|
||||||
Exec=/bin/solitaire
|
|
||||||
Terminal=false
|
|
||||||
Categories=Game;CardGame;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Penguin Spider
|
|
||||||
GenericName=
|
|
||||||
Comment=Solitary card-game
|
|
||||||
Icon=
|
|
||||||
Exec=/bin/spider
|
|
||||||
Terminal=false
|
|
||||||
Categories=Game;BoardGame;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[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;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[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;
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Type=Application
|
|
||||||
Name=Penguin Thornq
|
|
||||||
GenericName=
|
|
||||||
Comment=Solitary card-game
|
|
||||||
Icon=
|
|
||||||
Exec=/bin/thornq
|
|
||||||
Terminal=false
|
|
||||||
Categories=Game;CardGame;
|
|
|
@ -1,38 +0,0 @@
|
||||||
app=aisleriot
|
|
||||||
version=3.22.9
|
|
||||||
build=1sml
|
|
||||||
homepage="https://wiki.gnome.org/Apps/Aisleriot"
|
|
||||||
download="https://gitlab.gnome.org/GNOME/aisleriot/-/archive/$version/aisleriot-$version.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="" \
|
|
||||||
--enable-sound \
|
|
||||||
--with-card-theme-formats=svg \
|
|
||||||
--disable-schemas-install \
|
|
||||||
--with-platform=gtk-only
|
|
||||||
|
|
||||||
make
|
|
||||||
make install DESTDIR=$pkg
|
|
||||||
|
|
||||||
cp COPYING* $pkgdocs/
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
fe5d4433663e50b83bde82b2bbcce99d4abf0e0a69c8f8926e4db466226cacc17c0b823846147f147ddd3fa60c2207eca39183f7c86b9b9e0bd0bc84539211b7 aisleriot-3.22.9.tar.lz
|
|
||||||
637410e68bfaea366830d9d6e9ef3b2f03153b8406a209163c694d0a0e26b1f4bd87cfe1868c2ad25913ca73bdf75fbb1a00e001a053bfee286521c9e5d8feef guile3.diff
|
|
||||||
"
|
|
|
@ -1 +0,0 @@
|
||||||
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk
|
|
|
@ -1,20 +0,0 @@
|
||||||
--- 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; }
|
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
--- 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 */
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
app=gftp
|
|
||||||
version=2.0.19
|
|
||||||
build=1sml
|
|
||||||
homepage="https://github.com/masneyb/gftp"
|
|
||||||
download="https://github.com/masneyb/gftp/archive/refs/tags/$version.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
|
|
||||||
|
|
||||||
applypatch $srcdir/gftp.glibc-2.30.diff
|
|
||||||
applypatch $srcdir/gftp.expand.path.sigsegv.diff
|
|
||||||
applypatch $srcdir/gftp.desktop.diff
|
|
||||||
applypatch $srcdir/fsplib.h.patch
|
|
||||||
|
|
||||||
./configure \
|
|
||||||
--prefix="" \
|
|
||||||
$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
|
|
||||||
"
|
|
|
@ -1,19 +0,0 @@
|
||||||
--- 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
|
|
|
@ -1,11 +0,0 @@
|
||||||
--- 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);
|
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
--- 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
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 652 B |
|
@ -1,15 +0,0 @@
|
||||||
#!/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
|
|
|
@ -1,71 +0,0 @@
|
||||||
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-$version.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=""
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
applypatch $srcdir/xboard.conf.diff
|
|
||||||
|
|
||||||
./configure \
|
|
||||||
--prefix="" \
|
|
||||||
--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
|
|
||||||
"
|
|
|
@ -1,17 +0,0 @@
|
||||||
--- ./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 +0,0 @@
|
||||||
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk
|
|
|
@ -1,32 +0,0 @@
|
||||||
app=gparted
|
|
||||||
version=1.1.0
|
|
||||||
build=1sml
|
|
||||||
homepage="http://gparted.org"
|
|
||||||
download="https://sourceforge.net/projects/gparted/files/gparted/gparted-$version/gparted-$version.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="" \
|
|
||||||
--sbindir=/bin \
|
|
||||||
--disable-doc
|
|
||||||
|
|
||||||
make
|
|
||||||
make install DESTDIR=$pkg
|
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
b5f0d8d216f663f686d41347dc9dd1dbe370e25d2e9f321e6a109630aa9ba2a20ffb19dbccf5af1b701fb65d15c297033894583661bd66e88b8cbe84dd793453 gparted-1.1.0.tar.lz
|
|
||||||
"
|
|
|
@ -1,30 +0,0 @@
|
||||||
app=wmstickynotes
|
|
||||||
version=0.7
|
|
||||||
build=1sml
|
|
||||||
homepage="https://sourceforge.net/projects/wmstickynotes/"
|
|
||||||
download="http://sourceforge.net/projects/wmstickynotes/files/wmstickynotes/wmstickynotes-$version.tar.gz"
|
|
||||||
desc="Window maker docking app that resembles sticky notes"
|
|
||||||
requires="gtk2"
|
|
||||||
|
|
||||||
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="
|
|
||||||
5e54543d056916848f968e8a768d00a913d8c27af248db6fc2eb5431ea15615bf001eb90552fc0bf1208bc5c3779ac30efddbd5bae3598e557df83789758dcd7 wmstickynotes-0.7.tar.lz
|
|
||||||
"
|
|
|
@ -1,5 +1,4 @@
|
||||||
fail2ban
|
fail2ban
|
||||||
avahi
|
|
||||||
distcc
|
distcc
|
||||||
x11vnc
|
x11vnc
|
||||||
bwm-ng
|
bwm-ng
|
||||||
|
@ -62,7 +61,6 @@ hostapd
|
||||||
sylpheed
|
sylpheed
|
||||||
minidlna
|
minidlna
|
||||||
hexchat
|
hexchat
|
||||||
remotefs
|
|
||||||
uget
|
uget
|
||||||
x2x
|
x2x
|
||||||
maccalc
|
maccalc
|
||||||
|
@ -71,37 +69,25 @@ mtr
|
||||||
aircrack-ng
|
aircrack-ng
|
||||||
lftp
|
lftp
|
||||||
autossh
|
autossh
|
||||||
gtk-vnc
|
|
||||||
privoxy
|
|
||||||
conky
|
|
||||||
cups
|
cups
|
||||||
ghostscript
|
ghostscript
|
||||||
poppler
|
poppler
|
||||||
poppler-data
|
poppler-data
|
||||||
evince
|
evince
|
||||||
cups-filters
|
cups-filters
|
||||||
samba
|
|
||||||
rpcbind
|
rpcbind
|
||||||
nfs-utils
|
nfs-utils
|
||||||
net-snmp
|
net-snmp
|
||||||
sane-backends
|
sane-backends
|
||||||
sane-frontends
|
sane-frontends
|
||||||
gpsd
|
|
||||||
foxtrotgps
|
|
||||||
vinagre
|
|
||||||
wavemon
|
wavemon
|
||||||
macchanger
|
macchanger
|
||||||
dhcpcd
|
dhcpcd
|
||||||
geocode-glib
|
geocode-glib
|
||||||
geoclue
|
|
||||||
redshift
|
redshift
|
||||||
webkitgtk
|
|
||||||
libhandy
|
|
||||||
balsa
|
|
||||||
iperf
|
iperf
|
||||||
ipset
|
ipset
|
||||||
rrdtool
|
rrdtool
|
||||||
php
|
php
|
||||||
traceroute
|
traceroute
|
||||||
mariadb
|
|
||||||
elinks
|
elinks
|
||||||
|
|
|
@ -1,52 +0,0 @@
|
||||||
app=avahi
|
|
||||||
version=0.8
|
|
||||||
build=2sml
|
|
||||||
homepage="https://www.avahi.org/"
|
|
||||||
download="http://avahi.org/download/avahi-$version.tar.gz"
|
|
||||||
desc="Implementation of service discovery aka zeroconf"
|
|
||||||
requires="glib dbus expat gdbm libcap libdaemon libevent"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
./configure \
|
|
||||||
--prefix="" \
|
|
||||||
--sbindir=/bin \
|
|
||||||
--sysconfdir=/etc \
|
|
||||||
--with-distro=slackware \
|
|
||||||
--disable-static \
|
|
||||||
--enable-glib \
|
|
||||||
--enable-gtk3 \
|
|
||||||
--disable-gobject \
|
|
||||||
--disable-qt5 \
|
|
||||||
--disable-python \
|
|
||||||
--disable-pygobject \
|
|
||||||
--disable-python-dbus \
|
|
||||||
--disable-mono \
|
|
||||||
--disable-monodoc \
|
|
||||||
--disable-manpages \
|
|
||||||
--disable-xmltoman \
|
|
||||||
--disable-tests \
|
|
||||||
--disable-doxygen-doc \
|
|
||||||
--disable-nls \
|
|
||||||
--with-autoipd-user=avahi \
|
|
||||||
--with-autoipd-group=avahi \
|
|
||||||
--enable-compat-libdns_sd
|
|
||||||
|
|
||||||
make || true
|
|
||||||
cd avahi-ui && make LDFLAGS="-L../avahi-glib" LIBS="-lavahi-glib" && cd ..
|
|
||||||
make install DESTDIR=$pkg
|
|
||||||
|
|
||||||
cp LICENSE $pkgdocs/
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
ca04bfa9d493432d8e8f3bc074b7c10ad871941d14ccffe1cc8a0db70b73dce0741456a45ae64e13d2df2a7381654388db3c67d479404902b3df05f3a05d56b1 avahi-0.8.tar.lz
|
|
||||||
"
|
|
|
@ -1,38 +0,0 @@
|
||||||
app=balsa
|
|
||||||
version=2.5.11
|
|
||||||
build=1sml
|
|
||||||
homepage="https://pawsa.fedorapeople.org/balsa/"
|
|
||||||
download="https://pawsa.fedorapeople.org/balsa/balsa-$version.tar.bz2"
|
|
||||||
desc="GTK+3 mail client with support for GPG"
|
|
||||||
requires="gcc-libs pcre netbsd-curses libpng libical libnotify gnutls libgpg-error sqlite icu libogg libvorbis gtk3 graphite2 webkitgtk"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
applypatch $srcdir/misc.c.patch
|
|
||||||
|
|
||||||
./configure \
|
|
||||||
--prefix="" \
|
|
||||||
--with-html-widget=webkit2 \
|
|
||||||
--with-sqlite \
|
|
||||||
--with-libsecret \
|
|
||||||
--with-canberra \
|
|
||||||
--with-gcr
|
|
||||||
|
|
||||||
make
|
|
||||||
make install DESTDIR=$pkg
|
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
cf29c86424b5323db4c85743c193b57e9515ffd62f6774c5dffa4cd41d84301333d9fdca804d72c6a79d2228ec75ff1b4f0548a2239e7cc89dfdf19abe74035b balsa-2.5.11.tar.lz
|
|
||||||
4e01113f17e8a3feef4a231ece5babc93d67b0caf7484aba69cd5a9fbee7e70062e78e279b5b3dfe4936e9596706ce2b4f7dde89bd50fa1f5b36d10578cfdec4 misc.c.patch
|
|
||||||
"
|
|
|
@ -1 +0,0 @@
|
||||||
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk
|
|
|
@ -1,10 +0,0 @@
|
||||||
--- a/libbalsa/misc.c 2020-06-27 12:47:54.228984871 +0530
|
|
||||||
+++ b/libbalsa/misc.c 2020-06-27 12:47:40.385206539 +0530
|
|
||||||
@@ -37,6 +37,7 @@
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/utsname.h>
|
|
||||||
+#include <asm-generic/fcntl.h>
|
|
||||||
|
|
||||||
#include "libbalsa.h"
|
|
||||||
#include "libbalsa_private.h"
|
|
|
@ -1,46 +0,0 @@
|
||||||
app=conky
|
|
||||||
version=1.11.6
|
|
||||||
build=1sml
|
|
||||||
homepage="https://github.com/brndnmtthws/conky"
|
|
||||||
download="https://github.com/brndnmtthws/conky/archive/refs/tags/v$version.tar.gz"
|
|
||||||
desc="Light-weight system monitor for X"
|
|
||||||
requires="curl lua toluapp imlib2 xorg-server"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
# Don't link with netbsd-curses, as it causes conky to segfault
|
|
||||||
# Also, we are following the old network interface naming scheme
|
|
||||||
|
|
||||||
mkdir -p smbuild && cd smbuild
|
|
||||||
cmake .. \
|
|
||||||
-DCMAKE_INSTALL_PREFIX="" \
|
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
|
||||||
-DBUILD_WLAN=ON \
|
|
||||||
-DBUILD_WEATHER_METAR=ON \
|
|
||||||
-DBUILD_XDBE=ON \
|
|
||||||
-DBUILD_XSHAPE=ON \
|
|
||||||
-DBUILD_CURL=ON \
|
|
||||||
-DBUILD_IMLIB2=ON \
|
|
||||||
-DBUILD_RSS=ON \
|
|
||||||
-DBUILD_LUA_CAIRO=ON \
|
|
||||||
-DBUILD_LUA_IMLIB2=ON \
|
|
||||||
-DDEFAULTNETDEV=eth0 \
|
|
||||||
-DBUILD_NCURSES=OFF
|
|
||||||
|
|
||||||
make
|
|
||||||
make install DESTDIR=$pkg
|
|
||||||
|
|
||||||
cp ../{LICENSE.*,COPYING} $pkgdocs/
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
998e7c0d60ecfb6ffb65452f28ff3d2d870c4f6427e9c69d2a2dcd7ef2d4e7107f24acf51a00fec8528d70ef51be92288814030cfabf8ffb097693a848265397 conky-1.11.6.tar.lz
|
|
||||||
"
|
|
|
@ -1 +0,0 @@
|
||||||
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk
|
|
|
@ -1,13 +0,0 @@
|
||||||
diff --git a/src/gps_functions.c b/src/gps_functions.c
|
|
||||||
index 9943b6b..c3d087a 100644
|
|
||||||
--- a/src/gps_functions.c
|
|
||||||
+++ b/src/gps_functions.c
|
|
||||||
@@ -762,7 +762,7 @@ cb_gpsd_data(GIOChannel *src, GIOCondition condition, gpointer data)
|
|
||||||
{
|
|
||||||
gpsdata->fix.time = (time_t) 0;
|
|
||||||
}
|
|
||||||
- gpsdata->valid = (libgps_gpsdata.status != STATUS_NO_FIX);
|
|
||||||
+ gpsdata->valid = (libgps_gpsdata.fix.status != STATUS_NO_FIX);
|
|
||||||
if (gpsdata->valid)
|
|
||||||
{
|
|
||||||
gpsdata->seen_valid = TRUE;
|
|
|
@ -1,13 +0,0 @@
|
||||||
diff --git a/src/gps_functions.c b/src/gps_functions.c
|
|
||||||
index 04f88e0..e3df086 100644
|
|
||||||
--- a/src/gps_functions.c
|
|
||||||
+++ b/src/gps_functions.c
|
|
||||||
@@ -752,7 +752,7 @@ cb_gpsd_data(GIOChannel *src, GIOCondition condition, gpointer data)
|
|
||||||
{
|
|
||||||
gpsdata->satellites_used = libgps_gpsdata.satellites_used;
|
|
||||||
gpsdata->hdop = libgps_gpsdata.dop.hdop;
|
|
||||||
- gpsdata->fix.time = libgps_gpsdata.fix.time;
|
|
||||||
+ gpsdata->fix.time = libgps_gpsdata.fix.time.tv_nsec;
|
|
||||||
if (isnan(gpsdata->fix.time))
|
|
||||||
{
|
|
||||||
gpsdata->fix.time = (time_t) 0;
|
|
|
@ -1,35 +0,0 @@
|
||||||
app=foxtrotgps
|
|
||||||
version=1.2.2
|
|
||||||
build=1sml
|
|
||||||
homepage="https://www.foxtrotgps.org/"
|
|
||||||
download="https://www.foxtrotgps.org/releases/foxtrotgps-$version.tar.xz"
|
|
||||||
desc="Lightweight mapping application in GTK+"
|
|
||||||
requires="gpsd"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
applypatch $srcdir/fix-gpsfix.patch
|
|
||||||
applypatch $srcdir/fix-timespec.patch
|
|
||||||
|
|
||||||
./configure \
|
|
||||||
--prefix=""
|
|
||||||
|
|
||||||
make
|
|
||||||
make install DESTDIR=$pkg
|
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
7358b1db49e7fab80b25912c9bfeeabffd58350250d3f41b4498c448e8ba21d8c04c77096886fd74ce31134bd63a2837c69b91feadd02828aa10ca10df0a6d4d foxtrotgps-1.2.2.tar.lz
|
|
||||||
dcaae691e8459c001e80a3cbd9ab85cba86d1d8428c126d54814da21ec079664a650215787fddf2ae59a4e03f6675027f994a715dcced5032b54a1c653092d72 fix-gpsfix.patch
|
|
||||||
2f555e0f5bcb80489a8f3d23d94a40ad67730d504f36ac2f0188c9fa71c7b5e76bceaa91b02f1c4a5bf0d67381d4794b552c5e7dd0703ccc0b39956f2e11a193 fix-timespec.patch
|
|
||||||
"
|
|
|
@ -1,16 +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/geoclue/geoclue.conf.new
|
|
||||||
|
|
||||||
[ -x /etc/rc.d/rc/gtk ] && /etc/rc.d/rc.gtk
|
|
|
@ -1,38 +0,0 @@
|
||||||
app=geoclue
|
|
||||||
version=2.5.7
|
|
||||||
build=1sml
|
|
||||||
homepage="https://gitlab.freedesktop.org/geoclue/geoclue/-/wikis/home"
|
|
||||||
download="https://gitlab.freedesktop.org/geoclue/geoclue/-/archive/$version/geoclue-$version.tar.bz2"
|
|
||||||
desc="D-Bus service for providing location information"
|
|
||||||
requires="glib gobject-introspection"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd geoclue-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
mkdir smbuild && cd smbuild
|
|
||||||
meson .. \
|
|
||||||
--prefix="/" \
|
|
||||||
-D3g-source=false \
|
|
||||||
-Dcdma-source=false \
|
|
||||||
-Dmodem-gps-source=false \
|
|
||||||
-Ddbus-srv-user=geoclue \
|
|
||||||
-Dgtk-doc=false \
|
|
||||||
-Dintrospection=false
|
|
||||||
|
|
||||||
ninja
|
|
||||||
DESTDIR="$pkg" ninja install
|
|
||||||
|
|
||||||
cp ../COPYING* $pkgdocs/
|
|
||||||
mv $pkg/etc/geoclue/geoclue.conf $pkg/etc/geoclue/geoclue.conf.new
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
8d4f68dffe85bfca2146f093193bcc80e720556904baae25c2e9bc4cb072db4aeba29b1177411e0490ce3a13e78a6f4818f91a953c8b06d7890b5509ab02d956 geoclue-2.5.7.tar.lz
|
|
||||||
"
|
|
|
@ -1,13 +0,0 @@
|
||||||
diff --git a/SConstruct b/SConstruct
|
|
||||||
index 33e0ff3..cf39fd9 100644
|
|
||||||
--- a/SConstruct
|
|
||||||
+++ b/SConstruct
|
|
||||||
@@ -319,7 +319,7 @@ for var in import_env:
|
|
||||||
envs[var] = os.environ[var]
|
|
||||||
envs["GPSD_HOME"] = os.getcwd()
|
|
||||||
|
|
||||||
-env = Environment(tools=["default", "tar", "textfile"], options=opts, ENV=envs)
|
|
||||||
+env = Environment(tools=["default", "tar", "textfile"], options=opts, ENV=envs, CPPPATH=".")
|
|
||||||
|
|
||||||
# Minimal build turns off every option not set on the command line,
|
|
||||||
if ARGUMENTS.get('minimal'):
|
|
|
@ -1,35 +0,0 @@
|
||||||
app=gpsd
|
|
||||||
version=3.21
|
|
||||||
build=1sml
|
|
||||||
homepage="https://gpsd.gitlab.io/gpsd/"
|
|
||||||
download="http://download-mirror.savannah.gnu.org/releases/gpsd/gpsd-$version.tar.xz"
|
|
||||||
desc="GPS daemon for serving navigational software"
|
|
||||||
requires="libusb eudev bluez"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
applypatch $srcdir/gpsd-use-local-timepps-header.patch
|
|
||||||
cp $srcdir/timepps.h .
|
|
||||||
|
|
||||||
CPPFLAGS="-I. -DHAVE_SYS_TIMEPPS_H" \
|
|
||||||
scons prefix="/" \
|
|
||||||
sbindir="/bin" \
|
|
||||||
qt=no \
|
|
||||||
systemd=no
|
|
||||||
|
|
||||||
DESTDIR=$pkg scons install
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
f08fe049f83552a7e73023fb8b8cdfbe23928950f7e628fe7ae733ca0a2d662d9f1204e308a1638e5b46e821f8405a6439ee8b1c8720c7c867093f457358f95e gpsd-3.21.tar.lz
|
|
||||||
b692c9fc77a9db3fc621693d3b9e3ef9bc2efbbc7b01651168d7b928d29d48a489b8859930bad01b6021e211372e069a726b78dd5938385ed4ae0153b38f4170 gpsd-use-local-timepps-header.patch
|
|
||||||
eb11fc19243d1789016d88eb7645bfe67c46304547781489bf36eb1dd4c252d523681ff835a6488fa0ef62b6b9e2f781c672279f4439f5d5640a3f214a113048 timepps.h
|
|
||||||
"
|
|
|
@ -1,216 +0,0 @@
|
||||||
/*
|
|
||||||
* timepps.h -- PPS API main header
|
|
||||||
*
|
|
||||||
* Copyright (C) 2005-2007 Rodolfo Giometti <giometti@linux.it>
|
|
||||||
* Copyright (C) 2009-2011 Alexander Gordeev <alex@gordick.net>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* Source: https://github.com/ago/pps-tools/ - Retreived Dec 2013
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _SYS_TIMEPPS_H_
|
|
||||||
#define _SYS_TIMEPPS_H_
|
|
||||||
|
|
||||||
#include <errno.h>
|
|
||||||
#include <sys/time.h>
|
|
||||||
#include <sys/ioctl.h>
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/pps.h>
|
|
||||||
|
|
||||||
#define LINUXPPS 1 /* signal we are using LinuxPPS */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* New data structures
|
|
||||||
*/
|
|
||||||
|
|
||||||
struct ntp_fp {
|
|
||||||
unsigned int integral;
|
|
||||||
unsigned int fractional;
|
|
||||||
};
|
|
||||||
|
|
||||||
union pps_timeu {
|
|
||||||
struct timespec tspec;
|
|
||||||
struct ntp_fp ntpfp;
|
|
||||||
unsigned long longpad[3];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct pps_info {
|
|
||||||
unsigned long assert_sequence; /* seq. num. of assert event */
|
|
||||||
unsigned long clear_sequence; /* seq. num. of clear event */
|
|
||||||
union pps_timeu assert_tu; /* time of assert event */
|
|
||||||
union pps_timeu clear_tu; /* time of clear event */
|
|
||||||
int current_mode; /* current mode bits */
|
|
||||||
};
|
|
||||||
|
|
||||||
struct pps_params {
|
|
||||||
int api_version; /* API version # */
|
|
||||||
int mode; /* mode bits */
|
|
||||||
union pps_timeu assert_off_tu; /* offset compensation for assert */
|
|
||||||
union pps_timeu clear_off_tu; /* offset compensation for clear */
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef int pps_handle_t; /* represents a PPS source */
|
|
||||||
typedef unsigned long pps_seq_t; /* sequence number */
|
|
||||||
typedef struct ntp_fp ntp_fp_t; /* NTP-compatible time stamp */
|
|
||||||
typedef union pps_timeu pps_timeu_t; /* generic data type for time stamps */
|
|
||||||
typedef struct pps_info pps_info_t;
|
|
||||||
typedef struct pps_params pps_params_t;
|
|
||||||
|
|
||||||
#define assert_timestamp assert_tu.tspec
|
|
||||||
#define clear_timestamp clear_tu.tspec
|
|
||||||
|
|
||||||
#define assert_timestamp_ntpfp assert_tu.ntpfp
|
|
||||||
#define clear_timestamp_ntpfp clear_tu.ntpfp
|
|
||||||
|
|
||||||
#define assert_offset assert_off_tu.tspec
|
|
||||||
#define clear_offset clear_off_tu.tspec
|
|
||||||
|
|
||||||
#define assert_offset_ntpfp assert_off_tu.ntpfp
|
|
||||||
#define clear_offset_ntpfp clear_off_tu.ntpfp
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The PPS API
|
|
||||||
*/
|
|
||||||
|
|
||||||
static __inline int time_pps_create(int source, pps_handle_t *handle)
|
|
||||||
{
|
|
||||||
int ret;
|
|
||||||
struct pps_kparams dummy;
|
|
||||||
|
|
||||||
if (!handle) {
|
|
||||||
errno = EINVAL;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* First we check if current device is a valid PPS one by
|
|
||||||
* doing a dummy PPS_GETPARAMS...
|
|
||||||
*/
|
|
||||||
ret = ioctl(source, PPS_GETPARAMS, &dummy);
|
|
||||||
if (ret) {
|
|
||||||
errno = EOPNOTSUPP;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ... then since in LinuxPPS there are no differences between a
|
|
||||||
* "PPS source" and a "PPS handle", we simply return the same value.
|
|
||||||
*/
|
|
||||||
*handle = source;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline int time_pps_destroy(pps_handle_t handle)
|
|
||||||
{
|
|
||||||
return close(handle);
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline int time_pps_getparams(pps_handle_t handle,
|
|
||||||
pps_params_t *ppsparams)
|
|
||||||
{
|
|
||||||
int ret;
|
|
||||||
struct pps_kparams __ppsparams;
|
|
||||||
|
|
||||||
ret = ioctl(handle, PPS_GETPARAMS, &__ppsparams);
|
|
||||||
|
|
||||||
ppsparams->api_version = __ppsparams.api_version;
|
|
||||||
ppsparams->mode = __ppsparams.mode;
|
|
||||||
ppsparams->assert_off_tu.tspec.tv_sec = __ppsparams.assert_off_tu.sec;
|
|
||||||
ppsparams->assert_off_tu.tspec.tv_nsec = __ppsparams.assert_off_tu.nsec;
|
|
||||||
ppsparams->clear_off_tu.tspec.tv_sec = __ppsparams.clear_off_tu.sec;
|
|
||||||
ppsparams->clear_off_tu.tspec.tv_nsec = __ppsparams.clear_off_tu.nsec;
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline int time_pps_setparams(pps_handle_t handle,
|
|
||||||
const pps_params_t *ppsparams)
|
|
||||||
{
|
|
||||||
struct pps_kparams __ppsparams;
|
|
||||||
|
|
||||||
__ppsparams.api_version = ppsparams->api_version;
|
|
||||||
__ppsparams.mode = ppsparams->mode;
|
|
||||||
__ppsparams.assert_off_tu.sec = ppsparams->assert_off_tu.tspec.tv_sec;
|
|
||||||
__ppsparams.assert_off_tu.nsec = ppsparams->assert_off_tu.tspec.tv_nsec;
|
|
||||||
__ppsparams.clear_off_tu.sec = ppsparams->clear_off_tu.tspec.tv_sec;
|
|
||||||
__ppsparams.clear_off_tu.nsec = ppsparams->clear_off_tu.tspec.tv_nsec;
|
|
||||||
|
|
||||||
return ioctl(handle, PPS_SETPARAMS, &__ppsparams);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Get capabilities for handle */
|
|
||||||
static __inline int time_pps_getcap(pps_handle_t handle, int *mode)
|
|
||||||
{
|
|
||||||
return ioctl(handle, PPS_GETCAP, mode);
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline int time_pps_fetch(pps_handle_t handle, const int tsformat,
|
|
||||||
pps_info_t *ppsinfobuf,
|
|
||||||
const struct timespec *timeout)
|
|
||||||
{
|
|
||||||
struct pps_fdata __fdata;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
/* Sanity checks */
|
|
||||||
if (tsformat != PPS_TSFMT_TSPEC) {
|
|
||||||
errno = EINVAL;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (timeout) {
|
|
||||||
__fdata.timeout.sec = timeout->tv_sec;
|
|
||||||
__fdata.timeout.nsec = timeout->tv_nsec;
|
|
||||||
__fdata.timeout.flags = ~PPS_TIME_INVALID;
|
|
||||||
} else
|
|
||||||
__fdata.timeout.flags = PPS_TIME_INVALID;
|
|
||||||
|
|
||||||
ret = ioctl(handle, PPS_FETCH, &__fdata);
|
|
||||||
|
|
||||||
ppsinfobuf->assert_sequence = __fdata.info.assert_sequence;
|
|
||||||
ppsinfobuf->clear_sequence = __fdata.info.clear_sequence;
|
|
||||||
ppsinfobuf->assert_tu.tspec.tv_sec = __fdata.info.assert_tu.sec;
|
|
||||||
ppsinfobuf->assert_tu.tspec.tv_nsec = __fdata.info.assert_tu.nsec;
|
|
||||||
ppsinfobuf->clear_tu.tspec.tv_sec = __fdata.info.clear_tu.sec;
|
|
||||||
ppsinfobuf->clear_tu.tspec.tv_nsec = __fdata.info.clear_tu.nsec;
|
|
||||||
ppsinfobuf->current_mode = __fdata.info.current_mode;
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef PPS_KC_BIND
|
|
||||||
|
|
||||||
static __inline int time_pps_kcbind(pps_handle_t handle,
|
|
||||||
const int kernel_consumer,
|
|
||||||
const int edge, const int tsformat)
|
|
||||||
{
|
|
||||||
struct pps_bind_args __bind_args;
|
|
||||||
|
|
||||||
__bind_args.tsformat = tsformat;
|
|
||||||
__bind_args.edge = edge;
|
|
||||||
__bind_args.consumer = kernel_consumer;
|
|
||||||
|
|
||||||
return ioctl(handle, PPS_KC_BIND, &__bind_args);
|
|
||||||
}
|
|
||||||
|
|
||||||
#else /* !PPS_KC_BIND */
|
|
||||||
|
|
||||||
static __inline int time_pps_kcbind(pps_handle_t handle,
|
|
||||||
const int kernel_consumer,
|
|
||||||
const int edge, const int tsformat)
|
|
||||||
{
|
|
||||||
/* LinuxPPS doesn't implement kernel consumer feature */
|
|
||||||
errno = EOPNOTSUPP;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* PPS_KC_BIND */
|
|
||||||
|
|
||||||
#endif /* _SYS_TIMEPPS_H_ */
|
|
|
@ -1,33 +0,0 @@
|
||||||
app=gtk-vnc
|
|
||||||
version=1.0.0
|
|
||||||
build=1sml
|
|
||||||
homepage="https://wiki.gnome.org/Projects/gtk-vnc"
|
|
||||||
download="https://download.gnome.org/sources/gtk-vnc/1.0/gtk-vnc-$version.tar.xz"
|
|
||||||
desc="VNC viewer widget for GTK"
|
|
||||||
requires="gtk3 gnutls libgcrypt"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z**
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
meson \
|
|
||||||
--prefix="/" \
|
|
||||||
--buildtype=plain \
|
|
||||||
-Dwith-vala=true \
|
|
||||||
-Dwith-coroutine=gthread \
|
|
||||||
build
|
|
||||||
|
|
||||||
DESTDIR=$pkg ninja -C build all install
|
|
||||||
|
|
||||||
cp COPYING* $pkgdocs/
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
2bdedf3cbc32a9a5a90298060ebb00079da57eaac392d663159ac6de57324ac40b9a6391aaaea4aa6adc83b20c173e0f5a6069c71bc2e0d9afe8ff289feedce4 gtk-vnc-1.0.0.tar.lz
|
|
||||||
"
|
|
|
@ -1,32 +0,0 @@
|
||||||
app=libhandy
|
|
||||||
version=1.4.0
|
|
||||||
build=1sml
|
|
||||||
homepage="https://gitlab.gnome.org/GNOME/libhandy/"
|
|
||||||
download="https://gitlab.gnome.org/GNOME/libhandy/-/archive/$version/libhandy-$version.tar.bz2"
|
|
||||||
desc="Collection of GTK+ widgets for mobile phones"
|
|
||||||
requires="webkitgtk libdazzle"
|
|
||||||
|
|
||||||
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="
|
|
||||||
d610524a88d49fb18c006fde812ee5b639914aae73638cd9ec6462f80ff26e791defb365b60afb63e86696d01d495f302e41f499e402da114efc262e94a3be78 libhandy-1.4.0.tar.lz
|
|
||||||
"
|
|
|
@ -1,26 +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...
|
|
||||||
}
|
|
||||||
|
|
||||||
# Keep same perms on rc.mysqld.new:
|
|
||||||
if [ -e etc/rc.d/rc.mysqld ]; then
|
|
||||||
cp -a etc/rc.d/rc.mysqld etc/rc.d/rc.mysqld.new.incoming
|
|
||||||
cat etc/rc.d/rc.mysqld.new > etc/rc.d/rc.mysqld.new.incoming
|
|
||||||
mv etc/rc.d/rc.mysqld.new.incoming etc/rc.d/rc.mysqld.new
|
|
||||||
fi
|
|
||||||
|
|
||||||
config etc/rc.d/rc.mysqld.new
|
|
||||||
config etc/mysqlaccess.conf.new
|
|
||||||
config etc/my.cnf.new
|
|
||||||
config etc/my.cnf.d/client.cnf.new
|
|
||||||
config etc/my.cnf.d/mysql-clients.cnf.new
|
|
||||||
config etc/my.cnf.d/server.cnf.new
|
|
|
@ -1,101 +0,0 @@
|
||||||
app=mariadb
|
|
||||||
version=10.6.7
|
|
||||||
build=1sml
|
|
||||||
homepage="http://mariadb.org/"
|
|
||||||
download="https://archive.mariadb.org/mariadb-$version/source/mariadb-$version.tar.gz"
|
|
||||||
desc="Drop-in replacement for the MySQL Database Server"
|
|
||||||
requires="libxml2 zstd bzip2 cmake openssl zlib libaio netbsd-curses gcc-libs"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
unset CFLAGS CXXFLAGS
|
|
||||||
|
|
||||||
mkdir -p smbuild && cd smbuild
|
|
||||||
cmake .. \
|
|
||||||
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
|
||||||
-DCMAKE_INSTALL_PREFIX="/" \
|
|
||||||
-DINSTALL_SBINDIR=bin \
|
|
||||||
-DINSTALL_MANDIR=share/man \
|
|
||||||
-DINSTALL_LAYOUT=STANDALONE \
|
|
||||||
-DINSTALL_INCLUDEDIR=include/mysql \
|
|
||||||
-DINSTALL_MYSQLSHAREDIR=share/mysql \
|
|
||||||
-DINSTALL_PLUGINDIR=lib/mysql/plugin \
|
|
||||||
-DINSTALL_SCRIPTDIR=bin \
|
|
||||||
-DINSTALL_SUPPORTFILESDIR=share/mysql \
|
|
||||||
-DINSTALL_MYSQLDATADIR=/var/lib/mysql \
|
|
||||||
-DMYSQL_DATADIR="/var/lib/mysql" \
|
|
||||||
-DMYSQL_UNIX_ADDR="/var/run/mysql/mysql.sock" \
|
|
||||||
-DENABLED_LOCAL_INFILE=ON \
|
|
||||||
-DWITH_SSL=system \
|
|
||||||
-DWITH_ZLIB=system \
|
|
||||||
-DWITH_EXTERNAL_ZLIB=ON \
|
|
||||||
-DWITH_JEMALLOC=NO \
|
|
||||||
-DSKIP_TESTS=ON \
|
|
||||||
-DPLUGIN_MROONGA=NO \
|
|
||||||
-DPLUGIN_AUTH_PAM=NO \
|
|
||||||
-DPLUGIN_ROCKSDB=NO \
|
|
||||||
-DWITH_WSREP=NO \
|
|
||||||
-DWITH_READLINE=ON \
|
|
||||||
-DWITH_INNODB_LZ4=OFF \
|
|
||||||
-DDEFAULT_CHARSET=utf8mb4 \
|
|
||||||
-DDEFAULT_COLLATION=utf8mb4_general_ci \
|
|
||||||
-DWITH_LIBARCHIVE=system \
|
|
||||||
-DWITH_PCRE=system \
|
|
||||||
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
|
|
||||||
-DTMPDIR=/var/tmp \
|
|
||||||
-DCONNECT_WITH_MYSQL=ON \
|
|
||||||
-DCONNECT_WITH_LIBXML2=system \
|
|
||||||
-DPLUGIN_ARCHIVE=YES \
|
|
||||||
-DPLUGIN_CSV=YES \
|
|
||||||
-DWITH_SYSTEMD=no
|
|
||||||
|
|
||||||
|
|
||||||
# Am sure there must be a better way to do it, but for now it works
|
|
||||||
sed -i 's@-lcurses@-lcurses -lterminfo@g' client/CMakeFiles/mariadb.dir/link.txt
|
|
||||||
|
|
||||||
make
|
|
||||||
make install DESTDIR=$pkg
|
|
||||||
|
|
||||||
mv $pkg/COPYING $pkgdocs/
|
|
||||||
rm $pkg/{README-wsrep,CREDITS,README.md,INSTALL-BINARY,THIRDPARTY}
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
install -Dm 644 support-files/rpm/my.cnf $pkg/etc/my.cnf.new
|
|
||||||
for i in client mysql-clients server ; do
|
|
||||||
install -Dm 644 support-files/rpm/$i.cnf $pkg/etc/my.cnf.d/$i.cnf.new
|
|
||||||
done
|
|
||||||
|
|
||||||
install -Dm 644 support-files/rpm/client.cnf $pkg/etc/my.cnf.d/client.cnf.new
|
|
||||||
|
|
||||||
# Remove sql-bench and mysql-tests
|
|
||||||
rm -rf $pkg/{sql-bench,mysql-test}
|
|
||||||
|
|
||||||
# This is the directory where databases are stored
|
|
||||||
mkdir -p $pkg/var/lib/mysql
|
|
||||||
chown mysql.mysql $pkg/var/lib/mysql
|
|
||||||
chmod 0750 $pkg/var/lib/mysql
|
|
||||||
|
|
||||||
# This is where the socket is stored
|
|
||||||
mkdir -p $pkg/var/run/mysql
|
|
||||||
chown mysql.mysql $pkg/var/run/mysql
|
|
||||||
chmod 0755 $pkg/var/run/mysql
|
|
||||||
|
|
||||||
# Add the init script
|
|
||||||
install -Dm 0755 $srcdir/rc.mysqld $pkg/etc/rc.d/rc.mysqld.new
|
|
||||||
|
|
||||||
# Install mysqlaccess.conf
|
|
||||||
install -m 644 scripts/mysqlaccess.conf $pkg/etc/mysqlaccess.conf.new
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
fee9a8ce06266c7c27f937755c3ebba3b4926874d7040d45b9f692c008e518cb473bbe8f8ded4e6cb756ca0564d19b676d72e3e0a8c5ed95728cde901d8d2c20 mariadb-10.6.7.tar.lz
|
|
||||||
"
|
|
|
@ -1,102 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# Start/stop/restart mysqld.
|
|
||||||
#
|
|
||||||
# Copyright 2003 Patrick J. Volkerding, Concord, CA
|
|
||||||
# Copyright 2003 Slackware Linux, Inc., Concord, CA
|
|
||||||
# Copyright 2008, 2013 Patrick J. Volkerding, Sebeka, MN, USA
|
|
||||||
#
|
|
||||||
# This program comes with NO WARRANTY, to the extent permitted by law.
|
|
||||||
# You may redistribute copies of this program under the terms of the
|
|
||||||
# GNU General Public License.
|
|
||||||
|
|
||||||
# To start MariaDB automatically at boot, be sure this script is executable:
|
|
||||||
# chmod 755 /etc/rc.d/rc.mysqld
|
|
||||||
|
|
||||||
# Before you can run MariaDB, you must have a database. To install an initial
|
|
||||||
# database, do this as root:
|
|
||||||
#
|
|
||||||
# mysql_install_db --user=mysql
|
|
||||||
#
|
|
||||||
# Note that the mysql user must exist in /etc/passwd, and the created files
|
|
||||||
# will be owned by this dedicated user. This is important, or else mysql
|
|
||||||
# (which runs as user "mysql") will not be able to write to the database
|
|
||||||
# later (this can be fixed with 'chown -R mysql.mysql /var/lib/mysql').
|
|
||||||
#
|
|
||||||
# To increase system security, consider using "mysql_secure_installation"
|
|
||||||
# as well. For more information on this tool, please read:
|
|
||||||
# man mysql_secure_installation
|
|
||||||
|
|
||||||
# To allow outside connections to the database comment out the next line.
|
|
||||||
# If you don't need incoming network connections, then leave the line
|
|
||||||
# uncommented to improve system security.
|
|
||||||
SKIP="--skip-networking"
|
|
||||||
|
|
||||||
# Uncomment the next line to use Oracle's InnoDB plugin instead of the included XtraDB
|
|
||||||
#INNODB="--ignore-builtin-innodb --plugin-load=innodb=ha_innodb.so"
|
|
||||||
|
|
||||||
# Uncomment the next line to use TokuDB
|
|
||||||
#TOKUDB="--plugin-load=ha_tokudb"
|
|
||||||
|
|
||||||
# Start mysqld:
|
|
||||||
mysqld_start() {
|
|
||||||
if [ -x /bin/mysqld_safe ]; then
|
|
||||||
# If there is an old PID file (no mysqld running), clean it up:
|
|
||||||
if [ -r /var/run/mysql/mysql.pid ]; then
|
|
||||||
if ! ps axc | grep mysqld 1> /dev/null 2> /dev/null ; then
|
|
||||||
echo "Cleaning up old /var/run/mysql/mysql.pid."
|
|
||||||
rm -f /var/run/mysql/mysql.pid
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ! [ -z "$TOKUDB" ]; then
|
|
||||||
echo "never" > /sys/kernel/mm/transparent_hugepage/enabled
|
|
||||||
echo "never" > /sys/kernel/mm/transparent_hugepage/defrag
|
|
||||||
fi
|
|
||||||
|
|
||||||
/bin/mysqld_safe --datadir=/var/lib/mysql --pid-file=/var/run/mysql/mysql.pid $SKIP $INNODB $TOKUDB &
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Stop mysqld:
|
|
||||||
mysqld_stop() {
|
|
||||||
# If there is no PID file, ignore this request...
|
|
||||||
if [ -r /var/run/mysql/mysql.pid ]; then
|
|
||||||
killall mysqld
|
|
||||||
# Wait at least one minute for it to exit, as we don't know how big the DB is...
|
|
||||||
for second in 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 \
|
|
||||||
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 60 ; do
|
|
||||||
if [ ! -r /var/run/mysql/mysql.pid ]; then
|
|
||||||
break;
|
|
||||||
fi
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
if [ "$second" = "60" ]; then
|
|
||||||
echo "WARNING: Gave up waiting for mysqld to exit!"
|
|
||||||
sleep 15
|
|
||||||
fi
|
|
||||||
if ! [ -z "$TOKUDB" ]; then
|
|
||||||
echo "always" > /sys/kernel/mm/transparent_hugepage/enabled
|
|
||||||
echo "always" > /sys/kernel/mm/transparent_hugepage/defrag
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Restart mysqld:
|
|
||||||
mysqld_restart() {
|
|
||||||
mysqld_stop
|
|
||||||
mysqld_start
|
|
||||||
}
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
'start')
|
|
||||||
mysqld_start
|
|
||||||
;;
|
|
||||||
'stop')
|
|
||||||
mysqld_stop
|
|
||||||
;;
|
|
||||||
'restart')
|
|
||||||
mysqld_restart
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "usage $0 start|stop|restart"
|
|
||||||
esac
|
|
|
@ -1,10 +0,0 @@
|
||||||
--- a/src/resume/client.c 2013-12-01 02:38:43.000000000 +0530
|
|
||||||
+++ a/src/resume/client.c 2018-11-09 20:20:25.589477188 +0530
|
|
||||||
@@ -15,6 +15,7 @@
|
|
||||||
#include <sys/file.h>
|
|
||||||
#include <sys/socket.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
+#include <fcntl.h>
|
|
||||||
|
|
||||||
#include "../config.h"
|
|
||||||
#include "../instance_client.h"
|
|
|
@ -1,32 +0,0 @@
|
||||||
app=remotefs
|
|
||||||
version=1.0
|
|
||||||
build=1sml
|
|
||||||
homepage="http://remotefs.sourceforge.net/"
|
|
||||||
download="https://sourceforge.net/projects/remotefs/files/remotefs/1.0/remotefs-1.0-1.tar.bz2"
|
|
||||||
desc="Simple network file system for use in home NAS with few dependencies"
|
|
||||||
requires="fuse"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
sed -i 's@-Werror@@g' build/Makefiles/LinuxIcc.mk
|
|
||||||
sed -i 's@-Werror@@g' build/Makefiles/Linux.mk
|
|
||||||
applypatch $srcdir/client.c.patch
|
|
||||||
|
|
||||||
make -j1 rfs rfsd rfspasswd man
|
|
||||||
make install INSTALL_DIR=$pkg
|
|
||||||
|
|
||||||
cp LICENSE $pkgdocs/
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
2642f2eaa14e9f0831b25b3015041b450adf9b1d4e06aa7fbf9a071eca21739b7d0f52cbf7bab043b41a177eb17e7ce85351aa5667a7eb5ba8b00350f778167a remotefs-1.0.tar.lz
|
|
||||||
6828d2a020ec710a021130fbbcd7c962c79b7298676c22028e183d488ce430360257ade5e4958f218cb7578cb9259667a38a8c471162a07292c806a248426ec1 client.c.patch
|
|
||||||
"
|
|
|
@ -1 +0,0 @@
|
||||||
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk
|
|
|
@ -1,112 +0,0 @@
|
||||||
diff --git c/plugins/rdp/vinagre-rdp-tab.c i/plugins/rdp/vinagre-rdp-tab.c
|
|
||||||
index b731f9b20ec910cc..13100de3dc0e07e1 100644
|
|
||||||
--- c/plugins/rdp/vinagre-rdp-tab.c
|
|
||||||
+++ i/plugins/rdp/vinagre-rdp-tab.c
|
|
||||||
@@ -476,16 +476,17 @@ frdp_drawing_area_draw (GtkWidget *area,
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
-static void
|
|
||||||
+static BOOL
|
|
||||||
frdp_begin_paint (rdpContext *context)
|
|
||||||
{
|
|
||||||
rdpGdi *gdi = context->gdi;
|
|
||||||
|
|
||||||
gdi->primary->hdc->hwnd->invalid->null = 1;
|
|
||||||
gdi->primary->hdc->hwnd->ninvalid = 0;
|
|
||||||
+ return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
-static void
|
|
||||||
+static BOOL
|
|
||||||
frdp_end_paint (rdpContext *context)
|
|
||||||
{
|
|
||||||
VinagreRdpTab *rdp_tab = ((frdpContext *) context)->rdp_tab;
|
|
||||||
@@ -495,7 +496,7 @@ frdp_end_paint (rdpContext *context)
|
|
||||||
gint x, y, w, h;
|
|
||||||
|
|
||||||
if (gdi->primary->hdc->hwnd->invalid->null)
|
|
||||||
- return;
|
|
||||||
+ return TRUE;
|
|
||||||
|
|
||||||
x = gdi->primary->hdc->hwnd->invalid->x;
|
|
||||||
y = gdi->primary->hdc->hwnd->invalid->y;
|
|
||||||
@@ -517,6 +518,7 @@ frdp_end_paint (rdpContext *context)
|
|
||||||
{
|
|
||||||
gtk_widget_queue_draw_area (priv->display, x, y, w, h);
|
|
||||||
}
|
|
||||||
+ return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
static BOOL
|
|
||||||
@@ -587,15 +589,7 @@ frdp_post_connect (freerdp *instance)
|
|
||||||
rdpGdi *gdi;
|
|
||||||
int stride;
|
|
||||||
|
|
||||||
- gdi_init (instance,
|
|
||||||
-#if defined(FREERDP_VERSION_MAJOR) && defined(FREERDP_VERSION_MINOR) && \
|
|
||||||
- !(FREERDP_VERSION_MAJOR > 1 || (FREERDP_VERSION_MAJOR == 1 && \
|
|
||||||
- FREERDP_VERSION_MINOR >= 2))
|
|
||||||
- CLRBUF_24BPP,
|
|
||||||
-#else
|
|
||||||
- CLRBUF_32BPP,
|
|
||||||
-#endif
|
|
||||||
- NULL);
|
|
||||||
+ gdi_init (instance, PIXEL_FORMAT_BGRA32);
|
|
||||||
gdi = instance->context->gdi;
|
|
||||||
|
|
||||||
instance->update->BeginPaint = frdp_begin_paint;
|
|
||||||
@@ -934,11 +928,13 @@ frdp_authenticate (freerdp *instance,
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
-static BOOL
|
|
||||||
+static DWORD
|
|
||||||
frdp_certificate_verify (freerdp *instance,
|
|
||||||
- char *subject,
|
|
||||||
- char *issuer,
|
|
||||||
- char *fingerprint)
|
|
||||||
+ const char *common_name,
|
|
||||||
+ const char *subject,
|
|
||||||
+ const char *issuer,
|
|
||||||
+ const char *fingerprint,
|
|
||||||
+ BOOL host_mismatch)
|
|
||||||
{
|
|
||||||
VinagreTab *tab = VINAGRE_TAB (((frdpContext *) instance->context)->rdp_tab);
|
|
||||||
GtkBuilder *builder;
|
|
||||||
@@ -968,17 +964,20 @@ frdp_certificate_verify (freerdp *instance,
|
|
||||||
gtk_widget_hide (dialog);
|
|
||||||
|
|
||||||
|
|
||||||
- return response == GTK_RESPONSE_YES;
|
|
||||||
+ return (response == GTK_RESPONSE_YES) ? 1 : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#if HAVE_FREERDP_1_1
|
|
||||||
-static BOOL
|
|
||||||
+static DWORD
|
|
||||||
frdp_changed_certificate_verify (freerdp *instance,
|
|
||||||
- char *subject,
|
|
||||||
- char *issuer,
|
|
||||||
- char *new_fingerprint,
|
|
||||||
- char *old_fingerprint)
|
|
||||||
+ const char *common_name,
|
|
||||||
+ const char *subject,
|
|
||||||
+ const char *issuer,
|
|
||||||
+ const char *new_fingerprint,
|
|
||||||
+ const char *old_subject,
|
|
||||||
+ const char *old_issuer,
|
|
||||||
+ const char *old_fingerprint)
|
|
||||||
{
|
|
||||||
VinagreTab *tab = VINAGRE_TAB (((frdpContext *) instance->context)->rdp_tab);
|
|
||||||
GtkBuilder *builder;
|
|
||||||
@@ -1023,7 +1022,7 @@ frdp_changed_certificate_verify (freerdp *instance,
|
|
||||||
gtk_widget_hide (dialog);
|
|
||||||
|
|
||||||
|
|
||||||
- return response == GTK_RESPONSE_YES;
|
|
||||||
+ return (response == GTK_RESPONSE_YES) ? 1 : 0;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
app=vinagre
|
|
||||||
version=3.22.0
|
|
||||||
build=1sml
|
|
||||||
homepage="https://wiki.gnome.org/Apps/Vinagre"
|
|
||||||
download="https://gitlab.gnome.org/GNOME/vinagre/-/archive/$version/vinagre-$version.tar.bz2"
|
|
||||||
desc="Remote desktop viewer written in GTK+3"
|
|
||||||
requires="gcc-libs glib pango gdk-pixbuf gobject-introspection gnutls libxml2 pcre gtk-vnc libgcrypt libgpg-error wayland wayland-protocols libpng libidn libtasn1 mesa ffmpeg dbus libdrm libcroco libvorbis gtk3 freerdp"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
sed -i 's@freerdp@freerdp2@g' configure
|
|
||||||
applypatch $srcdir/freerdp2017.diff
|
|
||||||
|
|
||||||
./configure \
|
|
||||||
--prefix="" \
|
|
||||||
--enable-compile-warnings=no \
|
|
||||||
--disable-schemas-compile \
|
|
||||||
--disable-nls \
|
|
||||||
--enable-rdp
|
|
||||||
|
|
||||||
make
|
|
||||||
make install DESTDIR=$pkg
|
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
9ec34f000948fca43f6aa93dbeee53ace7192667292c2db23d892770c8e066c58f32b4fc04cd0776048f67665ca4e8b2e7247237e2a505d6ee61fa0369fa1961 vinagre-3.22.0.tar.lz
|
|
||||||
965e57339b4ce776904ce612f1e6f96a10735f220395bd023f212919280c02ca7ad5838f111b25c1e99b493a65e0355b6fb3e52d8d6e56a50146c5c821c9cb48 freerdp2017.diff
|
|
||||||
"
|
|
|
@ -1,15 +0,0 @@
|
||||||
$NetBSD: patch-Source_WebCore_rendering_shapes_ShapeOutsideInfo.cpp,v 1.1 2021/03/30 12:47:42 leot Exp $
|
|
||||||
|
|
||||||
Properly calls std::isnan()
|
|
||||||
|
|
||||||
--- a/Source/WebCore/rendering/shapes/ShapeOutsideInfo.cpp.orig 2021-02-26 09:57:14.000000000 +0000
|
|
||||||
+++ b/Source/WebCore/rendering/shapes/ShapeOutsideInfo.cpp
|
|
||||||
@@ -172,7 +172,7 @@ const Shape& ShapeOutsideInfo::computedS
|
|
||||||
WritingMode writingMode = containingBlockStyle.writingMode();
|
|
||||||
auto margin = [&] {
|
|
||||||
auto shapeMargin = floatValueForLength(m_renderer.style().shapeMargin(), m_renderer.containingBlock() ? m_renderer.containingBlock()->contentWidth() : 0_lu);
|
|
||||||
- return isnan(shapeMargin) ? 0.0f : shapeMargin;
|
|
||||||
+ return std::isnan(shapeMargin) ? 0.0f : shapeMargin;
|
|
||||||
}();
|
|
||||||
float shapeImageThreshold = style.shapeImageThreshold();
|
|
||||||
const ShapeValue& shapeValue = *style.shapeOutside();
|
|
|
@ -1,11 +0,0 @@
|
||||||
Fix isinf errors
|
|
||||||
--- a/Source/ThirdParty/ANGLE/src/compiler/translator/SymbolTable.h.orig
|
|
||||||
+++ b/Source/ThirdParty/ANGLE/src/compiler/translator/SymbolTable.h
|
|
||||||
@@ -30,6 +30,7 @@
|
|
||||||
// are tracked in the intermediate representation, not the symbol table.
|
|
||||||
//
|
|
||||||
|
|
||||||
+#include <cmath>
|
|
||||||
#include <limits>
|
|
||||||
#include <memory>
|
|
||||||
#include <set>
|
|
|
@ -1,51 +0,0 @@
|
||||||
app=webkitgtk
|
|
||||||
version=2.34.6
|
|
||||||
build=1sml
|
|
||||||
homepage="https://webkitgtk.org/"
|
|
||||||
download="https://webkitgtk.org/releases/webkitgtk-$version.tar.xz"
|
|
||||||
desc="GTK+ port of the WebKit"
|
|
||||||
requires="libwebp libtasn1 gtk3 bubblewrap gst-plugins-base libmanette ruby"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version.tar.?z*
|
|
||||||
cd $app-$version
|
|
||||||
fixbuilddirpermissions
|
|
||||||
|
|
||||||
unset CFLAGS CXXFLAGS
|
|
||||||
|
|
||||||
patch -p1 < $srcdir/symboltable.patch
|
|
||||||
patch -p1 < $srcdir/shapeoutsideinfo.patch
|
|
||||||
|
|
||||||
mkdir -p smbuild && cd smbuild
|
|
||||||
cmake .. -GNinja \
|
|
||||||
-DPORT=GTK \
|
|
||||||
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
|
||||||
-DCMAKE_SKIP_RPATH=ON \
|
|
||||||
-DCMAKE_INSTALL_PREFIX="" \
|
|
||||||
-DLIB_INSTALL_DIR="/lib" \
|
|
||||||
-DENABLE_GTKDOC=OFF \
|
|
||||||
-DENABLE_GEOLOCATION=OFF \
|
|
||||||
-DENABLE_SAMPLING_PROFILER=OFF \
|
|
||||||
-DENABLE_MINIBROWSER=ON \
|
|
||||||
-DUSE_WPE_RENDERER=OFF \
|
|
||||||
-DUSE_LD_GOLD=OFF \
|
|
||||||
-DUSE_SYSTEMD=OFF \
|
|
||||||
-DUSE_SOUP2=ON \
|
|
||||||
-DENABLE_GLES2=ON
|
|
||||||
|
|
||||||
ninja JavaScriptCore-4-gir
|
|
||||||
ninja
|
|
||||||
|
|
||||||
DESTDIR="$pkg" ninja install
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
afc5019e0f72724f3d8da8a31060a83c42295d749165cbe652aee165a0f70719aa3074f2ffda465837a8fcb918b92eefb4b96127fdb51d5a8c2141e0ff559b01 webkitgtk-2.34.6.tar.lz
|
|
||||||
a1304879072c2fcfa5b664faf7f57353e1eca007aa0f5723f2020d9f1ed10c7f3281ec3b0f359467843a7ea7014e7994b2b85ca97de96cd78cfedcc7839fdc0f shapeoutsideinfo.patch
|
|
||||||
dd2b9a6ac0afdc3a79c6b7c904cd5a5d1dbbae7a5c002dbbdf50bf93dbeba44a31f957cab199262ff83fe3e5e2970670353eed927392b2443684b214695b8473 symboltable.patch
|
|
||||||
"
|
|
Loading…
Reference in a new issue