wok-next rev 20601
More fix libtool.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Apr 17 01:13:26 2018 +0300 (2018-04-17) |
parents | af2860af5ac8 |
children | 0c55dd149a56 |
files | neon/receipt net-snmp/receipt net6/receipt network-manager/receipt nilfs-utils/receipt normalize/receipt notification-daemon/receipt notify-python/receipt npth/receipt ntfs-3g/receipt obby/receipt ode/receipt ofono/receipt ogmrip/receipt oniguruma/receipt open-cobol/receipt openconnect/receipt opencore-amr/receipt opencpn/receipt openexr/receipt openjade/receipt openjpeg/receipt openldap/receipt openmotif/receipt openmpi/receipt opensc/receipt openvpn/receipt openvswitch/receipt opus/receipt opusfile/receipt |
line diff
1.1 --- a/neon/receipt Tue Apr 17 00:40:13 2018 +0300 1.2 +++ b/neon/receipt Tue Apr 17 01:13:26 2018 +0300 1.3 @@ -42,5 +42,3 @@ 1.4 ;; 1.5 esac 1.6 } 1.7 - 1.8 -
2.1 --- a/net-snmp/receipt Tue Apr 17 00:40:13 2018 +0300 2.2 +++ b/net-snmp/receipt Tue Apr 17 01:13:26 2018 +0300 2.3 @@ -23,7 +23,9 @@ 2.4 --with-logfile="/var/log/snmpd.log" \ 2.5 --with-persistent-directory="/var/net-snmp" \ 2.6 $CONFIGURE_ARGS && 2.7 - make -j1 && make DESTDIR=$DESTDIR install 2.8 + fix libtool && 2.9 + make -j1 && 2.10 + make DESTDIR=$DESTDIR install 2.11 } 2.12 2.13 genpkg_rules() {
3.1 --- a/net6/receipt Tue Apr 17 00:40:13 2018 +0300 3.2 +++ b/net6/receipt Tue Apr 17 01:13:26 2018 +0300 3.3 @@ -18,11 +18,8 @@ 3.4 compile_rules() { 3.5 sed -i '/int kx_prio/d;s|kx_set_priority(session, kx_prio|priority_set_direct(session, "NORMAL:+ANON-DH", NULL|' src/encrypt.cpp 3.6 3.7 - ./configure \ 3.8 - --prefix=/usr \ 3.9 - --infodir=/usr/share/info \ 3.10 - --mandir=/usr/share/man \ 3.11 - $CONFIGURE_ARGS && 3.12 + ./configure $CONFIGURE_ARGS && 3.13 + fix libtool && 3.14 make && 3.15 make DESTDIR=$DESTDIR install 3.16 }
4.1 --- a/network-manager/receipt Tue Apr 17 00:40:13 2018 +0300 4.2 +++ b/network-manager/receipt Tue Apr 17 01:13:26 2018 +0300 4.3 @@ -25,6 +25,7 @@ 4.4 ./configure \ 4.5 --libexecdir=/usr/lib/$PACKAGE \ 4.6 $CONFIGURE_ARGS && 4.7 + fix libtool && 4.8 make && 4.9 make install 4.10 }
5.1 --- a/nilfs-utils/receipt Tue Apr 17 00:40:13 2018 +0300 5.2 +++ b/nilfs-utils/receipt Tue Apr 17 01:13:26 2018 +0300 5.3 @@ -20,7 +20,9 @@ 5.4 ./configure \ 5.5 --with-libmount \ 5.6 $CONFIGURE_ARGS && 5.7 - make && make install 5.8 + fix libtool && 5.9 + make && 5.10 + make install 5.11 } 5.12 5.13 genpkg_rules() {
6.1 --- a/normalize/receipt Tue Apr 17 00:40:13 2018 +0300 6.2 +++ b/normalize/receipt Tue Apr 17 01:13:26 2018 +0300 6.3 @@ -14,7 +14,10 @@ 6.4 BUILD_DEPENDS="libmad-dev audiofile-dev" 6.5 6.6 compile_rules() { 6.7 - ./configure $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install 6.8 + ./configure $CONFIGURE_ARGS && 6.9 + fix libtool && 6.10 + make && 6.11 + make DESTDIR=$DESTDIR install 6.12 } 6.13 6.14 genpkg_rules() {
7.1 --- a/notification-daemon/receipt Tue Apr 17 00:40:13 2018 +0300 7.2 +++ b/notification-daemon/receipt Tue Apr 17 01:13:26 2018 +0300 7.3 @@ -14,7 +14,10 @@ 7.4 BUILD_DEPENDS="gettext gtk+3-dev glib-dev xorg-libX11-dev" 7.5 7.6 compile_rules() { 7.7 - ./configure $CONFIGURE_ARGS && make && make install 7.8 + ./configure $CONFIGURE_ARGS && 7.9 + fix libtool && 7.10 + make && 7.11 + make install 7.12 } 7.13 7.14 genpkg_rules() {
8.1 --- a/notify-python/receipt Tue Apr 17 00:40:13 2018 +0300 8.2 +++ b/notify-python/receipt Tue Apr 17 01:13:26 2018 +0300 8.3 @@ -18,6 +18,7 @@ 8.4 sed -i 's/, attach//;s/ attach[^;]*//;/GtkWidget .attach/d' src/pynotify.c 8.5 8.6 ./configure $CONFIGURE_ARGS && 8.7 + fix libtool && 8.8 make && 8.9 make DESTDIR=$DESTDIR install 8.10 }
9.1 --- a/npth/receipt Tue Apr 17 00:40:13 2018 +0300 9.2 +++ b/npth/receipt Tue Apr 17 01:13:26 2018 +0300 9.3 @@ -16,7 +16,10 @@ 9.4 SPLIT="npth-dev" 9.5 9.6 compile_rules() { 9.7 - ./configure $CONFIGURE_ARGS && make && make install 9.8 + ./configure $CONFIGURE_ARGS && 9.9 + fix libtool && 9.10 + make && 9.11 + make install 9.12 } 9.13 9.14 genpkg_rules() {
10.1 --- a/ntfs-3g/receipt Tue Apr 17 00:40:13 2018 +0300 10.2 +++ b/ntfs-3g/receipt Tue Apr 17 01:13:26 2018 +0300 10.3 @@ -21,11 +21,13 @@ 10.4 ./configure \ 10.5 --enable-extras \ 10.6 $CONFIGURE_ARGS && 10.7 + fix libtool && 10.8 make && 10.9 mkdir -p $install/lib && 10.10 - make install && 10.11 + make install || return 1 10.12 10.13 - mkdir -p $install/etc && touch $install/etc/filesystems && 10.14 + mkdir -p $install/etc 10.15 + touch $install/etc/filesystems 10.16 #this link allow udisks2 to use ntfs-3g 10.17 ln -s mount.ntfs-3g $install/sbin/mount.ntfs 10.18 }
11.1 --- a/obby/receipt Tue Apr 17 00:40:13 2018 +0300 11.2 +++ b/obby/receipt Tue Apr 17 01:13:26 2018 +0300 11.3 @@ -16,7 +16,10 @@ 11.4 SPLIT="obby-dev" 11.5 11.6 compile_rules() { 11.7 - ./configure $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install 11.8 + ./configure $CONFIGURE_ARGS && 11.9 + fix libtool && 11.10 + make && 11.11 + make DESTDIR=$DESTDIR install 11.12 } 11.13 11.14 genpkg_rules() {
12.1 --- a/ode/receipt Tue Apr 17 00:40:13 2018 +0300 12.2 +++ b/ode/receipt Tue Apr 17 01:13:26 2018 +0300 12.3 @@ -18,7 +18,9 @@ 12.4 ./configure \ 12.5 --enable-shared \ 12.6 $CONFIGURE_ARGS && 12.7 - make && make DESTDIR=$DESTDIR install 12.8 + fix libtool && 12.9 + make && 12.10 + make DESTDIR=$DESTDIR install 12.11 } 12.12 12.13 genpkg_rules() {
13.1 --- a/ofono/receipt Tue Apr 17 00:40:13 2018 +0300 13.2 +++ b/ofono/receipt Tue Apr 17 01:13:26 2018 +0300 13.3 @@ -17,7 +17,9 @@ 13.4 13.5 compile_rules() { 13.6 ./configure $CONFIGURE_ARGS && 13.7 - make && make DESTDIR=$DESTDIR install || return 1 13.8 + fix libtool && 13.9 + make && 13.10 + make DESTDIR=$DESTDIR install || return 1 13.11 13.12 cp -a $stuff/etc/* $install/etc/ 13.13 }
14.1 --- a/ogmrip/receipt Tue Apr 17 00:40:13 2018 +0300 14.2 +++ b/ogmrip/receipt Tue Apr 17 01:13:26 2018 +0300 14.3 @@ -16,7 +16,9 @@ 14.4 14.5 compile_rules() { 14.6 ./configure $CONFIGURE_ARGS && 14.7 - make && make -j1 DESTDIR=$DESTDIR install 14.8 + fix libtool && 14.9 + make && 14.10 + make -j1 DESTDIR=$DESTDIR install 14.11 } 14.12 14.13 genpkg_rules() {
15.1 --- a/oniguruma/receipt Tue Apr 17 00:40:13 2018 +0300 15.2 +++ b/oniguruma/receipt Tue Apr 17 01:13:26 2018 +0300 15.3 @@ -16,7 +16,10 @@ 15.4 15.5 compile_rules() { 15.6 autoreconf -vfi && 15.7 - ./configure $CONFIGURE_ARGS && make && make install || return 1 15.8 + ./configure $CONFIGURE_ARGS && 15.9 + fix libtool && 15.10 + make && 15.11 + make install || return 1 15.12 15.13 cook_pick_docs doc/* 15.14 }
16.1 --- a/open-cobol/receipt Tue Apr 17 00:40:13 2018 +0300 16.2 +++ b/open-cobol/receipt Tue Apr 17 01:13:26 2018 +0300 16.3 @@ -17,6 +17,7 @@ 16.4 export LDFLAGS="$LDFLAGS -lpthread" 16.5 16.6 ./configure $CONFIGURE_ARGS && 16.7 + fix libtool && 16.8 make && 16.9 make DESTDIR=$DESTDIR install 16.10 }
17.1 --- a/openconnect/receipt Tue Apr 17 00:40:13 2018 +0300 17.2 +++ b/openconnect/receipt Tue Apr 17 01:13:26 2018 +0300 17.3 @@ -1,33 +1,27 @@ 17.4 -# SliTaz package receipt. 17.5 +# SliTaz package receipt v2. 17.6 17.7 PACKAGE="openconnect" 17.8 VERSION="4.07" 17.9 CATEGORY="network" 17.10 -SHORT_DESC="A client for Cisco's AnyConnect SSL VPN." 17.11 +SHORT_DESC="A client for Cisco's AnyConnect SSL VPN" 17.12 MAINTAINER="samuel_trassare@yahoo.com" 17.13 LICENSE="LGPL2.1" 17.14 WEB_SITE="http://http://www.infradead.org/openconnect" 17.15 + 17.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 17.17 WGET_URL="ftp://ftp.infradead.org/pub/openconnect/$TARBALL" 17.18 17.19 -DEPENDS="vpnc openssl libxml2" 17.20 # Will require libtirpc when glibc is upgraded to 2.14. 17.21 BUILD_DEPENDS="openssl-dev zlib libxml2-dev vpnc gettext-tools" 17.22 17.23 -# Rules to configure and make the package. 17.24 -compile_rules() 17.25 -{ 17.26 +compile_rules() { 17.27 ./configure $CONFIGURE_ARGS && 17.28 - make && 17.29 + fix libtool && 17.30 + make && 17.31 make install 17.32 } 17.33 17.34 -# Rules to gen a SliTaz package suitable for Tazpkg. 17.35 -genpkg_rules() 17.36 -{ 17.37 - mkdir -p $fs/usr/sbin 17.38 - cp -a $install/usr/sbin/openconnect $fs/usr/sbin 17.39 - 17.40 - mkdir -p $fs/usr/lib 17.41 - cp -a $install/usr/lib/*so* $fs/usr/lib 17.42 +genpkg_rules() { 17.43 + copy @std 17.44 + DEPENDS="vpnc openssl libxml2" 17.45 }
18.1 --- a/opencore-amr/receipt Tue Apr 17 00:40:13 2018 +0300 18.2 +++ b/opencore-amr/receipt Tue Apr 17 01:13:26 2018 +0300 18.3 @@ -17,7 +17,9 @@ 18.4 ./configure \ 18.5 --disable-static \ 18.6 $CONFIGURE_ARGS && 18.7 - make && make install 18.8 + fix libtool && 18.9 + make && 18.10 + make install 18.11 } 18.12 18.13 genpkg_rules() {
19.1 --- a/opencpn/receipt Tue Apr 17 00:40:13 2018 +0300 19.2 +++ b/opencpn/receipt Tue Apr 17 01:13:26 2018 +0300 19.3 @@ -1,4 +1,4 @@ 19.4 -# SliTaz package receipt. 19.5 +# SliTaz package receipt v2. 19.6 19.7 PACKAGE="opencpn" 19.8 VERSION="1.3.2" 19.9 @@ -6,35 +6,28 @@ 19.10 SHORT_DESC="A concise Chart/plotter Navigator" 19.11 MAINTAINER="allan316@gmail.com" 19.12 LICENSE="GPL2" 19.13 -SUGGESTED="nvidia" 19.14 +WEB_SITE="http://opencpn.sourceforge.net" 19.15 + 19.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 19.17 -WEB_SITE="http://opencpn.sourceforge.net" 19.18 WGET_URL="http://nchc.dl.sourceforge.net/sourceforge/$PACKAGE/$TARBALL" 19.19 19.20 -DEPENDS="wxWidgets28 mesa glu" 19.21 BUILD_DEPENDS="wxWidgets28-dev mesa-dev glu-dev" 19.22 -TAGS="office" 19.23 19.24 -# Rules to configure and make the package. 19.25 -compile_rules() 19.26 -{ 19.27 +compile_rules() { 19.28 # Binutils 2.22 break many packages build without LDFLAGS set correctly. 19.29 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries" 19.30 - 19.31 - cd $src 19.32 + 19.33 busybox patch -p0 -i $stuff/glib.u 19.34 - ./configure \ 19.35 - --prefix=/usr \ 19.36 - --infodir=/usr/share/info \ 19.37 - --mandir=/usr/share/man \ 19.38 - $CONFIGURE_ARGS && 19.39 - make && make DESTDIR=$DESTDIR install 19.40 + 19.41 + ./configure $CONFIGURE_ARGS && 19.42 + fix libtool && 19.43 + make && 19.44 + make DESTDIR=$DESTDIR install 19.45 } 19.46 19.47 -# Rules to gen a SliTaz package suitable for Tazpkg. 19.48 -genpkg_rules() 19.49 -{ 19.50 - mkdir -p $fs/usr 19.51 - cp -a $install/usr/bin $fs/usr 19.52 - cp -a $install/usr/share $fs/usr 19.53 +genpkg_rules() { 19.54 + copy @std 19.55 + DEPENDS="wxWidgets28 mesa glu" 19.56 + SUGGESTED="nvidia" 19.57 + TAGS="office" 19.58 }
20.1 --- a/openexr/receipt Tue Apr 17 00:40:13 2018 +0300 20.2 +++ b/openexr/receipt Tue Apr 17 01:13:26 2018 +0300 20.3 @@ -15,9 +15,10 @@ 20.4 SPLIT="openexr-dev" 20.5 20.6 compile_rules() { 20.7 - ./configure \ 20.8 - $CONFIGURE_ARGS && 20.9 - make && make install 20.10 + ./configure $CONFIGURE_ARGS && 20.11 + fix libtool && 20.12 + make && 20.13 + make install 20.14 } 20.15 20.16 genpkg_rules() {
21.1 --- a/openjade/receipt Tue Apr 17 00:40:13 2018 +0300 21.2 +++ b/openjade/receipt Tue Apr 17 01:13:26 2018 +0300 21.3 @@ -18,6 +18,7 @@ 21.4 -e '/use POSIX/ause Getopt::Std;' msggen.pl 21.5 21.6 export CXXFLAGS="$CXXFLAGS -fno-lifetime-dse" 21.7 + 21.8 ./configure \ 21.9 --enable-http \ 21.10 --disable-static \ 21.11 @@ -25,6 +26,7 @@ 21.12 --enable-default-search-path=/usr/share/sgml \ 21.13 --datadir=/usr/share/sgml/openjade-$VERSION \ 21.14 $CONFIGURE_ARGS && 21.15 + fix libtool && 21.16 make && 21.17 make DESTDIR="$install" install install-man || return 1 21.18
22.1 --- a/openjpeg/receipt Tue Apr 17 00:40:13 2018 +0300 22.2 +++ b/openjpeg/receipt Tue Apr 17 01:13:26 2018 +0300 22.3 @@ -14,19 +14,17 @@ 22.4 BUILD_DEPENDS="automake libtool libpng16-dev zlib-dev tiff-dev lcms2-dev" 22.5 SPLIT="openjpeg-tools openjpeg-dev" 22.6 22.7 -# Rules to configure and make the package. 22.8 -compile_rules() 22.9 -{ 22.10 +compile_rules() { 22.11 autoreconf -fi && 22.12 ./configure \ 22.13 --disable-static \ 22.14 $CONFIGURE_ARGS && 22.15 - make && make install 22.16 + fix libtool && 22.17 + make && 22.18 + make install 22.19 } 22.20 22.21 -# Rules to gen a SliTaz package suitable for Tazpkg. 22.22 -genpkg_rules() 22.23 -{ 22.24 +genpkg_rules() { 22.25 case $PACKAGE in 22.26 openjpeg) 22.27 copy *.so*
23.1 --- a/openldap/receipt Tue Apr 17 00:40:13 2018 +0300 23.2 +++ b/openldap/receipt Tue Apr 17 01:13:26 2018 +0300 23.3 @@ -31,6 +31,7 @@ 23.4 --disable-bdb \ 23.5 --disable-hdb \ 23.6 $CONFIGURE_ARGS && 23.7 + fix libtool && 23.8 sed -i 's|@VERSION_OPTION@||' $src/libraries/*/Makefile && 23.9 make depend && 23.10 make &&
24.1 --- a/openmotif/receipt Tue Apr 17 00:40:13 2018 +0300 24.2 +++ b/openmotif/receipt Tue Apr 17 01:13:26 2018 +0300 24.3 @@ -20,7 +20,8 @@ 24.4 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11" 24.5 24.6 ./configure $CONFIGURE_ARGS && 24.7 - make -j 1 && 24.8 + fix libtool && 24.9 + make -j1 && 24.10 make DESTDIR=$DESTDIR install 24.11 } 24.12
25.1 --- a/openmpi/receipt Tue Apr 17 00:40:13 2018 +0300 25.2 +++ b/openmpi/receipt Tue Apr 17 01:13:26 2018 +0300 25.3 @@ -28,6 +28,7 @@ 25.4 --with-libltdl=/usr \ 25.5 FC=/usr/bin/gfortran \ 25.6 LDFLAGS='-Wl,-z,noexecstack' && 25.7 + fix libtool && 25.8 make && 25.9 make install 25.10 }
26.1 --- a/opensc/receipt Tue Apr 17 00:40:13 2018 +0300 26.2 +++ b/opensc/receipt Tue Apr 17 01:13:26 2018 +0300 26.3 @@ -15,6 +15,7 @@ 26.4 26.5 compile_rules() { 26.6 ./configure $CONFIGURE_ARGS && 26.7 + fix libtool && 26.8 make && 26.9 make DESTDIR=$DESTDIR install 26.10 }
27.1 --- a/openvpn/receipt Tue Apr 17 00:40:13 2018 +0300 27.2 +++ b/openvpn/receipt Tue Apr 17 01:13:26 2018 +0300 27.3 @@ -3,72 +3,65 @@ 27.4 PACKAGE="openvpn" 27.5 VERSION="2.3.6" 27.6 CATEGORY="network" 27.7 -SHORT_DESC="Full-featured open source SSL VPN solution." 27.8 +SHORT_DESC="Full-featured open source SSL VPN solution" 27.9 MAINTAINER="pascal.bellard@slitaz.org" 27.10 LICENSE="GPL2" 27.11 +WEB_SITE="http://openvpn.net/" 27.12 + 27.13 TARBALL="$PACKAGE-$VERSION.tar.xz" 27.14 -WEB_SITE="http://openvpn.net/" 27.15 WGET_URL="http://swupdate.openvpn.net/community/releases/$TARBALL" 27.16 -TAGS="vpn tunnel network" 27.17 27.18 BUILD_DEPENDS="lzo-dev openssl-dev pam-dev" 27.19 SPLIT="openvpn openvpn-doc openvpn-down-root openvpn-pam" 27.20 27.21 -# Rules to configure and make the package. 27.22 -compile_rules() 27.23 -{ 27.24 +compile_rules() { 27.25 ./configure \ 27.26 - --prefix=/usr \ 27.27 --enable-password-save \ 27.28 $CONFIGURE_ARGS && 27.29 make && 27.30 ( cd plugin/auth-pam/ ; make ) && 27.31 ( cd plugin/down-root/ ; make ) && 27.32 - make DESTDIR=$DESTDIR install 27.33 + make DESTDIR=$DESTDIR install || return 1 27.34 + 27.35 + install -Dm755 $stuff/etc/init.d/openvpn-client $install/etc/init.d/openvpn-client 27.36 + install -Dm755 $stuff/etc/init.d/openvpn-server $install/etc/init.d/openvpn-server 27.37 + install -Dm644 $stuff/etc/openvpn/openvpn.conf $install/etc/openvpn/openvpn.conf 27.38 + 27.39 + install -Dm755 $src/src/plugins/down-root/.libs/openvpn-plugin-down-root.so \ 27.40 + $install/usr/share/openvpn/openvpn-plugin-down-root.so 27.41 + install -Dm755 $src/src/plugins/auth-pam/.libs/openvpn-plugin-auth-pam.so \ 27.42 + $install/usr/share/openvpn/openvpn-plugin-auth-pam.so 27.43 } 27.44 27.45 -# Rules to gen a SliTaz package suitable for Tazpkg. 27.46 -genpkg_rules() 27.47 -{ 27.48 +genpkg_rules() { 27.49 case $PACKAGE in 27.50 - openvpn) 27.51 - DEPENDS="lzo openssl" 27.52 - mkdir -p $fs/usr/sbin 27.53 - cp -a $install/usr/sbin/openvpn $fs/usr/sbin 27.54 - cp -a $stuff/etc $fs 27.55 - chown root.root $fs/etc/init.d/* 27.56 - chmod 0644 $fs/etc/openvpn/openvpn.conf 27.57 - ;; 27.58 - openvpn-doc) 27.59 - CAT="network|Documentation for OpenVPN." 27.60 - DEPENDS="openvpn" 27.61 - mkdir -p $fs/usr/share/openvpn 27.62 - cp -a $install/usr/share/ $fs/usr/ 27.63 - cp -a $src/sample/sample-config-files $fs/usr/share/openvpn 27.64 - cp -a $src/sample/sample-plugins $fs/usr/share/openvpn 27.65 - cp -a $src/sample/sample-keys $fs/usr/share/openvpn 27.66 - cp -a $src/sample/sample-scripts $fs/usr/share/openvpn 27.67 - ;; 27.68 - openvpn-down-root) 27.69 - CAT="network|The down-root plugin for OpenVPN." 27.70 - DEPENDS="openvpn" 27.71 - mkdir -p $fs/usr/share/openvpn 27.72 - cp -a $src/src/plugins/down-root/.libs/openvpn-plugin-down-root.so \ 27.73 - $fs/usr/share/openvpn 27.74 - ;; 27.75 - openvpn-pam) 27.76 - CAT="network|PAM plugin for OpenVPN." 27.77 - PROVIDE="openvpn:pam" 27.78 - DEPENDS="openvpn pam" 27.79 - mkdir -p $fs/usr/share/openvpn 27.80 - cp -a $src/src/plugins/auth-pam/.libs/openvpn-plugin-auth-pam.so \ 27.81 - $fs/usr/share/openvpn 27.82 - ;; 27.83 + openvpn) 27.84 + copy openvpn etc/ 27.85 + DEPENDS="lzo openssl" 27.86 + TAGS="vpn tunnel network" 27.87 + ;; 27.88 + openvpn-doc) 27.89 + copy doc/ sample-config-files/ sample-plugins/ sample-keys/ \ 27.90 + sample-scripts/ 27.91 + CAT="network|documentation" 27.92 + DEPENDS="openvpn" 27.93 + ;; 27.94 + openvpn-down-root) 27.95 + copy openvpn-plugin-down-root.so 27.96 + CAT="network|the down-root plugin" 27.97 + DEPENDS="openvpn" 27.98 + ;; 27.99 + openvpn-pam) 27.100 + copy openvpn-plugin-auth-pam.so 27.101 + CAT="network|PAM plugin" 27.102 + PROVIDE="openvpn:pam" 27.103 + DEPENDS="openvpn pam" 27.104 + TAGS="vpn tunnel network" 27.105 + ;; 27.106 esac 27.107 } 27.108 27.109 -post_remove_openvpn() 27.110 -{ 27.111 +post_remove_openvpn() { 27.112 # remove config 27.113 rm -rf ${root}/etc/openvpn 27.114 }
28.1 --- a/openvswitch/receipt Tue Apr 17 00:40:13 2018 +0300 28.2 +++ b/openvswitch/receipt Tue Apr 17 01:13:26 2018 +0300 28.3 @@ -16,6 +16,7 @@ 28.4 28.5 compile_rules() { 28.6 ./configure $CONFIGURE_ARGS && 28.7 + fix libtool && 28.8 make && 28.9 make DESTDIR=$DESTDIR install 28.10 }
29.1 --- a/opus/receipt Tue Apr 17 00:40:13 2018 +0300 29.2 +++ b/opus/receipt Tue Apr 17 01:13:26 2018 +0300 29.3 @@ -18,6 +18,7 @@ 29.4 ./configure \ 29.5 --disable-static \ 29.6 $CONFIGURE_ARGS && 29.7 + fix libtool && 29.8 make && make install 29.9 } 29.10
30.1 --- a/opusfile/receipt Tue Apr 17 00:40:13 2018 +0300 30.2 +++ b/opusfile/receipt Tue Apr 17 01:13:26 2018 +0300 30.3 @@ -15,7 +15,10 @@ 30.4 SPLIT="opusfile-dev" 30.5 30.6 compile_rules() { 30.7 - ./configure $CONFIGURE_ARGS && make && make install 30.8 + ./configure $CONFIGURE_ARGS && 30.9 + fix libtool && 30.10 + make && 30.11 + make install 30.12 } 30.13 30.14 genpkg_rules() {