Reformmated most ports.

This commit is contained in:
Mid Favila 2021-05-11 01:07:37 -03:00
parent 232926292e
commit 2e53852818
128 changed files with 531 additions and 497 deletions

View File

@ -1,6 +1,9 @@
#!/bin/sh -e
# Fix a compile-time bug.
export CFLAGS="$CFLAGS -fcommon"
# Set what utils to make.
cp makefile.mid ./Makefile
make PREFIX=/usr
@ -8,5 +11,6 @@ make PREFIX=/usr DESTDIR="$1" install
# Prevent 9yacc from actually installing
for file in /usr/bin/yacc /usr/yacc /usr/share/man/man1/yacc.1
do rm -rf "$1$file"
do
rm -rf "$1$file"
done

View File

@ -14,7 +14,8 @@ cd ..
install -Dm755 style.css "$1/usr/share/rox/style.css"
for stuff in Help Messages Options.xml ROX images .DirIcon
do mv $stuff "$1/usr/share/rox/$stuff"
do
mv $stuff "$1/usr/share/rox/$stuff"
done
install -Dm755 ../rox.1 "$1/usr/share/man/man1"

View File

@ -1,11 +1,11 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--disable-nls \
--disable-dependency-tracking \
--disable-enable-silent-rules \
--disable-option-checking
./configure \
--prefix=/usr \
--disable-nls \
--disable-dependency-tracking \
--disable-enable-silent-rules \
--disable-option-checking
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,8 +1,8 @@
#!/bin/sh -e
./configure \
./configure \
--disable-perl-plugin \
--disable-gnutls \
--disable-gnutls \
--prefix=/usr
make

View File

@ -3,11 +3,11 @@
export DESTDIR="$1"
export CFLAGS="$CFLAGS -D_POSIX_C_SOURCE=200809L"
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DCMAKE_BUILD_TYPE=Release \
-DUSE_XPM=OFF
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DCMAKE_BUILD_TYPE=Release \
-DUSE_XPM=OFF
cmake --build build
cmake --install build

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,10 +1,10 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--mandir=/usr/share/man \
--enable-compat-symlinks
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--mandir=/usr/share/man \
--enable-compat-symlinks
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
install -Dm755 dtach "$1/usr/bin/dtach"

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./autogen.sh \
--prefix=/usr
./autogen.sh \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,11 +1,11 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--libexecdir=/usr/bin \
--localstatedir=/var \
--enable-monitor \
--disable-dbus
./configure \
--prefix=/usr \
--libexecdir=/usr/bin \
--localstatedir=/var \
--enable-monitor \
--disable-dbus
make
make DESTDIR="$1" install

View File

@ -1,9 +1,7 @@
#!/bin/sh -e
#patch -Np1 -i fixes.patch
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make

View File

