wok-next rev 16021
arm: Add a bunch of Xorg pkgs
line diff
1.1 --- a/glib/receipt Wed Mar 05 23:46:52 2014 +0100 1.2 +++ b/glib/receipt Thu Mar 06 00:03:58 2014 +0100 1.3 @@ -37,11 +37,6 @@ 1.4 $CONFIGURE_ARGS ;; 1.5 arm) 1.6 # Native ARM build --> if ARCH != SLITAZ_ARCH ? 1.7 - 1.8 - # Libtool fixes: /usr/bin/cross libhack (when released) 1.9 - sed -i s"#/usr/lib#/cross/$ARCH/sysroot/usr/lib#" \ 1.10 - /cross/${ARCH}/sysroot/usr/lib/libpcre.la \ 1.11 - /cross/${ARCH}/sysroot/usr/lib/libffi.la || exit 1 1.12 #export LIBTOOL=arm-slitaz-linux-gnueabi-libtool 1.13 export LD_LIBRARY_PATH=/cross/arm/sysroot/usr/lib:/usr/lib:/lib 1.14 export PKG_CONFIG_LIBPATH=/cross/arm/sysroot/usr/lib/pkgconfig
2.1 --- a/libid3tag-dev/receipt Wed Mar 05 23:46:52 2014 +0100 2.2 +++ b/libid3tag-dev/receipt Thu Mar 06 00:03:58 2014 +0100 2.3 @@ -8,6 +8,7 @@ 2.4 LICENSE="GPL2" 2.5 WANTED="libid3tag" 2.6 WEB_SITE="http://www.underbit.com/products/mad" 2.7 +HOST_ARCH="i486 arm" 2.8 2.9 DEPENDS="libid3tag pkg-config" 2.10
3.1 --- a/libid3tag/receipt Wed Mar 05 23:46:52 2014 +0100 3.2 +++ b/libid3tag/receipt Thu Mar 06 00:03:58 2014 +0100 3.3 @@ -9,6 +9,7 @@ 3.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.5 WEB_SITE="http://www.underbit.com/products/mad/" 3.6 WGET_URL="http://downloads.sourceforge.net/mad/$TARBALL" 3.7 +HOST_ARCH="i486 arm" 3.8 3.9 DEPENDS="zlib" 3.10 BUILD_DEPENDS="zlib-dev" 3.11 @@ -16,10 +17,8 @@ 3.12 # Rules to configure and make the package. 3.13 compile_rules() 3.14 { 3.15 - cd $src 3.16 - ./configure --prefix=/usr $CONFIGURE_ARGS 3.17 - make 3.18 - make DESTDIR=$DESTDIR install 3.19 + ./configure --prefix=/usr $CONFIGURE_ARGS && 3.20 + make && make DESTDIR=$DESTDIR install 3.21 } 3.22 3.23 # Rules to gen a SliTaz package suitable for Tazpkg.
4.1 --- a/libxcb-dev/receipt Wed Mar 05 23:46:52 2014 +0100 4.2 +++ b/libxcb-dev/receipt Thu Mar 06 00:03:58 2014 +0100 4.3 @@ -7,7 +7,7 @@ 4.4 MAINTAINER="mallory@sweetpeople.org" 4.5 LICENSE="other" 4.6 WEB_SITE="http://xcb.freedesktop.org/" 4.7 -#HOST_ARCH="i486 arm" 4.8 +HOST_ARCH="i486 arm" 4.9 4.10 WANTED="libxcb" 4.11 DEPENDS="libxcb xorg-libXau-dev xorg-libXdmcp-dev pkg-config"
5.1 --- a/libxcb/receipt Wed Mar 05 23:46:52 2014 +0100 5.2 +++ b/libxcb/receipt Thu Mar 06 00:03:58 2014 +0100 5.3 @@ -9,14 +9,16 @@ 5.4 WEB_SITE="http://xcb.freedesktop.org/" 5.5 TARBALL="$PACKAGE-$VERSION.tar.bz2" 5.6 WGET_URL="${WEB_SITE}dist/$TARBALL" 5.7 -#HOST_ARCH="i486 arm" 5.8 +HOST_ARCH="i486 arm" 5.9 5.10 DEPENDS="glibc-base xorg-libXau xorg-libXdmcp" 5.11 BUILD_DEPENDS="libxslt-dev xcb-proto xorg-libXau-dev xorg-libXdmcp-dev \ 5.12 autoconf automake libtool" 5.13 5.14 case "$ARCH" in 5.15 - arm) BUILD_DEPENDS="libxslt-dev xcb-proto xorg-libXau-dev" ;; 5.16 + arm) 5.17 + # We need host xcb-proto libxslt-dev file installed 5.18 + BUILD_DEPENDS="libxslt-dev xcb-proto xorg-libXau-dev xorg-libXdmcp-dev" ;; 5.19 esac 5.20 5.21 # Rules to configure and make the package.
6.1 --- a/libxslt-dev/receipt Wed Mar 05 23:46:52 2014 +0100 6.2 +++ b/libxslt-dev/receipt Thu Mar 06 00:03:58 2014 +0100 6.3 @@ -8,7 +8,7 @@ 6.4 LICENSE="MIT" 6.5 WANTED="libxslt" 6.6 WEB_SITE="http://xmlsoft.org/" 6.7 -#HOST_ARCH="i486 arm" 6.8 +HOST_ARCH="i486 arm" 6.9 6.10 DEPENDS="libxslt libxslt-python libgcrypt-dev libxml2-dev zlib-dev" 6.11
7.1 --- a/libxslt/receipt Wed Mar 05 23:46:52 2014 +0100 7.2 +++ b/libxslt/receipt Thu Mar 06 00:03:58 2014 +0100 7.3 @@ -9,13 +9,15 @@ 7.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 7.5 WEB_SITE="http://www.xmlsoft.org/XSLT/" 7.6 WGET_URL="ftp://xmlsoft.org/libxslt/$TARBALL" 7.7 -#HOST_ARCH="i486 arm" 7.8 +HOST_ARCH="i486 arm" 7.9 7.10 -DEPENDS="libgcrypt libxml2 zlib" 7.11 -BUILD_DEPENDS="libgcrypt-dev libxml2-dev zlib-dev python-dev" 7.12 +DEPENDS="libgcrypt libgpg-error libxml2 zlib" 7.13 +BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev libxml2-dev zlib-dev \ 7.14 +python-dev" 7.15 7.16 +# Handle cross compilation 7.17 case "$ARCH" in 7.18 - arm) BUILD_DEPENDS="libgcrypt-dev libxml2-dev" ;; 7.19 + arm) BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev libxml2-dev" ;; 7.20 esac 7.21 7.22 # Rules to configure and make the package.
8.1 --- a/moc/receipt Wed Mar 05 23:46:52 2014 +0100 8.2 +++ b/moc/receipt Thu Mar 06 00:03:58 2014 +0100 8.3 @@ -9,17 +9,22 @@ 8.4 TARBALL="$PACKAGE-$VERSION.tar.bz2" 8.5 WEB_SITE="http://moc.daper.net/" 8.6 WGET_URL="ftp://ftp.daper.net/pub/soft/moc/stable/$TARBALL" 8.7 +#HOST_ARCH="i486 arm" 8.8 8.9 DEPENDS="alsa-lib libvorbis libogg libmad libid3tag flac curl \ 8.10 libsamplerate libsndfile libtool ffmpeg ncursesw" 8.11 BUILD_DEPENDS="libvorbis-dev libogg-dev libmad-dev libid3tag-dev flac-dev \ 8.12 -curl-dev libsamplerate-dev alsa-lib-dev libcurl ncurses-dev \ 8.13 -libsndfile-dev libsndfile libid3tag pkg-config libsamplerate" 8.14 +curl-dev libsamplerate-dev alsa-lib-dev ncurses-dev libsndfile-dev libsamplerate" 8.15 + 8.16 +# Handle cross compilation 8.17 +case "$ARCH" in 8.18 + arm) BUILD_DEPENDS="alsa-lib-dev libid3tag-dev libogg-dev libvorbis-dev" ;; 8.19 +esac 8.20 8.21 # Rules to configure and make the package. 8.22 compile_rules() 8.23 { 8.24 - cd $src 8.25 + export LIBTOOL=${HOST_SYSTEM}-libtool 8.26 ./configure \ 8.27 --prefix=/usr \ 8.28 --infodir=/usr/share/info \
9.1 --- a/xorg-fontsproto/receipt Wed Mar 05 23:46:52 2014 +0100 9.2 +++ b/xorg-fontsproto/receipt Thu Mar 06 00:03:58 2014 +0100 9.3 @@ -10,6 +10,7 @@ 9.4 SOURCE="fontsproto" 9.5 TARBALL="$SOURCE-$VERSION.tar.bz2" 9.6 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 9.7 +HOST_ARCH="i486 arm" 9.8 9.9 DEPENDS="xorg-xproto pkg-config" 9.10 BUILD_DEPENDS="xorg-util-macros"
10.1 --- a/xorg-inputproto/receipt Wed Mar 05 23:46:52 2014 +0100 10.2 +++ b/xorg-inputproto/receipt Thu Mar 06 00:03:58 2014 +0100 10.3 @@ -10,6 +10,7 @@ 10.4 SOURCE="inputproto" 10.5 TARBALL="$SOURCE-$VERSION.tar.bz2" 10.6 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 10.7 +HOST_ARCH="i486 arm" 10.8 10.9 DEPENDS="xorg-xproto pkg-config" 10.10 BUILD_DEPENDS="xorg-util-macros"
11.1 --- a/xorg-kbproto/receipt Wed Mar 05 23:46:52 2014 +0100 11.2 +++ b/xorg-kbproto/receipt Thu Mar 06 00:03:58 2014 +0100 11.3 @@ -10,6 +10,7 @@ 11.4 SOURCE="kbproto" 11.5 TARBALL="$SOURCE-$VERSION.tar.bz2" 11.6 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 11.7 +HOST_ARCH="i486 arm" 11.8 11.9 DEPENDS="xorg-utils-macros pkg-config" 11.10 BUILD_DEPENDS="xorg-util-macros"
12.1 --- a/xorg-libX11-dev/receipt Wed Mar 05 23:46:52 2014 +0100 12.2 +++ b/xorg-libX11-dev/receipt Thu Mar 06 00:03:58 2014 +0100 12.3 @@ -7,6 +7,7 @@ 12.4 MAINTAINER="pankso@slitaz.org" 12.5 LICENSE="other" 12.6 WEB_SITE="http://www.x.org/" 12.7 +HOST_ARCH="i486 arm" 12.8 12.9 WANTED="xorg-libX11" 12.10 DEPENDS="xorg-libX11 xorg-xtrans libxcb-dev xorg-kbproto xorg-inputproto \
13.1 --- a/xorg-libX11/receipt Wed Mar 05 23:46:52 2014 +0100 13.2 +++ b/xorg-libX11/receipt Thu Mar 06 00:03:58 2014 +0100 13.3 @@ -10,10 +10,11 @@ 13.4 SOURCE="libX11" 13.5 TARBALL="$SOURCE-$VERSION.tar.bz2" 13.6 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 13.7 +HOST_ARCH="i486 arm" 13.8 13.9 -DEPENDS="libxcb" 13.10 +DEPENDS="libxcb xorg-libXau xorg-libXdmcp" 13.11 BUILD_DEPENDS="xorg-xtrans libxcb-dev xorg-kbproto xorg-xf86bigfontproto \ 13.12 -xorg-inputproto xorg-xextproto" 13.13 +xorg-inputproto xorg-xextproto xorg-libXau-dev xorg-libXdmcp-dev" 13.14 13.15 # Rules to configure and make the package. 13.16 compile_rules()
14.1 --- a/xorg-libXext/receipt Wed Mar 05 23:46:52 2014 +0100 14.2 +++ b/xorg-libXext/receipt Thu Mar 06 00:03:58 2014 +0100 14.3 @@ -10,6 +10,7 @@ 14.4 SOURCE="libXext" 14.5 TARBALL="$SOURCE-$VERSION.tar.bz2" 14.6 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 14.7 +HOST_ARCH="i486 arm" 14.8 14.9 DEPENDS="xorg-libX11" 14.10 BUILD_DEPENDS="xorg-libX11-dev"
15.1 --- a/xorg-libXfont-dev/receipt Wed Mar 05 23:46:52 2014 +0100 15.2 +++ b/xorg-libXfont-dev/receipt Thu Mar 06 00:03:58 2014 +0100 15.3 @@ -7,6 +7,7 @@ 15.4 MAINTAINER="pankso@slitaz.org" 15.5 LICENSE="other" 15.6 WEB_SITE="http://www.x.org/" 15.7 +HOST_ARCH="i486 arm" 15.8 15.9 WANTED="xorg-libXfont" 15.10 DEPENDS="xorg-libXfont xorg-fontsproto xorg-libfontenc-dev freetype-dev \
16.1 --- a/xorg-libXfont/receipt Wed Mar 05 23:46:52 2014 +0100 16.2 +++ b/xorg-libXfont/receipt Thu Mar 06 00:03:58 2014 +0100 16.3 @@ -10,9 +10,11 @@ 16.4 TARBALL="$SOURCE-$VERSION.tar.bz2" 16.5 WEB_SITE="http://www.x.org/" 16.6 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 16.7 +HOST_ARCH="i486 arm" 16.8 16.9 -DEPENDS="bzlib freetype xorg-libfontenc" 16.10 -BUILD_DEPENDS="freetype-dev zlib-dev xorg-xtrans xorg-fontsproto xorg-libfontenc-dev" 16.11 +DEPENDS="bzlib freetype xorg-libfontenc xorg-libXfont" 16.12 +BUILD_DEPENDS="bzip2-dev freetype-dev zlib-dev xorg-xtrans xorg-fontsproto \ 16.13 +xorg-libfontenc-dev" 16.14 16.15 # Rules to configure and make the package. 16.16 compile_rules()
17.1 --- a/xorg-libXxf86vm/receipt Wed Mar 05 23:46:52 2014 +0100 17.2 +++ b/xorg-libXxf86vm/receipt Thu Mar 06 00:03:58 2014 +0100 17.3 @@ -10,9 +10,10 @@ 17.4 TARBALL="$SOURCE-$VERSION.tar.bz2" 17.5 WEB_SITE="http://www.x.org/" 17.6 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 17.7 +#HOST_ARCH="i486 arm" 17.8 17.9 -DEPENDS="xorg-libXext" 17.10 -BUILD_DEPENDS="xorg-libXext-dev xorg-xf86vidmodeproto" 17.11 +DEPENDS="xorg-libX11 xorg-libXext" 17.12 +BUILD_DEPENDS="xorg-libX11-dev xorg-libXext-dev xorg-xf86vidmodeproto" 17.13 17.14 # Rules to configure and make the package. 17.15 compile_rules()
18.1 --- a/xorg-libfontenc-dev/receipt Wed Mar 05 23:46:52 2014 +0100 18.2 +++ b/xorg-libfontenc-dev/receipt Thu Mar 06 00:03:58 2014 +0100 18.3 @@ -7,9 +7,10 @@ 18.4 MAINTAINER="pankso@slitaz.org" 18.5 LICENSE="other" 18.6 WEB_SITE="http://www.x.org/" 18.7 +HOST_ARCH="i486 arm" 18.8 18.9 WANTED="xorg-libfontenc" 18.10 -DEPENDS="xorg-libfontenc pkg-config" 18.11 +DEPENDS="$WANTED" 18.12 18.13 # Rules to gen a SliTaz package suitable for Tazpkg. 18.14 genpkg_rules()
19.1 --- a/xorg-libfontenc/receipt Wed Mar 05 23:46:52 2014 +0100 19.2 +++ b/xorg-libfontenc/receipt Thu Mar 06 00:03:58 2014 +0100 19.3 @@ -10,6 +10,7 @@ 19.4 TARBALL="$SOURCE-$VERSION.tar.bz2" 19.5 WEB_SITE="http://www.x.org/" 19.6 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 19.7 +HOST_ARCH="i486 arm" 19.8 19.9 DEPENDS="zlib" 19.10 BUILD_DEPENDS="zlib-dev xorg-xproto"
20.1 --- a/xorg-libpciaccess-dev/receipt Wed Mar 05 23:46:52 2014 +0100 20.2 +++ b/xorg-libpciaccess-dev/receipt Thu Mar 06 00:03:58 2014 +0100 20.3 @@ -9,6 +9,7 @@ 20.4 WANTED="xorg-libpciaccess" 20.5 SOURCE="libpciaccess" 20.6 WEB_SITE="http://www.x.org/" 20.7 +HOST_ARCH="i486 arm" 20.8 20.9 DEPENDS="xorg-libpciaccess pkg-config" 20.10
21.1 --- a/xorg-libpciaccess/receipt Wed Mar 05 23:46:52 2014 +0100 21.2 +++ b/xorg-libpciaccess/receipt Thu Mar 06 00:03:58 2014 +0100 21.3 @@ -10,6 +10,7 @@ 21.4 TARBALL="$SOURCE-$VERSION.tar.bz2" 21.5 WEB_SITE="http://www.x.org/" 21.6 WGET_URL="ftp://ftp.solnet.ch/mirror/x.org/pub/individual/lib/$TARBALL" 21.7 +HOST_ARCH="i486 arm" 21.8 21.9 # Rules to configure and make the package. 21.10 compile_rules()
22.1 --- a/xorg-libxkbfile-dev/receipt Wed Mar 05 23:46:52 2014 +0100 22.2 +++ b/xorg-libxkbfile-dev/receipt Thu Mar 06 00:03:58 2014 +0100 22.3 @@ -9,8 +9,9 @@ 22.4 SOURCE="libxkbfile" 22.5 WANTED="xorg-libxkbfile" 22.6 WEB_SITE="http://www.x.org/" 22.7 +HOST_ARCH="i486 arm" 22.8 22.9 -DEPENDS="xorg-libX11-dev xorg-libxkbfile pkg-config" 22.10 +DEPENDS="xorg-libX11-dev xorg-libxkbfile" 22.11 22.12 # Rules to gen a SliTaz package suitable for Tazpkg. 22.13 genpkg_rules()
23.1 --- a/xorg-libxkbfile/receipt Wed Mar 05 23:46:52 2014 +0100 23.2 +++ b/xorg-libxkbfile/receipt Thu Mar 06 00:03:58 2014 +0100 23.3 @@ -10,19 +10,20 @@ 23.4 TARBALL="$SOURCE-$VERSION.tar.bz2" 23.5 WEB_SITE="http://www.x.org/" 23.6 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 23.7 +HOST_ARCH="i486 arm" 23.8 23.9 -DEPENDS="xorg-libX11" 23.10 -BUILD_DEPENDS="xorg-libX11-dev" 23.11 +DEPENDS="xorg-libX11 libxcb xorg-libXau xorg-libXdmcp" 23.12 +BUILD_DEPENDS="xorg-libX11-dev libxcb-dev xorg-libXau-dev xorg-libXdmcp-dev" 23.13 23.14 # Rules to configure and make the package. 23.15 compile_rules() 23.16 { 23.17 - cd $src 23.18 - ./configure --prefix=/usr --sysconfdir=/etc \ 23.19 - --mandir=/usr/share/man --localstatedir=/var \ 23.20 - $CONFIGURE_ARGS 23.21 - make 23.22 - make DESTDIR=$DESTDIR install 23.23 + ./configure \ 23.24 + --sysconfdir=/etc \ 23.25 + --localstatedir=/var \ 23.26 + $CONFIGURE_ARGS && 23.27 + make && 23.28 + make DESTDIR=$DESTDIR install 23.29 } 23.30 23.31 # Rules to gen a SliTaz package suitable for Tazpkg.
24.1 --- a/xorg-server-light/receipt Wed Mar 05 23:46:52 2014 +0100 24.2 +++ b/xorg-server-light/receipt Thu Mar 06 00:03:58 2014 +0100 24.3 @@ -12,6 +12,7 @@ 24.4 WEB_SITE="http://www.x.org/" 24.5 WGET_URL="http://xorg.freedesktop.org/releases/individual/xserver/$TARBALL" 24.6 PROVIDE="xorg-server" 24.7 +#HOST_ARCH="i486 arm" 24.8 24.9 DEPENDS="xorg-xkeyboard-config xorg-libpciaccess xorg-libXxf86vm \ 24.10 xorg-libXfont xorg-libXau xorg-base-fonts libgcrypt pixman udev \ 24.11 @@ -19,13 +20,15 @@ 24.12 BUILD_DEPENDS="xorg-libxkbfile-dev xorg-libpciaccess-dev xorg-libXxf86vm-dev \ 24.13 xorg-libXfont-dev libgcrypt-dev pixman-dev udev-dev perl flex xorg-dev-proto" 24.14 24.15 +# Handle arch compilation 24.16 +case "$ARCH" in 24.17 + arm) BUILD_DEPENDS="xorg-libxkbfile-dev xorg-libpciaccess-dev \ 24.18 +xorg-libXfont-dev libgcrypt-dev pixman-dev" ;; 24.19 +esac 24.20 + 24.21 # Rules to configure and make the package. 24.22 compile_rules() 24.23 { 24.24 - #CFLAGS="-march=$ARCH -O2 -pipe -fomit-frame-pointer" 24.25 - #CXXFLAGS="$CFLAGS" 24.26 - # Sizes: 792.0K with -Os and 968.0K 24.27 - cd $src 24.28 ./configure \ 24.29 --prefix=/usr \ 24.30 --sysconfdir=/etc \ 24.31 @@ -49,6 +52,7 @@ 24.32 --disable-xvfb \ 24.33 --disable-xnest \ 24.34 --disable-xfbdev \ 24.35 + --disable-xv \ 24.36 $CONFIGURE_ARGS && 24.37 make && make install 24.38 }
25.1 --- a/xorg-xextproto/receipt Wed Mar 05 23:46:52 2014 +0100 25.2 +++ b/xorg-xextproto/receipt Thu Mar 06 00:03:58 2014 +0100 25.3 @@ -10,6 +10,7 @@ 25.4 SOURCE="xextproto" 25.5 TARBALL="$SOURCE-$VERSION.tar.bz2" 25.6 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 25.7 +HOST_ARCH="i486 arm" 25.8 25.9 DEPENDS="xorg-util-macros pkg-config" 25.10 BUILD_DEPENDS="xorg-util-macros"
26.1 --- a/xorg-xf86bigfontproto/receipt Wed Mar 05 23:46:52 2014 +0100 26.2 +++ b/xorg-xf86bigfontproto/receipt Thu Mar 06 00:03:58 2014 +0100 26.3 @@ -10,6 +10,7 @@ 26.4 SOURCE="xf86bigfontproto" 26.5 TARBALL="$SOURCE-$VERSION.tar.bz2" 26.6 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 26.7 +HOST_ARCH="i486 arm" 26.8 26.9 DEPENDS="xorg-util-macros pkg-config" 26.10 BUILD_DEPENDS="xorg-util-macros"
27.1 --- a/xorg-xf86vidmodeproto/receipt Wed Mar 05 23:46:52 2014 +0100 27.2 +++ b/xorg-xf86vidmodeproto/receipt Thu Mar 06 00:03:58 2014 +0100 27.3 @@ -10,6 +10,7 @@ 27.4 SOURCE="xf86vidmodeproto" 27.5 TARBALL="$SOURCE-$VERSION.tar.bz2" 27.6 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 27.7 +HOST_ARCH="i486 arm" 27.8 27.9 DEPENDS="xorg-xproto pkg-config" 27.10 BUILD_DEPENDS="xorg-util-macros"
28.1 --- a/xorg-xtrans/receipt Wed Mar 05 23:46:52 2014 +0100 28.2 +++ b/xorg-xtrans/receipt Thu Mar 06 00:03:58 2014 +0100 28.3 @@ -10,6 +10,7 @@ 28.4 SOURCE="xtrans" 28.5 TARBALL="$SOURCE-$VERSION.tar.bz2" 28.6 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 28.7 +HOST_ARCH="i486 arm" 28.8 28.9 DEPENDS="xorg-xproto" 28.10 BUILD_DEPENDS="xorg-util-macros"