mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-01-23 17:33:34 +08:00
Rebuilt Wine (raw input) against OpenAL 1.14.
This commit is contained in:
parent
a99909f914
commit
d7ddd3a9e3
158
wine-rawinput/PKGBUILD
Normal file
158
wine-rawinput/PKGBUILD
Normal file
@ -0,0 +1,158 @@
|
||||
# Lib32 Packages for Chakra, part of chakra-project.org
|
||||
#
|
||||
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
||||
# maintainer (x86_64): Anke Boersma <abveritas[at]chakra-project[dot]org>
|
||||
|
||||
_pkgbasename=wine
|
||||
pkgname=wine-rawinput
|
||||
pkgver=1.5.11
|
||||
pkgrel=2
|
||||
|
||||
_pkgbasever=${pkgver/rc/-rc}
|
||||
|
||||
source=(http://ibiblio.org/pub/linux/system/emulators/$_pkgbasename/$_pkgbasename-$_pkgbasever.tar.bz2
|
||||
rawinput3.patch)
|
||||
md5sums=('930485c8df59edcf0a6e3fd87cca8b39'
|
||||
'b68cad68f5cd75241e5c89b25114cf6e')
|
||||
|
||||
pkgdesc="A compatibility layer for running Windows programs with RawInput patch"
|
||||
url="http://www.winehq.com"
|
||||
arch=(i686 x86_64)
|
||||
license=(LGPL)
|
||||
categories=('system')
|
||||
install=wine.install
|
||||
|
||||
depends=(
|
||||
fontconfig lib32-fontconfig
|
||||
mesa lib32-mesa
|
||||
libxcursor lib32-libxcursor
|
||||
libxrandr lib32-libxrandr
|
||||
libxdamage lib32-libxdamage
|
||||
libxxf86dga lib32-libxxf86dga
|
||||
alsa-lib lib32-alsa-lib
|
||||
lcms lib32-lcms
|
||||
mpg123 lib32-mpg123
|
||||
openal lib32-openal
|
||||
libxml2 lib32-libxml2
|
||||
libxi lib32-libxi
|
||||
gettext lib32-gettext
|
||||
desktop-file-utils
|
||||
)
|
||||
|
||||
makedepends=(autoconf ncurses bison perl fontforge flex prelink
|
||||
'gcc>=4.5.0-2' 'gcc-multilib>=4.5.0-2'
|
||||
giflib lib32-giflib
|
||||
libxpm lib32-libxpm
|
||||
libpng lib32-libpng
|
||||
libxinerama lib32-libxinerama
|
||||
libxcomposite lib32-libxcomposite
|
||||
libxmu lib32-libxmu
|
||||
libxxf86vm lib32-libxxf86vm
|
||||
libxml2 lib32-libxml2
|
||||
libxslt lib32-libxslt
|
||||
libldap lib32-libldap
|
||||
lcms lib32-lcms
|
||||
mpg123 lib32-mpg123
|
||||
openal lib32-openal
|
||||
jack lib32-jack
|
||||
libcups lib32-libcups
|
||||
gnutls lib32-gnutls
|
||||
v4l-utils lib32-v4l-utils
|
||||
alsa-lib lib32-alsa-lib
|
||||
oss
|
||||
samba
|
||||
)
|
||||
|
||||
optdepends=(
|
||||
giflib lib32-giflib
|
||||
libpng lib32-libpng
|
||||
libldap lib32-libldap
|
||||
jack lib32-jack
|
||||
libcups lib32-libcups
|
||||
gnutls lib32-gnutls
|
||||
v4l-utils lib32-v4l-utils
|
||||
oss cups
|
||||
samba
|
||||
)
|
||||
|
||||
if [[ $CARCH == i686 ]]; then
|
||||
# Strip lib32 etc. on i686
|
||||
depends=(${depends[@]/*32-*/})
|
||||
makedepends=(${makedepends[@]/*32-*/})
|
||||
makedepends=(${makedepends[@]/*-multilib*/})
|
||||
optdepends=(${optdepends[@]/*32-*/})
|
||||
fi
|
||||
|
||||
provides=("wine=$pkgver")
|
||||
conflicts=('wine')
|
||||
|
||||
build() {
|
||||
cd "$srcdir"
|
||||
|
||||
# Allow ccache to work
|
||||
mv $_pkgbasename-$_pkgbasever $_pkgbasename
|
||||
|
||||
cd "$_pkgbasename"
|
||||
patch -Np1 -i ../rawinput3.patch
|
||||
./tools/make_requests
|
||||
cd "$srcdir"
|
||||
# Get rid of old build dirs
|
||||
rm -rf $_pkgbasename-{32,64}-build
|
||||
mkdir $_pkgbasename-32-build
|
||||
|
||||
# These additional CFLAGS solve FS#27662
|
||||
export CFLAGS="${CFLAGS/-D_FORTIFY_SOURCE=2/} -D_FORTIFY_SOURCE=0"
|
||||
export CXXFLAGS="${CFLAGS/-D_FORTIFY_SOURCE=2/} -D_FORTIFY_SOURCE=0"
|
||||
|
||||
if [[ $CARCH == x86_64 ]]; then
|
||||
msg2 "Building Wine-64..."
|
||||
|
||||
mkdir $_pkgbasename-64-build
|
||||
cd "$srcdir/$_pkgbasename-64-build"
|
||||
../$_pkgbasename/configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--libdir=/usr/lib \
|
||||
--with-x \
|
||||
--enable-win64
|
||||
|
||||
make
|
||||
|
||||
_wine32opts=(
|
||||
--libdir=/usr/lib32
|
||||
--with-wine64="$srcdir/$_pkgbasename-64-build"
|
||||
)
|
||||
|
||||
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
|
||||
fi
|
||||
|
||||
msg2 "Building Wine-32..."
|
||||
cd "$srcdir/$_pkgbasename-32-build"
|
||||
../$_pkgbasename/configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--with-x \
|
||||
"${_wine32opts[@]}"
|
||||
|
||||
# These additional CFLAGS solve FS#27560
|
||||
make CFLAGS+="-mstackrealign" CXXFLAGS+="-mstackrealign"
|
||||
}
|
||||
|
||||
package() {
|
||||
msg2 "Packaging Wine-32..."
|
||||
cd "$srcdir/$_pkgbasename-32-build"
|
||||
|
||||
if [[ $CARCH == i686 ]]; then
|
||||
make prefix="$pkgdir/usr" install
|
||||
else
|
||||
make prefix="$pkgdir/usr" \
|
||||
libdir="$pkgdir/usr/lib32" \
|
||||
dlldir="$pkgdir/usr/lib32/wine" install
|
||||
|
||||
msg2 "Packaging Wine-64..."
|
||||
cd "$srcdir/$_pkgbasename-64-build"
|
||||
make prefix="$pkgdir/usr" \
|
||||
libdir="$pkgdir/usr/lib" \
|
||||
dlldir="$pkgdir/usr/lib/wine" install
|
||||
fi
|
||||
}
|
2828
wine-rawinput/rawinput3.patch
Normal file
2828
wine-rawinput/rawinput3.patch
Normal file
File diff suppressed because it is too large
Load Diff
57
wine-rawinput/wine.install
Normal file
57
wine-rawinput/wine.install
Normal file
@ -0,0 +1,57 @@
|
||||
post_upgrade() {
|
||||
update-desktop-database -q
|
||||
echo "This wine package is wow64 enabled. This means it can run 32bit/64bit Windows apps on x86_64."
|
||||
echo "If you are on x86_64, the default WINEARCH will be win64."
|
||||
echo "This will cause a lot of Windows applications to malfunction even if they usually work in wine."
|
||||
echo "Please create your ~/.wine with 'WINEARCH=win32 winecfg' if you are unsure and on x86_64."
|
||||
echo "See the Arch wiki on wine for more information."
|
||||
echo ""
|
||||
echo ""
|
||||
echo "KDE 4 Menu Fix"
|
||||
echo "The Wine menu items may appear in 'Lost & Found' instead of the Wine menu for KDE 4."
|
||||
echo "This is because kde-applications.menu is missing the MergeDir option."
|
||||
echo "Edit /etc/xdg/menus/kde-applications.menu"
|
||||
echo "At the end of the file add <MergeDir>applications-merged</MergeDir> after <DefaultMergeDirs/>, "
|
||||
echo "it should look like this:"
|
||||
echo " <Include>"
|
||||
echo " <And>"
|
||||
echo " <Category>KDE</Category>"
|
||||
echo " <Category>Core</Category>"
|
||||
echo " </And>"
|
||||
echo " </Include>"
|
||||
echo " <DefaultMergeDirs/>"
|
||||
echo " <MergeDir>applications-merged</MergeDir> <!-- ADD THIS -->"
|
||||
echo " <MergeFile>applications-kmenuedit.menu</MergeFile>"
|
||||
echo "</Menu>"
|
||||
}
|
||||
|
||||
post_install() {
|
||||
update-desktop-database -q
|
||||
echo "This wine package is wow64 enabled. This means it can run 32bit/64bit Windows apps on x86_64."
|
||||
echo "If you are on x86_64, the default WINEARCH will be win64."
|
||||
echo "This will cause a lot of Windows applications to malfunction even if they usually work in wine."
|
||||
echo "Please create your ~/.wine with 'WINEARCH=win32 winecfg' if you are unsure and on x86_64."
|
||||
echo "See the Arch wiki on wine for more information."
|
||||
echo ""
|
||||
echo ""
|
||||
echo "KDE 4 Menu Fix"
|
||||
echo "The Wine menu items may appear in 'Lost & Found' instead of the Wine menu for KDE 4."
|
||||
echo "This is because kde-applications.menu is missing the MergeDir option."
|
||||
echo "Edit /etc/xdg/menus/kde-applications.menu"
|
||||
echo "At the end of the file add <MergeDir>applications-merged</MergeDir> after <DefaultMergeDirs/>, "
|
||||
echo "it should look like this:"
|
||||
echo " <Include>"
|
||||
echo " <And>"
|
||||
echo " <Category>KDE</Category>"
|
||||
echo " <Category>Core</Category>"
|
||||
echo " </And>"
|
||||
echo " </Include>"
|
||||
echo " <DefaultMergeDirs/>"
|
||||
echo " <MergeDir>applications-merged</MergeDir> <!-- ADD THIS -->"
|
||||
echo " <MergeFile>applications-kmenuedit.menu</MergeFile>"
|
||||
echo "</Menu>"
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
update-desktop-database -q
|
||||
}
|
Loading…
Reference in New Issue
Block a user