@ -1,27 +1,27 @@
#!/bin/sh -e
./configure \
--cc="${CC:-cc}" \
--cxx="${CXX:-c++}" \
--prefix=/usr \
--enable-shared \
--enable-gpl \
--enable-version3 \
--enable-nonfree \
--enable-openssl \
--enable-libass \
--enable-libmp3lame \
--enable-libopus \
--enable-libvorbis \
--enable-libvpx \
--enable-libx265 \
--enable-libxvid \
--enable-libdrm \
--x86asmexe=nasm \
--disable-debug \
--enable-libtheora \
--disable-libxml2 \
--enable-ffplay
./configure \
--cc="${CC:-cc}" \
--cxx="${CXX:-c++}" \
--prefix=/usr \
--enable-shared \
--enable-gpl \
--enable-version3 \
--enable-nonfree \
--enable-openssl \
--enable-libass \
--enable-libmp3lame \
--enable-libopus \
--enable-libvorbis \
--enable-libvpx \
--enable-libx265 \
--enable-libxvid \
--enable-libdrm \
--x86asmexe=nasm \
--disable-debug \
--enable-libtheora \
--disable-libxml2 \
--enable-ffplay
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,26 +1,13 @@
#!/bin/sh -e
patch -p1 < 01-TranslucentMenus.patch
patch -p1 < 02-ColourBorders.patch
patch -p1 < 03-ResizeOutlineThin.patch
patch -p1 < 04-Conditionals.patch
patch -p1 < 05-FlatSeparators.patch
patch -p1 < 06-BorderUnderTitle.patch
patch -p1 < 07-InactiveFont.patch
patch -p1 < 08-FluxRoundedCorners.patch
patch -p1 < 09-TopBorder.patch
patch -p1 < 10-ButtonWidth.patch
patch -p1 < 11-MultiBorder.patch
patch -p1 < 12-FvwmButtonsTips.patch
patch -p1 < 13-FvwmIconMan.patch
patch -p1 < 14-Hover.patch
patch -p1 < 15-FirstItemUnderPointer.patch
patch -p1 < 16-ThinGeometryProxy.patch
#patch -p1 < 17-MiniIconSize.patch
for patch in 01-TranslucentMenus.patch 02-ColourBorders.patch 03-ResizeOutlineThin.patch 04-Conditionals.patch 05-FlatSeparators.patch 06-BorderUnderTitle.patch 07-InactiveFont.patch 08-FluxRoundedCorners.patch 09-TopBorder.patch 10-ButtonWidth.patch 11-MultiBorder.patch 12-FvwmButtonsTips.patch 13-FvwmIconMan.patch 14-Hover.patch 15-FirstItemUnderPointer.patch 16-ThinGeometryProxy.patch
do
patch -p1 < $patch
done
./configure \
--prefix=/usr \
--enable-mandoc
./configure \
--prefix=/usr \
--enable-mandoc
make
make DESTDIR="$1" install

View File

@ -1,6 +1,7 @@
#!/bin/sh -e
./configure --prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -2,18 +2,21 @@
# Pull asciidoctor with the best tool available
if [ -x /bin/axel ]
then axel --output=tmp.tgz https://github.com/asciidoctor/asciidoctor/archive/refs/tags/v2.0.14.tar.gz
else curl --output tmp.tgz https://github.com/asciidoctor/asciidoctor/archive/refs/tags/v2.0.14.tar.gz
then
axel --output=tmp.tgz https://github.com/asciidoctor/asciidoctor/archive/refs/tags/v2.0.14.tar.gz
else
curl --output tmp.tgz https://github.com/asciidoctor/asciidoctor/archive/refs/tags/v2.0.14.tar.gz
fi
# Unpack it and set its bindir into PATH for building FVWM docs
tar xf tmp.tgz
export PATH="$PWD/asciidoctor-2.0.14/bin/:$PATH"
./autogen.sh
./configure \
--prefix=/usr \
--enable-mandoc
ls
./configure \
--prefix=/usr \
--enable-mandoc
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./autogen.sh \
--prefix=/usr
./autogen.sh \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -11,10 +11,10 @@ export PATH=$PATH:$PWD
mkdir _build
cd _build
../configure \
--prefix=/usr \
--without-installed-readline \
--disable-nls
../configure \
--prefix=/usr \
--without-installed-readline \
--disable-nls
make
make DESTDIR="$1" install

View File

@ -1,8 +1,8 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--enable-libgdbm-compat \
./configure \
--prefix=/usr \
--enable-libgdbm-compat \
make
make DESTDIR="$1" install

View File

@ -1,9 +1,9 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--enable-gtk2 \
--disable-vte
./configure \
--prefix=/usr \
--enable-gtk2 \
--disable-vte
make
make DESTDIR="$1" install

View File

@ -1,11 +1,11 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--disable-static \
--enable-fast-install \
--disable-dependency-tracking \
--disable-nls
./configure \
--prefix=/usr \
--disable-static \
--enable-fast-install \
--disable-dependency-tracking \
--disable-nls
make
make DESTDIR="$1" install

View File

