diff --git a/ports/epic/build b/ports/epic/build index 7fa5349..f772592 100755 --- a/ports/epic/build +++ b/ports/epic/build @@ -1,7 +1,8 @@ #!/bin/sh -e -./configure \ - --prefix=/usr +./configure \ + --prefix=/usr \ + --mandir=/usr/share/man make diff --git a/ports/kiss-mod/checksums b/ports/kiss-mod/checksums index a7b1173..e0e74c2 100644 --- a/ports/kiss-mod/checksums +++ b/ports/kiss-mod/checksums @@ -1,3 +1,3 @@ -0434a9021c7137c0184a49aa0ccae11c84e0106e3aea8b916e2a90a966a31e74 +628feccdedef85f7369d49c850bd494c3b2aa39c07354f1501cb7ce5914765d3 f4a83d29235f1549086da6ea445a363cd8a1874f4ebca073c2d55bb5aca383bc 22da43f0b83244d457e12a82776b053ab0958d3d27c41ad711915ea1cd778811 diff --git a/ports/kiss-mod/sources b/ports/kiss-mod/sources index aeec979..22f3912 100644 --- a/ports/kiss-mod/sources +++ b/ports/kiss-mod/sources @@ -1,3 +1,3 @@ -https://github.com/kiss-community/kiss/archive/5.3.0.tar.gz +https://github.com/kiss-community/kiss/archive/5.3.2.tar.gz https://github.com/kiss-community/website/archive/5fc67c946d2391827273ef3f35ca55ca657f7ea7.tar.gz docs https://github.com/kiss-community/wiki/archive/a7fc18204756dba2f8c5ea1c782d57ec4acdfe49.tar.gz wiki diff --git a/ports/links2-mod/build b/ports/links2-mod/build index e4dbaa1..48dfe67 100755 --- a/ports/links2-mod/build +++ b/ports/links2-mod/build @@ -2,9 +2,10 @@ patch -p1 < 01-links-tabbed.patch -./configure \ - --prefix=/usr \ - --enable-graphics +./configure \ + --prefix=/usr \ + --enable-graphics \ + --mandir=/usr/share/man make make DESTDIR="$1" install diff --git a/ports/links2-mod/q b/ports/links2-mod/q new file mode 100644 index 0000000..48dfe67 --- /dev/null +++ b/ports/links2-mod/q @@ -0,0 +1,11 @@ +#!/bin/sh -e + +patch -p1 < 01-links-tabbed.patch + +./configure \ + --prefix=/usr \ + --enable-graphics \ + --mandir=/usr/share/man + +make +make DESTDIR="$1" install diff --git a/ports/mid-rc/build b/ports/mid-rc/build index 316f989..3fbb235 100755 --- a/ports/mid-rc/build +++ b/ports/mid-rc/build @@ -9,6 +9,9 @@ for file in * if [ $(echo $x | grep -e "\\\\*.sh") ] then install -Dm755 "${file}" "${dest}/fxde/fxde-core/scripts/${file}" + elif [ "${file}" = "xsession" ] + then + install -Dm755 "${file}" "${dest}/../.xsession" else install -Dm755 "${file}" "${dest}/fxde/fxde-core/config/${file}" fi @@ -20,7 +23,7 @@ for file in * do if [ $(echo ${file}|grep -e "\\\\*yash\\\\*") ] then - install -Dm644 "${file}" "${dest}/yash/${file}" + install -Dm644 "${file}" "${dest}/yash/conf/${file}" else install -Dm644 "${file}" "${dest}/${file}" fi diff --git a/ports/s9/build b/ports/s9/build index 3d4a140..de574ae 100755 --- a/ports/s9/build +++ b/ports/s9/build @@ -9,7 +9,11 @@ sed 6a"DESTDIR= $1" Makefile > tmp.m mv tmp.m Makefile make all install -#For some reason the generated image doesn't work. -rm $(find "$1" -name s9.image) -printf "Please remember to set your S9FES_LIBRARY_PATH to /usr/share/s9fes!" +#For some reason the generated image doesn't work. +rm "$1/usr/share/s9fes/s9.image" + +#Fix the location of the manual +mv "$1/usr/man" "$1/usr/share/man/" + +printf "\nPlease remember to set your S9FES_LIBRARY_PATH to /usr/share/s9fes!\n" diff --git a/ports/sbase-git-mod/checksums b/ports/sbase-git-mod/checksums index 97df82c..f5a46a0 100644 --- a/ports/sbase-git-mod/checksums +++ b/ports/sbase-git-mod/checksums @@ -1 +1 @@ -1614c7e91b27a3c4386893c3ad72cce95872695251f96d18d0d3b30e944c5a12 +cad76f664e1af74c8a102cc9742cd8a130abc89b7a44da71e8cb1023c0c4da5c diff --git a/ports/sbase-git-mod/files/makefile.mid b/ports/sbase-git-mod/files/makefile.mid index e0a0ba8..15dde45 100644 --- a/ports/sbase-git-mod/files/makefile.mid +++ b/ports/sbase-git-mod/files/makefile.mid @@ -94,6 +94,7 @@ BIN =\ chgrp \ cksum\ cols\ + sed\ comm\ cp\ cron\ diff --git a/ports/xdialog/build b/ports/xdialog/build index f18c65a..79def8c 100755 --- a/ports/xdialog/build +++ b/ports/xdialog/build @@ -1,8 +1,9 @@ #!/bin/sh -e ./configure \ - --with-gtk2 \ - --prefix=/usr + --with-gtk2 \ + --prefix=/usr \ + --mandir=/usr/share/man make make DESTDIR="$1" install