Removed several unmaintained packages from net section below:

bwm-ng
cups-filters
cups
dump1090
evince
fping
minidlna
nload
sane-backends
sane-frontends
smstools
uget
This commit is contained in:
PktSurf 2023-12-10 23:30:35 +05:30
parent b84f8a4a14
commit a258af926e
26 changed files with 0 additions and 1128 deletions

View file

@ -1,286 +0,0 @@
From d5daf15c2098040b8b01753d3cdce8c1c79fc528 Mon Sep 17 00:00:00 2001
From: David Seifert <soap@gentoo.org>
Date: Fri, 10 Feb 2017 21:30:49 +0100
Subject: [PATCH] Use `static inline` instead of `inline`
`inline` by itself is not portably guaranteed to emit
an external definition when needed in C99. The current
code base implicitly relies on GNU89 inline semantics,
which _always_ emit an external definition. More recent
versions of GCC and Clang switch to C99/C11 inline semantics
by default, which fails with undefined references.
See also:
* http://www.greenend.org.uk/rjk/tech/inline.html
* https://clang.llvm.org/compatibility.html#inline
* http://blahg.josefsipek.net/?p=529
---
src/bwm-ng.c | 4 ++--
src/help.c | 4 ++--
src/options.c | 16 ++++++++--------
src/output.c | 22 +++++++++++-----------
src/process.c | 28 ++++++++++++++--------------
5 files changed, 37 insertions(+), 37 deletions(-)
diff --git a/src/bwm-ng.c b/src/bwm-ng.c
index ad94ccd..c2ab0db 100644
--- a/src/bwm-ng.c
+++ b/src/bwm-ng.c
@@ -26,7 +26,7 @@
/* handle interrupt signal */
void sigint(int sig) FUNCATTR_NORETURN;
-inline void init(void);
+static inline void init(void);
/* clear stuff and exit */
#ifdef __STDC__
@@ -98,7 +98,7 @@ void sigint(int sig) {
deinit(0, NULL);
}
-inline void init(void) {
+static inline void init(void) {
if_count=0;
delay=500;
#if EXTENDED_STATS
diff --git a/src/help.c b/src/help.c
index 7fd9ca4..4853297 100644
--- a/src/help.c
+++ b/src/help.c
@@ -24,9 +24,9 @@
#include "global_vars.h"
#include "help.h"
-inline void print_help_line(const char *short_c,const char * long_c,const char *descr);
+static inline void print_help_line(const char *short_c,const char * long_c,const char *descr);
-inline void print_help_line(const char *short_c,const char * long_c,const char *descr) {
+static inline void print_help_line(const char *short_c,const char * long_c,const char *descr) {
#ifdef LONG_OPTIONS
printf(" %-23s",long_c);
#else
diff --git a/src/options.c b/src/options.c
index 1b65eeb..30dccb4 100644
--- a/src/options.c
+++ b/src/options.c
@@ -30,12 +30,12 @@ static char* getToken(char** str, const char* delims);
char *trim_whitespace(char *str);
int read_config(const char *config_file);
#endif
-inline int str2output_unit(char *optarg);
+static inline int str2output_unit(char *optarg);
#if EXTENDED_STATS
-inline int str2output_type(char *optarg);
+static inline int str2output_type(char *optarg);
#endif
-inline int str2out_method(char *optarg);
-inline int str2in_method(char *optarg);
+static inline int str2out_method(char *optarg);
+static inline int str2in_method(char *optarg);
#ifdef CONFIG_FILE
/******************************************************************************
@@ -65,7 +65,7 @@ static char* getToken(char** str, const char* delims) {
/******************************************************************************/
#endif
-inline int str2output_unit(char *optarg) {
+static inline int str2output_unit(char *optarg) {
if (optarg) {
if (!strcasecmp(optarg,"bytes")) return BYTES_OUT;
if (!strcasecmp(optarg,"bits")) return BITS_OUT;
@@ -76,7 +76,7 @@ inline int str2output_unit(char *optarg) {
}
#if EXTENDED_STATS
-inline int str2output_type(char *optarg) {
+static inline int str2output_type(char *optarg) {
if (optarg) {
if (!strcasecmp(optarg,"rate")) return RATE_OUT;
if (!strcasecmp(optarg,"max")) return MAX_OUT;
@@ -87,7 +87,7 @@ inline int str2output_type(char *optarg) {
}
#endif
-inline int str2out_method(char *optarg) {
+static inline int str2out_method(char *optarg) {
if (optarg) {
if (!strcasecmp(optarg,"plain")) return PLAIN_OUT;
#ifdef HAVE_CURSES
@@ -109,7 +109,7 @@ inline int str2out_method(char *optarg) {
}
-inline int str2in_method(char *optarg) {
+static inline int str2in_method(char *optarg) {
if (optarg) {
#ifdef PROC_NET_DEV
if (!strcasecmp(optarg,"proc")) return PROC_IN;
diff --git a/src/output.c b/src/output.c
index 653e444..1425b3c 100644
--- a/src/output.c
+++ b/src/output.c
@@ -25,13 +25,13 @@
#include "output.h"
inline static const char *output_type2str(void);
-inline const char *input2str(void);
-inline const char *show_all_if2str(void);
-inline ullong direction2value(char mode,struct inout_long stats);
+static inline const char *input2str(void);
+static inline const char *show_all_if2str(void);
+static inline ullong direction2value(char mode,struct inout_long stats);
#if EXTENDED_STATS
-inline double direction_max2value(char mode,struct inouttotal_double stats,int items);
+static inline double direction_max2value(char mode,struct inouttotal_double stats,int items);
#endif
-inline char *dyn_byte_value2str(double value,char *str,int buf_size);
+static inline char *dyn_byte_value2str(double value,char *str,int buf_size);
char *values2str(char mode,t_iface_speed_stats stats,t_iface_stats full_stats,float multiplier,char *str,int buf_size);
inline static const char *output_type2str(void) {
@@ -59,7 +59,7 @@ inline static const char *output_type2str(void) {
}
-inline const char *input2str(void) {
+static inline const char *input2str(void) {
switch (input_method) {
#ifdef SYSCTL
case SYSCTL_IN:
@@ -121,7 +121,7 @@ inline const char *input2str(void) {
return "";
}
-inline const char *show_all_if2str(void) {
+static inline const char *show_all_if2str(void) {
switch (show_all_if) {
case 1:
return " (all)";
@@ -262,7 +262,7 @@ int print_header(int option) {
}
-inline ullong direction2value(char mode,struct inout_long stats) {
+static inline ullong direction2value(char mode,struct inout_long stats) {
switch (mode) {
case 0:
return stats.in;
@@ -275,7 +275,7 @@ inline ullong direction2value(char mode,struct inout_long stats) {
}
#if EXTENDED_STATS
-inline double direction_max2value(char mode,struct inouttotal_double stats,int items) {
+static inline double direction_max2value(char mode,struct inouttotal_double stats,int items) {
switch (mode) {
case 0:
return (double)(stats.in/items);
@@ -288,7 +288,7 @@ inline double direction_max2value(char mode,struct inouttotal_double stats,int i
}
#endif
-inline char *dyn_byte_value2str(double value,char *str,int buf_size) {
+static inline char *dyn_byte_value2str(double value,char *str,int buf_size) {
if (dynamic) {
if (value<1024)
snprintf(str,buf_size,"%15.2f ",value);
@@ -306,7 +306,7 @@ inline char *dyn_byte_value2str(double value,char *str,int buf_size) {
return str;
}
-inline char *dyn_bit_value2str(double value,char *str,int buf_size) {
+static inline char *dyn_bit_value2str(double value,char *str,int buf_size) {
if (dynamic) {
if (value<1000)
snprintf(str,buf_size,"%15.2f ",value);
diff --git a/src/process.c b/src/process.c
index 59eccf0..d06c6dd 100644
--- a/src/process.c
+++ b/src/process.c
@@ -26,19 +26,19 @@
short show_iface(char *instr, char *searchstr,char iface_is_up);
#if HAVE_GETTIMEOFDAY
-inline long tvdiff(struct timeval newer, struct timeval older);
+static inline long tvdiff(struct timeval newer, struct timeval older);
float get_time_delay(int iface_num);
#endif
-inline ullong calc_new_values(ullong new, ullong old);
+static inline ullong calc_new_values(ullong new, ullong old);
t_iface_speed_stats convert2calced_values(t_iface_speed_stats new, t_iface_speed_stats old);
t_iface_speed_stats convert2calced_disk_values(t_iface_speed_stats new, t_iface_speed_stats old);
#if EXTENDED_STATS
-inline void sub_avg_values(struct inouttotal_double *values,struct inouttotal_double data);
-inline void add_avg_values(struct inouttotal_double *values,struct inouttotal_double data);
-inline void save_avg_values(struct inouttotal_double *values,struct inouttotal_double *data,struct inout_long calced_stats,float multiplier);
+static inline void sub_avg_values(struct inouttotal_double *values,struct inouttotal_double data);
+static inline void add_avg_values(struct inouttotal_double *values,struct inouttotal_double data);
+static inline void save_avg_values(struct inouttotal_double *values,struct inouttotal_double *data,struct inout_long calced_stats,float multiplier);
void save_avg(struct t_avg *avg,struct iface_speed_stats calced_stats,float multiplier);
-inline void save_sum(struct inout_long *stats,struct inout_long new_stats_values);
-inline void save_max(struct inouttotal_double *stats,struct inout_long calced_stats,float multiplier);
+static inline void save_sum(struct inout_long *stats,struct inout_long new_stats_values);
+static inline void save_max(struct inouttotal_double *stats,struct inout_long calced_stats,float multiplier);
#endif
/* returns the whether to show the iface or not
@@ -74,7 +74,7 @@ short show_iface(char *instr, char *searchstr,char iface_is_up) {
#if HAVE_GETTIMEOFDAY
/* Returns: the time difference in milliseconds. */
-inline long tvdiff(struct timeval newer, struct timeval older) {
+static inline long tvdiff(struct timeval newer, struct timeval older) {
return labs((newer.tv_sec-older.tv_sec)*1000+
(newer.tv_usec-older.tv_usec)/1000);
}
@@ -95,7 +95,7 @@ float get_time_delay(int iface_num) {
#endif
/* basically new-old, but handles "overflow" of source aswell */
-inline ullong calc_new_values(ullong new, ullong old) {
+static inline ullong calc_new_values(ullong new, ullong old) {
/* FIXME: WRAP_AROUND _might_ be wrong for libstatgrab, where the type is always long long */
return (new>=old) ? (ullong)(new-old) : (ullong)((
#ifdef HAVE_LIBKSTAT
@@ -136,13 +136,13 @@ t_iface_speed_stats convert2calced_disk_values(t_iface_speed_stats new, t_iface_
#if EXTENDED_STATS
/* sub old values from cached for avg stats */
-inline void sub_avg_values(struct inouttotal_double *values,struct inouttotal_double data) {
+static inline void sub_avg_values(struct inouttotal_double *values,struct inouttotal_double data) {
values->in-=data.in;
values->out-=data.out;
values->total-=data.total;
}
-inline void add_avg_values(struct inouttotal_double *values,struct inouttotal_double data) {
+static inline void add_avg_values(struct inouttotal_double *values,struct inouttotal_double data) {
values->in+=data.in;
values->out+=data.out;
values->total+=data.total;
@@ -151,7 +151,7 @@ inline void add_avg_values(struct inouttotal_double *values,struct inouttotal_do
/* put new-old bytes in inout_long struct into a inouttotal_double struct
* and add values to cached .value struct */
-inline void save_avg_values(struct inouttotal_double *values,struct inouttotal_double *data,struct inout_long calced_stats,float multiplier) {
+static inline void save_avg_values(struct inouttotal_double *values,struct inouttotal_double *data,struct inout_long calced_stats,float multiplier) {
data->in=calced_stats.in*multiplier;
data->out=calced_stats.out*multiplier;
data->total=(calced_stats.in+calced_stats.out)*multiplier;
@@ -201,13 +201,13 @@ void save_avg(struct t_avg *avg,struct iface_speed_stats calced_stats,float mult
}
/* add current in and out bytes to totals struct */
-inline void save_sum(struct inout_long *stats,struct inout_long new_stats_values) {
+static inline void save_sum(struct inout_long *stats,struct inout_long new_stats_values) {
stats->in+=new_stats_values.in;
stats->out+=new_stats_values.out;
}
/* lookup old max values and save new if higher */
-inline void save_max(struct inouttotal_double *stats,struct inout_long calced_stats,float multiplier) {
+static inline void save_max(struct inouttotal_double *stats,struct inout_long calced_stats,float multiplier) {
if (multiplier*calced_stats.in > stats->in)
stats->in=multiplier*calced_stats.in;
if (multiplier*calced_stats.out>stats->out)

View file

@ -1,39 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=bwm-ng
version=0.6.1
build=1sml
homepage="https://github.com/vgropp/bwm-ng"
download="https://github.com/vgropp/bwm-ng/archive/refs/tags/v$version.tar.gz"
desc="Console-based live network and disk io bandwidth monitor for Linux"
requires="netbsd-curses"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
applypatch $srcdir/001-Use-static-inline-instead-of-inline.patch
}
build() {
./configure \
--prefix= \
--with-ncurses \
--with-procnetdev \
--with-partitions
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
926cac1cde3e752c0f4d62fa11587a030c50606871647e2a2a0a43b738decaf4ecaedf0105cbc955bf3ef8702e98f32956470e4211172fbeb1f0089dcc2a585e bwm-ng-0.6.1.tar.lz
53e137810d3e2a278aa68e179f0638e085f920fa75890c2315d534353dd47b08057d757b2a0700d246cc3f4e9aee17a6c172bec34e69bf755460b156f518d801 001-Use-static-inline-instead-of-inline.patch
"

View file

@ -1,47 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=cups-filters
version=1.9.0
build=1sml
homepage="https://www.openprinting.org"
download="https://www.openprinting.org/download/cups-filters/cups-filters-$version.tar.xz"
desc="Backends and filters for CUPS"
requires="dejavu-fonts-ttf libwebp libidn libtasn1 nettle libjpeg-turbo gobject-introspection pcre netbsd-curses glib gmp gnutls zlib imagemagick lcms2 cups poppler qpdf python3"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
./configure \
--prefix= \
--sbindir=/bin \
--libdir=/lib \
--sysconfdir=/etc \
--disable-static \
--without-php \
--disable-avahi \
--with-browseremoteprotocols=cups \
--with-test-font-path=/share/fonts/TTF/DejaVuSans.ttf
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkdir -p $pkg/etc/rc.d
#mv $pkg/etc/init.d/cups-browsed $pkg/etc/rc.d/rc.cups-browsed
rm -rf $pkg/etc/init.d $pkg/etc/rc{0,2,3,5.d}
find $pkg/etc -type f -exec mv {} {}.new \;
mkfinalpkg
}
sha512sums="
cfe87763a8438f0dbfb386fd82178371d2ad46a30ae64af0ae4c011cbdd61592da819219b0eed9494740460cef83e009c3eb248aea630f4807d14a525ec9da91 cups-filters-1.9.0.tar.lz
"

View file

@ -1,28 +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...
}
preserve_perms() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ -e $OLD ]; then
cp -a $OLD ${NEW}.incoming
cat $NEW > ${NEW}.incoming
mv ${NEW}.incoming $NEW
fi
config $NEW
}
config etc/cups/cups-browsed.conf.new
config etc/fonts/conf.d/99pdftoopvp.conf.new
preserve_perms etc/rc.d/rc.cups-browsed.new

View file

@ -1,60 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=cups
version=2.1.4
build=1sml
homepage="http://www.cups.org/"
download="https://github.com/apple/cups/releases/download/release-$version/cups-$version-source.tar.gz"
desc="Common UNIX Printing System"
requires="perl openssl gnutls dbus"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version-source.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
./configure \
--prefix= \
--sbindir=/bin \
--libdir=/lib \
--sysconfdir=/etc \
--disable-static \
--enable-ssl \
--enable-gnutls=yes \
--enable-cdsassl=no \
--without-php \
--disable-pam \
--disable-avahi \
--disable-dnssd \
--disable-webif \
--disable-tcp-wrappers \
--without-java \
--with-icondir=/share/icons \
--with-menudir=/share/applications
make
make BUILDROOT=$pkg install
cp LICENSE.txt $pkgdocs/
(
cd $pkg/etc/dbus-1/system.d
mv cups.conf cups.conf.new
cd $pkg/etc/cups
for file in *.conf ; do
if [ -f $file ] ; then
mv $file $file.new
fi
done
)
mkfinalpkg
}
sha512sums="
ce2ed51f0601af17aeaefd676e56eb4b5acc82a46ecd3273ac034101808ac02795aacd1dd198cdb5b4c389accdd8cd69ca0e5457834bd0c245858299ef0f1e89 cups-2.1.4-source.tar.lz
"

View file

@ -1,28 +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...
}
for file in etc/cups/*.new ; do
config $file
done
config etc/dbus-1/system.d/cups.conf.new
# Leave any new rc.cups with the same permissions as the old one:
# This is a kludge, but it's because there's no --reference option
# on busybox's 'chmod':
if [ -e etc/rc.d/rc.cups ]; then
if [ -x etc/rc.d/rc.cups ]; then
chmod 755 etc/rc.d/rc.cups.new
else
chmod 644 etc/rc.d/rc.cups.new
fi
fi
# Then config() it:
config etc/rc.d/rc.cups.new

View file

@ -1,10 +0,0 @@
project so I'll be able to address issues and improve it only during
free time, however you are incouraged to send pull requests in order to
improve the program. A good starting point can be the TODO list included in
the source distribution.
Credits
---
Dump1090 was written by Salvatore Sanfilippo <antirez@gmail.com> and is
released under the BSD three clause license.

View file

@ -1,29 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=dump1090
version=1.0
build=1sml
homepage="https://github.com/antirez/dump1090"
desc="Mode S decoder specifically designed for RTLSDR devices"
requires="eudev libusb rtl-sdr"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
make
install -Dm 755 dump1090 $pkg/bin/dump1090
cp README.md $srcdir/LICENSE $pkgdocs/
mkfinalpkg
}
sha512sums="
3c1487b04ae641c463bb2742634348ec20e1f24afb09807e8d0b1228f1e7005122aa849fb184b27d8787f4f1b05fa6d9a05011c0fcd51cd1834c3ef888e7e3c0 dump1090-1.0.tar.lz
"

View file

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

View file

@ -1,35 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=evince
version=3.35.92
build=1sml
homepage="http://projects.gnome.org/evince/"
download="https://download.gnome.org/sources/evince/3.35/evince-$version.tar.xz"
desc="Gtk-based document viewer with support for multiple formats"
requires="libarchive python3 gtk3 libsecret gspell gst-plugins-base"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
./configure \
--prefix=/ \
--disable-nautilus \
--disable-static
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
22e34ed5f739e22de647457676ab192158c08d81fb46d59873bbe2da57c7778244a89cafeeaa6f4350606e81210d6f507f1372bcc99b4a9e3cb59c504edf1153 evince-3.35.92.tar.lz
"

View file

@ -1,36 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=fping
version=4.2
build=1sml
homepage="https://fping.org/"
download="https://fping.org/dist/fping-$version.tar.gz"
desc="Network ping utility with better performance than traditional ping"
requires="musl"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
./configure \
--prefix= \
--sbindir=/bin \
--enable-ipv4 \
--enable-ipv6
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
175d37330df3558618c6adc166af72e532c760fc2384ec8f5b8ea086bef946e3bb8f3450fea33765ecc902b38a1ec7cf13a4c92983a0d74d02d11771021202fb fping-4.2.tar.lz
"

View file

@ -1,32 +0,0 @@
--- a/metadata.c
+++ b/metadata.c
@@ -676,6 +676,7 @@
memset(&m, '\0', sizeof(m));
memset(&video, '\0', sizeof(video));
+ memset(nfo, '\0', sizeof(nfo));
//DEBUG DPRINTF(E_DEBUG, L_METADATA, "Parsing video %s...\n", name);
if ( stat(path, &file) != 0 )
--- a/minidlna.c
+++ b/minidlna.c
@@ -1049,8 +1049,17 @@
if (!sqlite3_threadsafe() || sqlite3_libversion_number() < 3005001)
DPRINTF(E_ERROR, L_GENERAL, "SQLite library is not threadsafe! "
"Inotify will be disabled.\n");
- else if (pthread_create(&inotify_thread, NULL, start_inotify, NULL) != 0)
- DPRINTF(E_FATAL, L_GENERAL, "ERROR: pthread_create() failed for start_inotify. EXITING\n");
+ else
+ {
+ pthread_attr_t attr, *attrptr = NULL;
+ if ((pthread_attr_init(&attr) == 0) && (pthread_attr_setstacksize(&attr, 192 * 1024) == 0))
+ attrptr = &attr;
+ else
+ DPRINTF(E_ERROR, L_GENERAL, "Failed to set inotify thread stack size,"
+ "continuing with the default.\n");
+ if (pthread_create(&inotify_thread, attrptr, start_inotify, NULL) != 0)
+ DPRINTF(E_FATAL, L_GENERAL, "ERROR: pthread_create() failed for start_inotify. EXITING\n");
+ }
}
#endif
smonitor = OpenAndConfMonitorSocket();

View file

@ -1,13 +0,0 @@
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/minidlna.conf.new

View file

@ -1,46 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=minidlna
version=1.2.1
build=1sml
homepage="https://sourceforge.net/projects/minidlna/"
download="https://sourceforge.net/projects/minidlna/files/minidlna/$version/minidlna-$version.tar.gz"
desc="DLNA and UPnP server"
requires="flac libexif libid3tag libjpeg-turbo libvorbis sqlite ffmpeg"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
applypatch $srcdir/10-minidlna-nfo.patch
}
build() {
./configure \
--prefix= \
--sbindir=/bin \
--with-os-name="SMLinux" \
--with-db-path=/var/lib/minidlna \
--with-log-path=/var/log/minidlna
make
make install DESTDIR=$pkg
install -Dm 644 minidlnad.8 $pkg/share/man/man8/minidlnad.8
install -Dm 644 minidlna.conf.5 $pkg/share/man/man8/minidla.conf.5
install -Dm 644 minidlna.conf $pkg/etc/minidlna.conf.new
install -Dm 755 $srcdir/rc.minidlna $pkg/etc/rc.d/rc.minidlna
cp LICENCE.miniupnpd COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
6a6613d7d92b13a5aa73fe19f218c73b4552ff062d9868efbd2d16b83d02b4a2f9dd8dea0d4ed4d6d9045845b63c1a6ddf2808e61586d53a1affb51fcb2077cb minidlna-1.2.1.tar.lz
59a97ef0a36d3ae44dd2e182a0b106f84ce5c17e7dc14ee0459b17430b57ddc59a74e8e67fc0a90326fa451a505b97a0b719b438475efac144028dd012b44af1 10-minidlna-nfo.patch
"

View file

@ -1,37 +0,0 @@
#!/bin/sh
# minidlna only supports foregrounding in debug mode, and we don't want a flood
# in our logs. so no runit for this one, instead, daemonize.
minidlna_start()
{
echo "Start minidlna."
/bin/minidlnad
}
minidlna_stop()
{
echo "Stopping minidlna"
killall minidlnad
}
minidlna_restart()
{
minidlna_stop
sleep 2
minidlna_start
}
case $1 in
'start')
minidlna_start
;;
'stop')
minidlna_stop
;;
'restart')
minidlna_restart
;;
*)
echo "usage $0 start|stop|restart"
esac

View file

@ -1,34 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=nload
version=0.7.4
build=1sml
homepage="https://sourceforge.net/projects/nload/"
download="https://sourceforge.net/projects/nload/files/nload/$version/nload-$version.tar.gz"
desc="Text-mode network traffic and bandwidth monitor"
requires="gcc-libs netbsd-curses"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
./configure \
--prefix= \
$builddist
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
7de50c46eb8f74a23d247fa8331e20a38c51672f945c2f98a0ba3be5ab162397fcd547fc020baac7281b1a0ddcded53b20c4d2e8ecc5daa73da46f625c69cd7b nload-0.7.4.tar.lz
"

View file

@ -1,3 +0,0 @@
# HPLIP backend homepage: http://hplip.sf.net/
# Uncomment the following line if hplip is installed:
hpaio

View file

@ -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...
}
for file in etc/sane.d/*.new ; do
config $file
done

View file

@ -1,61 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=sane-backends
version=1.0.31
build=1sml
homepage="http://www.sane-project.org/"
download="https://gitlab.com/sane-project/backends/uploads/8bf1cae2e1803aefab9e5331550e5d5d/sane-backends-$version.tar.gz"
desc="Tools and libraries to access data from image-scanning devices"
requires="cairo curl glib libxml2 libpng libnl libjpeg-turbo openssl python3"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
applypatch $srcdir/sane-frontends-1.0.14-sane_cap_always_settable.diff
}
build() {
./configure \
--prefix= \
--sbindir=/bin \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-locking \
--with-group=scanner \
--with-usb \
--without-api-spec
make
make install DESTDIR=$pkg
cp COPYING LICENSE $pkgdocs/
install -Dm 644 tools/sane-backends.pc $pkg/lib/pkgconfig/sane-backends.pc
# Fix wrong permissions
chown -R root:root $pkg/var
chmod 755 $pkg/var
chmod 1777 $pkg/var/lock
chown root:scanner $pkg/var/lock/sane
chmod 775 $pkg/var/lock/sane
cp $srcdir/dll.conf.additions $pkg/etc/sane.d/dll.conf
# Move config files:
( cd $pkg/etc/sane.d
for file in *.conf ; do
mv $file ${file}.new
done
)
mkfinalpkg
}
sha512sums="
c700cce538cbc953ceebf64264506ee56fff7d090d74a2fa8b9f47d22596ea10a70dc4084644c979b908d46426c2034a4c28f8af034179fcbcb776ed31302436 sane-backends-1.0.31.tar.lz
4fc80e093c312b8c0ee020cdddb12667a383dbefd445fac41f9a34be25e9c4f5f8d1e35fe60b621f717fd7eb46ccff31dd2fa06c02f77bdc67ece5820bdad09f sane-frontends-1.0.14-sane_cap_always_settable.diff
"

View file

@ -1,11 +0,0 @@
diff -Nur sane-backends-1.0.20.orig/include/sane/sane.h sane-backends-1.0.20/include/sane/sane.h
--- sane-backends-1.0.20.orig/include/sane/sane.h 2009-04-23 14:59:23.000000000 -0500
+++ sane-backends-1.0.20/include/sane/sane.h 2010-01-19 18:24:29.954762582 -0600
@@ -115,6 +115,7 @@
#define SANE_CAP_AUTOMATIC (1 << 4)
#define SANE_CAP_INACTIVE (1 << 5)
#define SANE_CAP_ADVANCED (1 << 6)
+#define SANE_CAP_ALWAYS_SETTABLE (1 << 7)
#define SANE_OPTION_IS_ACTIVE(cap) (((cap) & SANE_CAP_INACTIVE) == 0)
#define SANE_OPTION_IS_SETTABLE(cap) (((cap) & SANE_CAP_SOFT_SELECT) != 0)

View file

@ -1,36 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=sane-frontends
version=1.0.14
build=1sml
homepage="http://www.sane-project.org"
download="https://gitlab.com/sane-project/frontends/uploads/14e5c5a9205b10bd3df04501852eab28/sane-frontends-$version.tar.gz"
desc="Frontend for the SANE image scanning library"
requires="sane-backends"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
./configure \
--prefix= \
--sysconfdir=/etc \
--mandir=/share/man \
$builddist
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
07aefc5339ea4b069ba9966b59f9338007502cf0990912faa6d61eea6ac1fb9126e7274cff1eff936c0d6695f142bf2a86df56adc7008af38a07adcc45f433b5 sane-frontends-1.0.14.tar.lz
"

View file

@ -1,28 +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...
}
preserve_perms() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ -e $OLD ]; then
cp -a $OLD ${NEW}.incoming
cat $NEW > ${NEW}.incoming
mv ${NEW}.incoming $NEW
fi
config $NEW
}
preserve_perms etc/rc.d/rc.sms3.new
#chgrp -R dialout /var/spool/sms
#chmod -R g+rw /var/spool/sms

View file

@ -1,132 +0,0 @@
diff -Naur a/Makefile b/Makefile
--- a/Makefile 2007-04-22 11:42:22.000000000 +0000
+++ b/Makefile 2017-08-10 22:14:15.011099622 +0000
@@ -2,7 +2,7 @@
# If you change destination of executables, remember to change
# startup script (init.d/sms3) too.
-BINDIR=/usr/local/bin
+BINDIR=/usr/bin
VERSION=$(shell grep package_version src/version.h | cut -f2)
diff -Naur a/install.sh b/install.sh
--- a/install.sh 2007-04-22 11:43:17.000000000 +0000
+++ b/install.sh 2017-08-10 22:18:11.561100240 +0000
@@ -3,9 +3,11 @@
BINDIR=$1
if [ -z "$BINDIR" ]; then
- BINDIR=/usr/local/bin
+ BINDIR=/usr/bin
fi
+SBINDIR=/usr/sbin
+
makepath()
{
p="$1"
@@ -33,10 +35,10 @@
{
if [ -f $2 ]; then
echo " Skipped $2, file already exists"
- else
+ else
echo " $2"
cp $1 $2
- fi
+ fi
}
forcecopy()
@@ -64,58 +66,39 @@
echo " Skipped $1, directory already exists"
else
echo " Creating directory $1"
- mkdir $1
+ mkdir -p $1
fi
}
echo ""
-if [ ! -f src/smsd ] && [ ! -f src/smsd.exe ]; then
+if [ ! -f src/smsd ] && [ ! -f src/smsd.exe ]; then
echo 'Please run "make -s install" instead.'
exit 1
fi
echo "Installing binary program files"
-makepath $BINDIR
-if [ -f src/smsd.exe ]; then
- forcecopy src/smsd.exe $BINDIR/smsd.exe
-else
- forcecopy src/smsd $BINDIR/smsd
-fi
-delete $BINDIR/getsms
-delete $BINDIR/putsms
+mkdir -p $DESTDIR/$BINDIR
+mkdir -p $DESTDIR/$SBINDIR
+forcecopy src/smsd $DESTDIR/$SBINDIR/smsd
echo "Installing some scripts"
-copy scripts/sendsms $BINDIR/sendsms
-copy scripts/sms2html $BINDIR/sms2html
-copy scripts/sms2unicode $BINDIR/sms2unicode
-copy scripts/unicode2sms $BINDIR/unicode2sms
-
-echo "Installing config file"
-copy examples/smsd.conf.easy /etc/smsd.conf
+copy scripts/sendsms $DESTDIR/$BINDIR/sendsms
+copy scripts/sms2html $DESTDIR/$BINDIR/sms2html
+copy scripts/sms2unicode $DESTDIR/$BINDIR/sms2unicode
+copy scripts/unicode2sms $DESTDIR/$BINDIR/unicode2sms
echo "Creating minimum spool directories"
-makedir /var/spool
-makedir /var/spool/sms
-makedir /var/spool/sms/incoming
-makedir /var/spool/sms/outgoing
-makedir /var/spool/sms/checked
+makedir $DESTDIR/var/spool
+makedir $DESTDIR/var/spool/sms
+makedir $DESTDIR/var/spool/sms/incoming
+makedir $DESTDIR/var/spool/sms/outgoing
+makedir $DESTDIR/var/spool/sms/checked
echo "Installing start-script"
-SMS3SCRIPT=scripts/sms3
-if [ -d /etc/init.d ]; then
- copy scripts/sms3 /etc/init.d/sms3
- SMS3SCRIPT=/etc/init.d/sms3
-elif [ -d /sbin/init.d ]; then
- copy scripts/sms3 /sbin/init.d/sms3
- SMS3SCRIPT=/sbin/init.d/sms3
-else
- echo " I do not know where to copy scripts/sms3. Please find out yourself."
-fi
+makedir $DESTDIR/etc/rc.d
+copy scripts/sms3 $DESTDIR/etc/rc.d/rc.sms3.new
+SMS3SCRIPT=/etc/rc.d/rc.sms3
echo ""
echo "Example script files are not installed automatically."
echo 'Please dont forget to edit /etc/smsd.conf.'
-if [ "$BINDIR" != "/usr/local/bin" ]; then
- echo "You have installed executables to $BINDIR,"
- echo "you should manually edit $SMS3SCRIPT script."
-fi
diff -Naur a/scripts/sms3 b/scripts/sms3
--- a/scripts/sms3 2010-05-04 09:21:44.000000000 +0000
+++ b/scripts/sms3 2017-08-10 21:58:41.968097184 +0000
@@ -24,9 +24,9 @@
# Logfile can also be defined in here:
LOGFILE="/var/log/smsd.log"
-DAEMON=/usr/local/bin/smsd
+DAEMON=/usr/sbin/smsd
# A program which turns power off for couple of seconds:
-RESETMODEMS=/usr/local/bin/smsd_resetmodems
+RESETMODEMS=/usr/bin/smsd_resetmodems
NAME=smsd
PSOPT="-e"
ECHO=echo

View file

@ -1,47 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=smstools
version=3.1.21
build=1sml
homepage="https://smstools3.kekekasvi.com"
download="https://smstools3.kekekasvi.com/packages/smstools3-$version.tar.gz"
desc="SMS gateway software for sending and receiving SMSs from GSM modems and mobile phones"
requires="musl"
prepbuilddir() {
mkandenterbuilddir
rm -rf "smstools3"
tar xf $srcdir/smstools3-$version.tar.?z
cd "smstools3"
fixbuilddirpermissions
applypatch $srcdir/fixups2.diff
}
build() {
cd src
make CC="$CC -static"
cp ../LICENSE $pkgdocs
# Add sample config files
mkdir -p $pkg/etc/smsd
cat ../examples/smsd.conf.easy > $pkg/etc/smsd/smsd.conf.easy
cat ../examples/smsd.conf.full > $pkg/etc/smsd/smsd.conf.full
cat ../examples/smsd.conf.net > $pkg/etc/smsd/smsd.conf.net
cat ../examples/smsd.conf.non-root > $pkg/etc/smsd/smsd.conf.non-root
install -Dm 755 smsd $pkg/bin/smsd
# Fix some ownership/permissions
mkdir -p $pkg/var/spool/sms
chown -R root:dialout $pkg/var/spool/sms
chmod -R g+rw $pkg/var/spool/sms
mkfinalpkg
}
sha512sums="
ef6f328203228d63a14abf4ae2e67a4bf3e2d14ae19a2dc538f866b27a84d96cedeb9ce9d39ab45b577d2242230e073a5dc26853253e65c97ba861cc3cbd712d smstools3-3.1.21.tar.lz
12235c9d716e3875b9a1b953dcfc0aa6a41dfa05ed5aa7556fd2dbb6cceffd464792fa6385ecf11f094e46e05b7162e5a6a63320fbfe7ff9e734673098589607 fixups2.diff
"

View file

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

View file

@ -1,33 +0,0 @@
# Maintainer: PktSurf <smlinux@pktsurf.in>
app=uget
version=2.2.3
build=1sml
homepage="https://ugetdm.com/"
download="https://sourceforge.net/projects/urlget/files/uget%20%28stable%29/$version/uget-$version-1.tar.gz"
desc="Download manager written in GTK+3"
requires="intltool curl gstreamer gtk3 libnotify"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
./configure \
--prefix=
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
7b3d717babc010864765221160d5c2d1cd9f524df8f64be840c277a42086c3ab8bba466cdbcd3d8a1873c9a6129724feeb25c9249f26c209cbc57342c9429c97 uget-2.2.3.tar.lz
"