@ -6,13 +6,13 @@ export CFLAGS="$CFLAGS -UGDK_PIXBUF_DISABLE_DEPRECATED"
sed -i 's/modules demos tests/modules/' Makefile.am Makefile.in
sed -i 's/docs m4macros/m4macros/' Makefile.am Makefile.in
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-debug=no \
--disable-gtk-doc \
--with-xinput=yes
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-debug=no \
--disable-gtk-doc \
--with-xinput=yes
make
make DESTDIR="$1" install

View File

@ -1,6 +1,7 @@
#!/bin/sh -e
./configure --prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,6 +1,7 @@
#!/bin/sh -e
./configure --prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,8 +1,8 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--enable-SIGCHLD-fallback
./configure \
--prefix=/usr \
--enable-SIGCHLD-fallback
make
make DESTDIR="$1" install

View File

@ -1,6 +1,7 @@
#!/bin/sh -e
./autogen.sh --prefix=/usr
./autogen.sh \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,5 +1,6 @@
#!/bin/sh -e
# Fix an issue with reaping.
sed -i 's/signal(SIGINT, handler);/signal(SIGINT, handler);\nsignal(SIGCHLD, handler);/' hummingbird.c
make

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./autogen.sh \
--prefix=/usr
./autogen.sh \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,18 +1,18 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--libexecdir=/usr/sbin \
--localstatedir=/var \
--disable-logger \
--disable-rcp \
--disable-rexec \
--disable-rlogin \
--disable-rsh \
--disable-servers \
--disable-ping6 \
--disable-dnsdomainname \
--disable-hostname
--prefix=/usr \
--libexecdir=/usr/sbin \
--localstatedir=/var \
--disable-logger \
--disable-rcp \
--disable-rexec \
--disable-rlogin \
--disable-rsh \
--disable-servers \
--disable-ping6 \
--disable-dnsdomainname \
--disable-hostname
make
make DESTDIR="$1" install

View File

@ -1,6 +1,7 @@
#!/bin/sh -e
./configure --prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./autogen.sh \
--prefix=/usr
./autogen.sh \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,11 +1,7 @@
#!/bin/sh -e
./autogen.sh \
--prefix=/usr
./autogen.sh \
--prefix=/usr
make
make DESTDIR="$1" install
#for lib in "$1/usr/lib/libXaw.7.so" "$1/usr/lib/libXaw.so" "$1/usr/lib/libXaw.so.6" "$1/usr/lib/libXaw.so.7" "$1/usr/lib/libXaw6.so" "$1/usr/lib/libXaw6.so.6" "$1/usr/lib/libXaw6.so.6.0.0" "$1/usr/lib/libXaw6.so.6.0.0.1" "$1/usr/lib/libXaw7.so "$1/usr/lib/libXaw7.so.7" "$1/usr/lib/libXaw7.so.7.0.0"
#do ln -s "$1/usr/lib/libXaw3d.so" "$lib"
#done

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,6 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -2,8 +2,8 @@
./autogen.sh
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,15 +1,13 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--without-nettle \
--without-openssl \
--without-xml2 \
--without-expat
./configure \
--prefix=/usr \
--without-nettle \
--without-openssl \
--without-xml2 \
--without-expat
make
make DESTDIR="$1" install
ln -s bsdcat "$1/usr/bin/cat"
ln -s bsdcpio "$1/usr/bin/cpio"
ln -s bsdtar "$1/usr/bin/tar"

View File

