Fixed prefix, CFLAGS and discarded --docdir build options in several packages in net
Updated net buildlist file
This commit is contained in:
parent
233f2d68a8
commit
4fffbee77e
66 changed files with 92 additions and 103 deletions
|
@ -1,6 +1,5 @@
|
||||||
fail2ban
|
fail2ban
|
||||||
distcc
|
distcc
|
||||||
x11vnc
|
|
||||||
bwm-ng
|
bwm-ng
|
||||||
netcat
|
netcat
|
||||||
ppp
|
ppp
|
||||||
|
@ -8,7 +7,6 @@ rp-pppoe
|
||||||
wireless-tools
|
wireless-tools
|
||||||
hostname
|
hostname
|
||||||
ethtool
|
ethtool
|
||||||
openntpd
|
|
||||||
iproute2
|
iproute2
|
||||||
openvpn
|
openvpn
|
||||||
rsync
|
rsync
|
||||||
|
@ -44,7 +42,6 @@ irssi
|
||||||
cgit
|
cgit
|
||||||
darkhttpd
|
darkhttpd
|
||||||
lynx
|
lynx
|
||||||
xdg-utils
|
|
||||||
tor
|
tor
|
||||||
transmission
|
transmission
|
||||||
cyrus-sasl
|
cyrus-sasl
|
||||||
|
@ -62,28 +59,20 @@ sylpheed
|
||||||
minidlna
|
minidlna
|
||||||
hexchat
|
hexchat
|
||||||
uget
|
uget
|
||||||
x2x
|
|
||||||
maccalc
|
maccalc
|
||||||
fping
|
fping
|
||||||
mtr
|
mtr
|
||||||
aircrack-ng
|
|
||||||
lftp
|
|
||||||
autossh
|
|
||||||
cups
|
cups
|
||||||
ghostscript
|
ghostscript
|
||||||
poppler
|
poppler
|
||||||
poppler-data
|
poppler-data
|
||||||
evince
|
evince
|
||||||
cups-filters
|
cups-filters
|
||||||
rpcbind
|
|
||||||
nfs-utils
|
|
||||||
sane-backends
|
sane-backends
|
||||||
sane-frontends
|
sane-frontends
|
||||||
wavemon
|
wavemon
|
||||||
macchanger
|
macchanger
|
||||||
dhcpcd
|
dhcpcd
|
||||||
geocode-glib
|
|
||||||
redshift
|
|
||||||
iperf
|
iperf
|
||||||
ipset
|
ipset
|
||||||
rrdtool
|
rrdtool
|
||||||
|
@ -91,3 +80,4 @@ php
|
||||||
traceroute
|
traceroute
|
||||||
privoxy
|
privoxy
|
||||||
samba
|
samba
|
||||||
|
net-snmp
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--without-readline \
|
--without-readline \
|
||||||
--without-libjson \
|
--without-libjson \
|
||||||
|
|
|
@ -20,7 +20,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--with-ncurses \
|
--with-ncurses \
|
||||||
--with-procnetdev \
|
--with-procnetdev \
|
||||||
--with-partitions
|
--with-partitions
|
||||||
|
|
|
@ -16,7 +16,7 @@ prepbuilddir() {
|
||||||
cd $app-$version
|
cd $app-$version
|
||||||
fixbuilddirpermissions
|
fixbuilddirpermissions
|
||||||
|
|
||||||
[ -d git ] && rm -rf git
|
[[ -d git ]] && rm -rf git
|
||||||
tar -xf "$srcdir/git-$gitv.tar.lz" && mv git-$gitv git
|
tar -xf "$srcdir/git-$gitv.tar.lz" && mv git-$gitv git
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ build() {
|
||||||
export NO_REGEX=NeedsStartEnd
|
export NO_REGEX=NeedsStartEnd
|
||||||
|
|
||||||
make
|
make
|
||||||
make install prefix="/" DESTDIR="$pkg"
|
make install prefix=/ DESTDIR="$pkg"
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
cp COPYING $pkgdocs/
|
||||||
install -Dm 644 $srcdir/cgitrc $pkg/etc/cgitrc.new
|
install -Dm 644 $srcdir/cgitrc $pkg/etc/cgitrc.new
|
||||||
|
@ -39,4 +39,4 @@ build() {
|
||||||
sha512sums="
|
sha512sums="
|
||||||
5b11fee74514e52b40f534b38b9ebe271ac707b1e560a7221b0f6b3fc422b339024ac955e3bba566bf20d70be0c7a99924db95b68483c3b0b6884ef89dbbec95 cgit-1.2.3.tar.lz
|
5b11fee74514e52b40f534b38b9ebe271ac707b1e560a7221b0f6b3fc422b339024ac955e3bba566bf20d70be0c7a99924db95b68483c3b0b6884ef89dbbec95 cgit-1.2.3.tar.lz
|
||||||
529a132f96cb9f7956bd68e2589a5f9722289d79e45171221595ea39c147028c53b1208f2fb1aed81741867718367c447dce2efb112d73d170c5dba93918dec4 git-2.28.1.tar.lz
|
529a132f96cb9f7956bd68e2589a5f9722289d79e45171221595ea39c147028c53b1208f2fb1aed81741867718367c447dce2efb112d73d170c5dba93918dec4 git-2.28.1.tar.lz
|
||||||
"
|
"
|
||||||
|
|
|
@ -21,7 +21,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--libdir=/lib \
|
--libdir=/lib \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--libdir=/lib \
|
--libdir=/lib \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--sbindir=/bin
|
--sbindir=/bin
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin
|
--sbindir=/bin
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--libexecdir=/lib/dhcpcd \
|
--libexecdir=/lib/dhcpcd \
|
||||||
--datadir=/share \
|
--datadir=/share \
|
||||||
|
|
|
@ -20,7 +20,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--without-libiberty \
|
--without-libiberty \
|
||||||
|
|
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
SM_BUILDOPTS="-DHAVE_DNSSEC -DHAVE_DBUS -DHAVE_LIBIDN2 -DHAVE_CONNTRACK"
|
SM_BUILDOPTS="-DHAVE_DNSSEC -DHAVE_DBUS -DHAVE_LIBIDN2 -DHAVE_CONNTRACK"
|
||||||
make COPTS="$SM_BUILDOPTS"
|
make COPTS="$SM_BUILDOPTS"
|
||||||
make COPTS="$SM_BUILDOPTS" PREFIX="/" BINDIR="/bin" DESTDIR="$pkg" install
|
make COPTS="$SM_BUILDOPTS" PREFIX=/ BINDIR=/bin DESTDIR="$pkg" install
|
||||||
|
|
||||||
install -Dm 600 dnsmasq.conf.example $pkg/etc/dnsmasq.conf.new
|
install -Dm 600 dnsmasq.conf.example $pkg/etc/dnsmasq.conf.new
|
||||||
cp COPYING* $pkgdocs/
|
cp COPYING* $pkgdocs/
|
||||||
|
|
|
@ -30,7 +30,7 @@ build() {
|
||||||
i_cv_c99_vsnprintf=yes \
|
i_cv_c99_vsnprintf=yes \
|
||||||
i_cv_fd_passing=yes \
|
i_cv_fd_passing=yes \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--bindir=/bin \
|
--bindir=/bin \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin
|
--sbindir=/bin
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="/" \
|
--prefix=/ \
|
||||||
--disable-nautilus \
|
--disable-nautilus \
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
sh fail2ban-2to3
|
sh fail2ban-2to3
|
||||||
python setup.py install --prefix="" --root=$pkg
|
python setup.py install --root=$pkg
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
cp COPYING $pkgdocs/
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--enable-ipv4 \
|
--enable-ipv4 \
|
||||||
--enable-ipv6
|
--enable-ipv6
|
||||||
|
|
|
@ -21,7 +21,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--enable-dynamic \
|
--enable-dynamic \
|
||||||
--with-system-libtiff \
|
--with-system-libtiff \
|
||||||
|
|
|
@ -23,7 +23,7 @@ build() {
|
||||||
sed -i 's@Werror=missing-include-dirs @@g' configure
|
sed -i 's@Werror=missing-include-dirs @@g' configure
|
||||||
|
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--enable-openssl \
|
--enable-openssl \
|
||||||
--enable-textfe \
|
--enable-textfe \
|
||||||
--disable-lua \
|
--disable-lua \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
install -Dm 755 ifstat $pkg/bin/ifstat
|
install -Dm 755 ifstat $pkg/bin/ifstat
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--mandir=/share/man \
|
--mandir=/share/man \
|
||||||
$builddist
|
$builddist
|
||||||
|
|
|
@ -20,7 +20,7 @@ build() {
|
||||||
# With profiling enabled, the build fails with ld: Cannot find gcrt1.o: No such file or directory
|
# With profiling enabled, the build fails with ld: Cannot find gcrt1.o: No such file or directory
|
||||||
# https://github.com/esnet/iperf/issues/749
|
# https://github.com/esnet/iperf/issues/749
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-profiling
|
--disable-profiling
|
||||||
|
|
|
@ -20,7 +20,7 @@ build() {
|
||||||
# The kernel source directory requires the kernel build config file.
|
# The kernel source directory requires the kernel build config file.
|
||||||
# zcat /proc/config.gz > /share/linux-5.4.41
|
# zcat /proc/config.gz > /share/linux-5.4.41
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--with-kbuild=/share/linux-5.4.41
|
--with-kbuild=/share/linux-5.4.41
|
||||||
|
|
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
LDFLAGS="-lcurses -lterminfo" \
|
LDFLAGS="-lcurses -lterminfo" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
make
|
make
|
||||||
make install PREFIX="" SBINDIR=/bin MANDIR=/share/man DESTDIR="$pkg"
|
make install PREFIX= SBINDIR=/bin MANDIR=/share/man DESTDIR="$pkg"
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
cp COPYING $pkgdocs/
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-https
|
--disable-https
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
LIBS="-lcurses -lterminfo -lz" \
|
LIBS="-lcurses -lterminfo -lz" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--with-ssl \
|
--with-ssl \
|
||||||
--enable-ipv6
|
--enable-ipv6
|
||||||
|
|
|
@ -21,7 +21,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -20,7 +20,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -20,7 +20,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--with-os-name="SMLinux" \
|
--with-os-name="SMLinux" \
|
||||||
--with-db-path=/var/lib/minidlna \
|
--with-db-path=/var/lib/minidlna \
|
||||||
|
|
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
# Building with mmal causes link errors with /opt/vc/lib/libvcsm.so, hence we disable it.
|
# Building with mmal causes link errors with /opt/vc/lib/libvcsm.so, hence we disable it.
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--without-mmal
|
--without-mmal
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin
|
--sbindir=/bin
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
LDFLAGS="-lterminfo" \
|
LDFLAGS="-lterminfo" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc/mutt \
|
--sysconfdir=/etc/mutt \
|
||||||
--enable-imap \
|
--enable-imap \
|
||||||
--enable-pop \
|
--enable-pop \
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
||||||
app=net-snmp
|
app=net-snmp
|
||||||
version=5.8
|
version=5.8
|
||||||
build=1sml
|
build=1sml
|
||||||
|
@ -22,27 +23,27 @@ prepbuilddir() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
#./configure \
|
./configure \
|
||||||
# --prefix="/" \
|
--prefix="/" \
|
||||||
# --sbindir=/bin \
|
--sbindir=/bin \
|
||||||
# --sysconfdir=/etc/snmp \
|
--sysconfdir=/etc/snmp \
|
||||||
# --mandir=/share/man \
|
--mandir=/share/man \
|
||||||
# --with-default-snmp-version="3" \
|
--with-default-snmp-version="3" \
|
||||||
# --with-sys-contact="root@localhost" \
|
--with-sys-contact="root@localhost" \
|
||||||
# --with-sys-location="Unknown" \
|
--with-sys-location="Unknown" \
|
||||||
# --with-logfile="/var/log/snmpd.log" \
|
--with-logfile="/var/log/snmpd.log" \
|
||||||
# --with-persistent-directory="/var/lib/net-snmp" \
|
--with-persistent-directory="/var/lib/net-snmp" \
|
||||||
# --with-openssl \
|
--with-openssl \
|
||||||
# --enable-ipv6 \
|
--enable-ipv6 \
|
||||||
# --enable-as-needed \
|
--enable-as-needed \
|
||||||
# --with-perl-modules="INSTALLDIRS=vendor" \
|
--with-perl-modules="INSTALLDIRS=vendor" \
|
||||||
# --disable-embedded-perl \
|
--disable-embedded-perl \
|
||||||
# --disable-debugging \
|
--disable-debugging \
|
||||||
# --without-rpm \
|
--without-rpm \
|
||||||
# --program-suffix= \
|
--program-suffix= \
|
||||||
# --program-prefix= \
|
--program-prefix= \
|
||||||
# --enable-static=no \
|
--enable-static=no \
|
||||||
# --build=arm-musl-linux
|
--build=arm-musl-linux
|
||||||
|
|
||||||
make
|
make
|
||||||
sed -i 's@INSTALLMAN3DIR = none@INSTALLMAN3DIR = $(DESTDIR)$(INSTALLMAN3DIR)@g' perl/SNMP/Makefile
|
sed -i 's@INSTALLMAN3DIR = none@INSTALLMAN3DIR = $(DESTDIR)$(INSTALLMAN3DIR)@g' perl/SNMP/Makefile
|
||||||
|
|
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
CC="$CC" \
|
CC="$CC" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="/var/lib" \
|
--prefix=/var/lib \
|
||||||
--with-http_ssl_module \
|
--with-http_ssl_module \
|
||||||
--with-http_v2_module \
|
--with-http_v2_module \
|
||||||
--with-http_stub_status_module \
|
--with-http_stub_status_module \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
$builddist
|
$builddist
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--with-liblua=included \
|
--with-liblua=included \
|
||||||
--without-nmap-update
|
--without-nmap-update
|
||||||
|
|
|
@ -22,9 +22,9 @@ prepbuilddir() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
CFLAGS="$CFLAGS -D_BSD_SOURCE -DMISSING_FD_MASK -DMISSING_NFDBITS" \
|
CFLAGS+=" -D_BSD_SOURCE -DMISSING_FD_MASK -DMISSING_NFDBITS" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--bindir=/bin \
|
--bindir=/bin \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--libexecdir=/lib/ssh \
|
--libexecdir=/lib/ssh \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--sysconfdir=/etc/openvpn \
|
--sysconfdir=/etc/openvpn \
|
||||||
--enable-iproute2 \
|
--enable-iproute2 \
|
||||||
|
|
|
@ -28,7 +28,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc/php \
|
--sysconfdir=/etc/php \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
|
|
|
@ -40,7 +40,7 @@ build() {
|
||||||
sed -i "s:^#USE_CRYPT=y:USE_CRYPT=y:" pppd/Makefile.linux
|
sed -i "s:^#USE_CRYPT=y:USE_CRYPT=y:" pppd/Makefile.linux
|
||||||
|
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
$builddist
|
$builddist
|
||||||
|
|
||||||
|
|
|
@ -27,11 +27,10 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--sysconfdir=/etc/"$app" \
|
--sysconfdir=/etc/"$app" \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
--docdir="/share/doc/$app-$version" \
|
|
||||||
--with-docbook=no \
|
--with-docbook=no \
|
||||||
--with-user=nobody \
|
--with-user=nobody \
|
||||||
--enable-no-gifs \
|
--enable-no-gifs \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--enable-ipv6
|
--enable-ipv6
|
||||||
|
|
|
@ -21,7 +21,7 @@ build() {
|
||||||
cd src
|
cd src
|
||||||
|
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--enable-plugin=/include/pppd
|
--enable-plugin=/include/pppd
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--enable-perl \
|
--enable-perl \
|
||||||
--enable-ruby \
|
--enable-ruby \
|
||||||
|
|
|
@ -20,7 +20,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
CFLAGS+=" -include sys/sysmacros.h" \
|
CFLAGS+=" -include sys/sysmacros.h" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--disable-locale \
|
--disable-locale \
|
||||||
--disable-xxhash
|
--disable-xxhash
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--disable-static
|
--disable-static
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
|
@ -17,9 +17,9 @@ prepbuilddir() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
CXXFLAGS="$CFLAGS -lpthread" \
|
CXXFLAGS+=" -lpthread" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -36,7 +36,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
unset CFLAGS CXXFLAGS
|
unset CFLAGS CXXFLAGS
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="/" \
|
--prefix=/ \
|
||||||
--bindir=/bin \
|
--bindir=/bin \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--libexecdir=/lib \
|
--libexecdir=/lib \
|
||||||
|
@ -86,4 +86,4 @@ b7906d66fe55a980a54161ee3f311b51bcbce76b8d4c8cc1ba6d0c5bdf98232cb192b9d2c1aa7b3e
|
||||||
f997d0bca9de64a567bccc245bec41e4aa00bacb379d8e348678dcafcf7e723e8716608c5d2d266ad816439b8b93bb8ee28371308a01c9d9c50229f1fc8deb67 netgroup.patch
|
f997d0bca9de64a567bccc245bec41e4aa00bacb379d8e348678dcafcf7e723e8716608c5d2d266ad816439b8b93bb8ee28371308a01c9d9c50229f1fc8deb67 netgroup.patch
|
||||||
c0bbe1186b150a9bb2a0b741a8cfbd7a5109e5fed1eaa07aaa38cf026ebe054d38cc01e2496f0cab7b40f743e1b7ecfbf8a4d5820810226c4152021df65f36dc pidl.patch
|
c0bbe1186b150a9bb2a0b741a8cfbd7a5109e5fed1eaa07aaa38cf026ebe054d38cc01e2496f0cab7b40f743e1b7ecfbf8a4d5820810226c4152021df65f36dc pidl.patch
|
||||||
e98fd19f65d954f04f7e3b5be86e9c4bcc9ac090c40037de77bfeb266617747c514aeb42f3daf84113b2f3374480d25e368bc1fdebc1870458eda12329d2062e samba-bgqd-include-signal-h.patch
|
e98fd19f65d954f04f7e3b5be86e9c4bcc9ac090c40037de77bfeb266617747c514aeb42f3daf84113b2f3374480d25e368bc1fdebc1870458eda12329d2062e samba-bgqd-include-signal-h.patch
|
||||||
"
|
"
|
||||||
|
|
|
@ -20,7 +20,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--mandir=/share/man \
|
--mandir=/share/man \
|
||||||
$builddist
|
$builddist
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -21,7 +21,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
ac_cv_linux_vers=3 \
|
ac_cv_linux_vers=3 \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin
|
--sbindir=/bin
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
|
@ -18,9 +18,8 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--docdir="/share/doc/$app-$version" \
|
|
||||||
--disable-tool-name-check \
|
--disable-tool-name-check \
|
||||||
--enable-pic
|
--enable-pic
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
make
|
make
|
||||||
make install prefix="/" DESTDIR=$pkg
|
make install prefix=/ DESTDIR=$pkg
|
||||||
|
|
||||||
cp COPYING* $pkgdocs/
|
cp COPYING* $pkgdocs/
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--with-username=nobody \
|
--with-username=nobody \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sbindir=/bin \
|
--sbindir=/bin \
|
||||||
--sysconfdir=/etc
|
--sysconfdir=/etc
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ build() {
|
||||||
unset CFLAGS
|
unset CFLAGS
|
||||||
|
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=""
|
--prefix=
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
|
@ -19,7 +19,7 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
mkdir -p smbuild && cd smbuild
|
mkdir -p smbuild && cd smbuild
|
||||||
cmake .. \
|
cmake .. \
|
||||||
-DCMAKE_INSTALL_PREFIX="" \
|
-DCMAKE_INSTALL_PREFIX= \
|
||||||
-DENABLE_PHP=OFF \
|
-DENABLE_PHP=OFF \
|
||||||
-DENABLE_TCL=OFF \
|
-DENABLE_TCL=OFF \
|
||||||
-DENABLE_GUILE=OFF \
|
-DENABLE_GUILE=OFF \
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--with-ssl=openssl \
|
--with-ssl=openssl \
|
||||||
--disable-rpath
|
--disable-rpath
|
||||||
|
|
|
@ -18,7 +18,7 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix="" \
|
--prefix= \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--mandir=/share/man \
|
--mandir=/share/man \
|
||||||
--disable-charset \
|
--disable-charset \
|
||||||
|
|
Loading…
Reference in a new issue