@ -1,17 +1,17 @@
#!/bin/sh -e
cmake . \
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_BSON=ON \
-DENABLE_CLIENT_SIDE_ENCRYPTION=OFF \
-DENABLE_EXAMPLES=OFF \
-DENABLE_ICU=OFF \
-DENABLE_MONGOC=OFF \
-DENABLE_MONGODB_AWS_AUTH=OFF \
-DENABLE_SASL=OFF \
-DENABLE_TESTS=OFF \
-DENABLE_UNINSTALL=OFF \
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_BSON=ON \
-DENABLE_CLIENT_SIDE_ENCRYPTION=OFF \
-DENABLE_EXAMPLES=OFF \
-DENABLE_ICU=OFF \
-DENABLE_MONGOC=OFF \
-DENABLE_MONGODB_AWS_AUTH=OFF \
-DENABLE_SASL=OFF \
-DENABLE_TESTS=OFF \
-DENABLE_UNINSTALL=OFF \
-DCMAKE_BUILD_TYPE=Release
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./autogen.sh \
--prefix=/usr
./autogen.sh \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,12 +1,12 @@
#!/bin/sh -e
# We need to run the included script, otherwise the build
# will totally fail.
# will fail.
./release.sh
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -2,9 +2,9 @@
patch -p1 < 01-links-tabbed.patch
./configure \
--prefix=/usr \
--enable-graphics
./configure \
--prefix=/usr \
--enable-graphics
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,8 +1,8 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--enable-gui
./configure \
--prefix=/usr \
--enable-gui
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
# Change the SBINDIR and BINDIR to /usr/bin to keep kiss happy
sed -i 's/\/bin/\/usr\/bin/' Makefile
sed -i 's/\/bin/\/usr\/bin/' Makefile
sed -i 's/\/sbin/\/usr\/bin/' Makefile
ssu ./configure.sh config.in

View File

@ -20,16 +20,16 @@ for p in html-parser html-tagset; do (
# Build standalone xxd to remove VIM requirement
cc xxd/xxd.c -o xxd/xxd
make \
LIBDIR=lib \
make \
LIBDIR=lib \
INCLUDEDIR=include \
PREFIX=/usr \
PREFIX=/usr \
TARGET=gtk2
make \
LIBDIR=lib \
make \
LIBDIR=lib \
INCLUDEDIR=include \
PREFIX=/usr \
TARGET=gtk2\
DESTDIR="$1" \
PREFIX=/usr \
TARGET=gtk2 \
DESTDIR="$1" \
install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,8 +1,8 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--without-zenmap
./configure \
--prefix=/usr \
--without-zenmap
make
make DESTDIR="$1" install

View File

@ -4,7 +4,7 @@ autoupdate
./autogen.sh
./configure \
./configure \
--prefix=/usr \
--enable-tls

View File

@ -1,6 +1,6 @@
#!/bin/sh -e
./configure \
./configure \
--prefix=/usr
make

View File

@ -1,6 +1,6 @@
#!/bin/sh -e
./configure \
./configure \
--prefix=/usr
make

View File

@ -1,11 +1,11 @@
#!/bin/sh -e
# We have an alternative system, use "ksh" and "sh" as binary names.
./configure \
--prefix=/usr \
--bindir=/usr/bin \
# We have an alternative system, use "ksh" and "sh" as binary names.
./configure \
--prefix=/usr \
--bindir=/usr/bin \
--mandir=/usr/share/man \
--enable-ksh \
--enable-ksh \
--enable-sh
make

View File

@ -1,6 +1,7 @@
#!/bin/sh -e
./configure --prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -2,8 +2,8 @@
export CFLAGS="$CFLAGS -static"
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,20 +1,24 @@
#!/bin/sh -e
mk() {
make \
CC="${CC:-cc}" \
OPT="$CFLAGS -fPIC" \
ZLIB=yes \
PREFIX=/usr \
SBINDIR=/usr/bin \
SHAREDIR=/usr/share/hwdata \
"$@"
mk()
{
make \
CC="${CC:-cc}" \
OPT="$CFLAGS -fPIC" \
ZLIB=yes \
PREFIX=/usr \
SBINDIR=/usr/bin \
SHAREDIR=/usr/share/hwdata \
"$@"
}
for shared in yes no; do (
cd "$shared"
for shared in yes no
do
(
cd "$shared"
mk SHARED="$shared"
mk SHARED="$shared" DESTDIR="$1" install install-lib
) done
mk SHARED="$shared"
mk SHARED="$shared" DESTDIR="$1" install install-lib
)
done

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -2,24 +2,24 @@
ls
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--disable-gstreamer \
--disable-avahi \
--disable-gtkspell \
--disable-meanwhile \
--disable-idn \
--disable-nm \
--disable-tcl \
--disable-dbus \
--disable-screensaver \
--disable-perl \
--disable-sm \
--disable-vv \
--disable-dependency-tracking \
--disable-nls \
--with-dynamic-prpls=irc
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--disable-gstreamer \
--disable-avahi \
--disable-gtkspell \
--disable-meanwhile \
--disable-idn \
--disable-nm \
--disable-tcl \
--disable-dbus \
--disable-screensaver \
--disable-perl \
--disable-sm \
--disable-vv \
--disable-dependency-tracking \
--disable-nls \
--with-dynamic-prpls=irc
make
make DESTDIR="$1" install

View File

@ -2,9 +2,9 @@
export DESTDIR="$1"
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DFLAG=1 \
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DFLAG=1 \
-DENABLE_LIBOPENJPEG=unmaintained
cmake --build build

View File

@ -1,8 +1,8 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--sbindir=/usr/bin
./configure \
--prefix=/usr \
--sbindir=/usr/bin
# Fix includes for w.c
sed -i 's|HAVE_UTMPX_H|NO|g' w.c
@ -14,8 +14,10 @@ make CCLD="${CC:-cc} -all-static"
make DESTDIR="$1" install
# Prevent redundant junk from getting in.
# Deal with the ugliness. It's 5AM and I want to sleep.
rm "$1/usr/bin/sysctl"
rm "$1/usr/bin/uptime"
for file in sysctl uptime bc dc
do
rm "$1/usr/bin/$file"
done
rm -rf "$1/usr/share"

View File

@ -2,7 +2,7 @@
./autogen.sh
./configure \
./configure \
--prefix=/usr
make

View File

@ -3,4 +3,4 @@
DESTDIR="$1"
make
install -Dm 0644 libdiscord.so $DESTDIR/usr/lib/purple-2/libdiscord.so
install -Dm 0644 libdiscord.so "$DESTDIR/usr/lib/purple-2/libdiscord.so"

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,26 +1,25 @@
#!/bin/sh -e
patch -p1 < rxvt-unicode-kerning.patch
patch -p1 < gentables.patch
for file in rxvt-unicode-kerning.patch gentables.patch
do
patch -p1 < $file
./configure \
--prefix=/usr \
--with-terminfo=/usr/share/terminfo \
--enable-256-color \
--enable-font-styles \
--enable-xim \
--enable-keepscrolling \
--enable-selectionscrolling \
--enable-smart-resize \
--enable-transparency \
--disable-frills \
--disable-perl \
--enable-mousewheel \
--enable-text-blink \
--enable-fading \
--enable-unicode3 \
--disable-utmp \
--disable-wtmp \
--disable-lastlog
./configure \
--prefix=/usr \
--with-terminfo=/usr/share/terminfo \
--enable-256-color \
--enable-font-styles \
--enable-xim \
--enable-keepscrolling \
--enable-selectionscrolling \
--enable-smart-resize \
--disable-frills \
--disable-perl \
--enable-mousewheel \
--enable-text-blink \
--enable-fading \
--disable-utmp \
--disable-wtmp \
--disable-lastlog
make DESTDIR="$1" install

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,8 +1,8 @@
#!/bin/sh -e
meson build \
-Dprefix="$1/usr" \
-Dmandir="$1/usr/share/man/"
meson build \
-Dprefix="$1/usr" \
-Dmandir="$1/usr/share/man/"
cd build
ninja

View File

@ -3,9 +3,9 @@
git submodule update --init
autoreconf
./configure \
--prefix=/usr \
--libdir=/usr/lib
./configure \
--prefix=/usr \
--libdir=/usr/lib
make
make DESTDIR="$1" install

View File

@ -2,8 +2,8 @@
export CFLAGS="$CFLAGS -static"
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,18 +1,14 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--bindir=/usr/bin \
--sbindir=/usr/bin \
--libdir=/usr/lib \
--mandir=/usr/share/man \
--sysconfdir=/etc \
--disable-man \
--disable-account-tools-setuid \
--with-group-name-max-length=32 \
--without-audit \
--without-selinux \
--without-libpam
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--sysconfdir=/etc \
--disable-account-tools-setuid \
--with-group-name-max-length=32 \
--without-audit \
--without-selinux \
--without-libpam
make
make DESTDIR="$1" install

View File

@ -6,9 +6,10 @@
# Grab the package version.
read -r version _ < "${0%/*}/version"
mkdir -p "$1/usr/share/mime/packages" \
"$1/usr/share/pkgconfig" \
"$1/usr/bin"
mkdir -p \
"$1/usr/share/mime/packages" \
"$1/usr/share/pkgconfig" \
"$1/usr/bin"
# Install with only English support.
sed -e 's/_comment/comment/g' freedesktop.org.xml.in \

View File

@ -2,8 +2,8 @@
./autogen.sh
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,9 +1,9 @@
#!/bin/sh -e
make
make \
PREFIX=/usr \
DESTDIR="$1" \
BINOWN="$(id -u)" \
BINGRP="$(id -g)" \
install
make \
PREFIX=/usr \
DESTDIR="$1" \
BINOWN="$(id -u)" \
BINGRP="$(id -g)" \
install

View File

@ -1,8 +1,7 @@
#!/bin/sh -e
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,9 +1,9 @@
#!/bin/sh -e
./autogen.sh
./autogen.sh
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,7 +1,9 @@
#!/bin/sh -e
patch -p1 < 0018-prevent-pow-optimization.patch
patch -p1 < fcommon.patch
for file in 0018-prevent-pow-optimization.patch fcommon.patch
do
patch -p1 < $file
done
# Fix missing <sys/sysmacros.h> include.
sed -i 's@vfs.h>@vfs.h>\n#include <sys/sysmacros.h>@' extlinux/main.c
@ -9,13 +11,13 @@ sed -i 's@vfs.h>@vfs.h>\n#include <sys/sysmacros.h>@' extlinux/main.c
# Disable debugging and development "stuff".
: > mk/devel.mk
make -j1 \
PYTHON=python \
make -j1 \
PYTHON=python \
bios efi64 installer
make -j1 \
INSTALLROOT="$1" \
MANDIR=/usr/share/man \
SBINDIR=/usr/bin \
make -j1 \
INSTALLROOT="$1" \
MANDIR=/usr/share/man \
SBINDIR=/usr/bin \
AUXDIR=/usr/lib/syslinux \
bios efi64 install

View File

@ -1,9 +1,7 @@
#!/bin/sh -e
# Adding this patch forces the libXft
# dependency, but the upstream (git) already
# uses it. It is also much better than the ancient
# logical X font description.
# Adding this patch forces the libXft dependency, but the upstream (git) already
# uses it. It is also much better than the ancient# logical X font description.
patch -p1 < tabbed-0.6-xft.diff
make

View File

@ -4,12 +4,12 @@ IFS=. read -r maj min _ < "${0%/*}/version"
rm -rf pkgs/sqlite3*
unix/configure \
--prefix=/usr \
--mandir=/usr/share/man \
--enable-threads \
--enable-64bit \
--with-system-sqlite
unix/configure \
--prefix=/usr \
--mandir=/usr/share/man \
--enable-threads \
--enable-64bit \
--with-system-sqlite
make
make INSTALL_ROOT="$1" install install-private-headers

View File

@ -1,8 +1,8 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--sbindir=/usr/bin
./configure \
--prefix=/usr \
--sbindir=/usr/bin
make
make DESTDIR="$1" install

View File

@ -1,9 +1,10 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--mandir=/usr
./configure \
--prefix=/usr \
--mandir=/usr
make
install -Dm755 tcptrace "$1/usr/bin/tcptrace"
install -Dm644 tcptrace.man "$1/usr/share/man/man1/tcptrace.1"

View File

@ -4,8 +4,8 @@ git init
git submodule update --recursive
./configure --prefix=/usr \
--disable-libwebp \
--disable-translation
--disable-libwebp \
--disable-translation
make
make DESTDIR="$1" install

View File

@ -4,4 +4,5 @@ sed -i s/ncursesw\\/ncurses.h/ncurses.h/ Makefile
make
make DESTDIR="$1" install all
install -Dm 755 tine.1 "$1/usr/share/man/man1/tine.1"

View File

@ -2,12 +2,12 @@
IFS=. read -r maj min _ < "${0%/*}/version"
unix/configure \
--prefix=/usr \
--mandir=/usr/share/man \
--enable-threads \
--disable-rpath \
--enable-64bit
unix/configure \
--prefix=/usr \
--mandir=/usr/share/man \
--enable-threads \
--disable-rpath \
--enable-64bit
make
make INSTALL_ROOT="$1" install install-private-headers
@ -16,7 +16,8 @@ ln -s "/usr/bin/wish${maj}.${min}" "$1/usr/bin/wish"
ln -s "/usr/lib/libtk${maj}.${min}.so" "$1/usr/lib/libtk.so"
# Finish installing private headers.
for dir in compat generic generic/ttk unix; do
install -dm755 "$1/usr/include/tk-private/$dir"
install -m644 -t "$1/usr/include/tk-private/$dir" "$dir/"*.h
for dir in compat generic generic/ttk unix
do
install -dm755 "$1/usr/include/tk-private/$dir"
install -m644 -t "$1/usr/include/tk-private/$dir" "$dir/"*.h
done

View File

@ -2,8 +2,8 @@
cd src/
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -2,20 +2,21 @@
cp makefile.mid ./Makefile
for patch in *.patch; do
patch -p1 < "$patch"
for patch in *.patch
do
patch -p1 < "$patch"
done
sed -i \
-e "/^CFLAGS/s/=/= $CFLAGS -static/" \
sed -i \
-e "/^CFLAGS/s/=/= $CFLAGS -static/" \
-e "/^LDFLAGS/s/=/= $LDFLAGS -static/" \
config.mk
# Prevent the following binaries from building
for nobin in hostname
do sed -i s/hostname// Makefile
do
sed -i s/hostname// Makefile
done
make
make DESTDIR="$1" PREFIX=/usr install

View File

@ -2,8 +2,8 @@
./autogen.sh
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,19 +1,16 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--localstatedir=/var \
--bindir=/usr/bin \
--sbindir=/usr/bin \
--libdir=/usr/lib \
--enable-libuuid \
--enable-libblkid \
--disable-makeinstall-chown \
--disable-rpath \
--without-udev \
--without-python \
--without-systemd \
--disable-more
./configure \
--prefix=/usr \
--localstatedir=/var \
--enable-libuuid \
--enable-libblkid \
--disable-makeinstall-chown \
--disable-rpath \
--without-udev \
--without-python \
--without-systemd \
--disable-more
make
make DESTDIR="$1" install

View File

@ -2,8 +2,8 @@
autoupdate
./autogen.sh \
--prefix=/usr
./autogen.sh \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -2,8 +2,8 @@
./autogen.sh
./configure \
--prefix=/usr
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

View File

@ -1,5 +1,17 @@
#!/bin/sh -e
printf "
################################################################################
################################################################################
## Achtung! ##
## You should pay attention. We might need ##
## your help with this one, bossman. ##
################################################################################
################################################################################
"
sleep 10
git submodule update --init --recursive
cp doc/mozconfig.example ./.mozconfig
@ -7,6 +19,19 @@ cp doc/mozconfig.example ./.mozconfig
sed -i 's/enable-jack/disable-jack/g' .mozconfig
sed -i 's/$HOME/\/tmp/g' .mozconfig
printf "
################################################################################
################################################################################
## Achtung! ##
## You can edit your browser's mozconfig now. ##
## Please take the time to look over this. ##
################################################################################
################################################################################
"
sleep 10
${EDITOR:-vi} .mozconfig
./mach build
./mach package

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