Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
ffmpeg 2.2-1 i686 by SirAnthony
Browse files Browse the repository at this point in the history
  • Loading branch information
aix27249 committed Apr 5, 2014
1 parent b118f25 commit 6f1975c
Show file tree
Hide file tree
Showing 905 changed files with 42,435 additions and 223,091 deletions.
84 changes: 76 additions & 8 deletions 0ad-data/ABUILD
@@ -1,20 +1,88 @@
#ABUILD created by/создан: K900, k0009000 at gmail.com
pkgname=0ad-data
pkgver=alpha10
_pkgver=r11863-alpha
pkgbuild=1
arch=('noarch')
pkgname=0ad
pkgver=alpha15
_pkgver=0.0.15-alpha
pkgbuild=3
arch=('auto')

shortdesc="A cross-platform, open source 3D strategy game"

source=("http://releases.wildfiregames.com/0ad-$_pkgver-unix-data.tar.xz")
source=("http://releases.wildfiregames.com/$pkgname-$_pkgver-unix-build.tar.xz"
"http://releases.wildfiregames.com/0ad-$_pkgver-unix-data.tar.xz")

tags="games games-strategy"

build_deps="cmake gloox"
adddep="0ad-data"
pkglist="data"




build()
{
go_src_dir

if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi

if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi


export CFLAGS="$SLKCFLAGS"
export CXXFLAGS="$SLKCFLAGS"
export CPPFLAGS="$SLKCFLAGS"
export LDFLAGS="-L/usr/lib${LIBDIRSUFFIX}"

sed -i 's/-mt//g' build/premake/extern_libs4.lua

burn_patches
install -d ${pkgdir}/opt/0ad
cd build/workspaces/
./update-workspaces.sh
cd gcc/
make CONFIG=Release

go_src_dir
install -d ${pkgdir}/opt/${pkgname}
cp -r binaries/* ${pkgdir}/opt/${pkgname}
rm -r ${pkgdir}/opt/${pkgname}/data/
rm -r ${pkgdir}/opt/${pkgname}/system/{test,*.a}

install -D -m755 ${filedir}/${pkgname}.sh ${pkgdir}/usr/bin/${pkgname}
install -D -m755 ${filedir}/${pkgname}-editor.sh ${pkgdir}/usr/bin/${pkgname}-editor

install -D -m 0644 "${filedir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
install -D -m 0644 "${filedir}/${pkgname}-editor.desktop" "${pkgdir}/usr/share/applications/${pkgname}-editor.desktop"
install -D -m 0644 "${filedir}/${pkgname}.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
}

data() {
pkgname="${p_pkgname}-data"
shortdesc="Data files for 0ad"
arch='noarch'
custom_opts="skip_gendeps no_strip"
}

data_prep() {

install -d ${pkgdir}/opt/0ad
cp -r binaries/* ${pkgdir}/opt/0ad
}


10 changes: 10 additions & 0 deletions 0ad-data/files/0ad-editor.desktop
@@ -0,0 +1,10 @@
[Desktop Entry]
Encoding=UTF-8
Categories=Game;StrategyGame;
Name=0 A.D. Editor
Name[es]=Editor de 0 A.D.
Name[gl]=Editor do 0 A.D.
Icon=0ad
Exec=/usr/bin/0ad-editor
Terminal=false
Type=Application
3 changes: 3 additions & 0 deletions 0ad-data/files/0ad-editor.sh
@@ -0,0 +1,3 @@
#!/bin/sh
cd /opt/0ad/system
./pyrogenesis -editor
10 changes: 10 additions & 0 deletions 0ad-data/files/0ad.desktop
@@ -0,0 +1,10 @@
[Desktop Entry]
Version=1.0
Name=0 A.D.
Comment=A real-time strategy game of ancient warfare
Comment[it]=Videogioco strategico in tempo reale di guerre antiche
Exec=/usr/bin/0ad
Icon=0ad
Terminal=false
Type=Application
Categories=Game;StrategyGame;
Binary file added 0ad-data/files/0ad.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions 0ad-data/files/0ad.sh
@@ -0,0 +1,3 @@
#!/bin/sh
cd /opt/0ad/system
./pyrogenesis $*
64 changes: 57 additions & 7 deletions 0ad/ABUILD
@@ -1,24 +1,60 @@
#ABUILD created by/создан: K900, k0009000 at gmail.com
pkgname=0ad
pkgver=alpha10
_pkgver=r11863-alpha
pkgbuild=1
pkgver=alpha15
_pkgver=0.0.15-alpha
pkgbuild=4
arch=('auto')

shortdesc="A cross-platform, open source 3D strategy game"

source=("http://releases.wildfiregames.com/$pkgname-$_pkgver-unix-build.tar.xz")
source=("http://releases.wildfiregames.com/$pkgname-$_pkgver-unix-build.tar.xz"
"http://releases.wildfiregames.com/0ad-$_pkgver-unix-data.tar.xz")

tags="games games-strategy"

adddep="0ad-data"
build_deps="cmake gloox"
adddep="gloox 0ad-data"
pkglist="data"




build()
{
go_src_dir

if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi

if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi


export CFLAGS="$SLKCFLAGS"
export CXXFLAGS="$SLKCFLAGS"
export CPPFLAGS="$SLKCFLAGS"
export LDFLAGS="-L/usr/lib${LIBDIRSUFFIX}"

sed -i 's/-mt//g' build/premake/extern_libs4.lua

burn_patches
cd build/workspaces/
./update-workspaces.sh
./update-workspaces.sh
cd gcc/
make CONFIG=Release

Expand All @@ -36,3 +72,17 @@ build()
install -D -m 0644 "${filedir}/${pkgname}.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
}

data() {
pkgname="${p_pkgname}-data"
shortdesc="Data files for 0ad"
arch='noarch'
custom_opts="skip_gendeps no_strip"
}

data_prep() {

install -d ${pkgdir}/opt/0ad
cp -r binaries/* ${pkgdir}/opt/0ad
}


18 changes: 10 additions & 8 deletions MPlayer/ABUILD
@@ -1,17 +1,19 @@
pkgname=MPlayer
pkgver=1.1.1
pkgver=r36558
#`svn info svn://svn.mplayerhq.hu/mplayer/trunk | grep "Revision:" | cut -f2 -d ' '`
strict_version="yes"
pkgbuild=1
arch=('auto')

shortdesc="MPlayer (media player)"
longdesc=("MPlayer is a movie player. It plays most MPEG/VOB, AVI, Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, RealMedia, Matroska, NUT, NuppelVideo, FLI, YUV4MPEG, FILM, RoQ, PVA files, supported by many native, XAnim, and Win32 DLL codecs. You can watch VideoCD, SVCD, DVD, 3ivx, DivX 3/4/5, WMV and even H.264 movies.")


build_deps="subversion videoproto"

source=("svn:svn://svn.mplayerhq.hu/mplayer/trunk")

tags="xapps media-video"
build_deps="libXxf86dga libXxf86vm libmad libXinerama sdl lame libtheora xvidcore libmng libXScrnSaver smbclient
aalib libcaca x264 faac faad2 libXvMC enca libvdpau opencore-amr libdca a52dec schroedinger libvpx ffmpeg
fribidi infozip mesa yasm git fontconfig mpg123 ladspa libass libbluray libcdio-paranoia subversion"

pkglist=mencoder

Expand All @@ -35,17 +37,16 @@ build() {
--disable-ossaudio \
--disable-esd \
--disable-arts \
--disable-jack \
--enable-jack \
--enable-vdpau \
--enable-shm \
--enable-xvmc \
--enable-x264 \
--language=all \
--extra-ldflags="-lx264" \
--extra-ldflags="-ljack -lx264" \
--enable-runtime-cpudetection

svnrev=r`svn info svn://svn.mplayerhq.hu/mplayer/trunk | grep "Revision:" | cut -f2 -d ' '`
echo "${pkgver}-${svnrev}" > VERSION
echo "1.0rc4-${pkgver}" > VERSION
if [ $ARCH = "i686" ]; then
sed 's|-march=i486|-march=i686|g' -i config.mak
fi
Expand All @@ -72,3 +73,4 @@ mencoder() {
shortdesc="mencoder (MPlayer Media Encoder)"
longdesc=("mencoder is a simple movie encoder, designed to encode MPlayer-playable movies (see above) to other MPlayer-playablev formats (see below). It encodes to MPEG-4 (DivX/Xvid), one of the libavcodec codecs and PCM/MP3/VBRMP3 audio in 1, 2 or 3 passes. Furthermore it has stream copying abilities, a powerful filter system (crop, expand, flip, postprocess, rotate, scale, noise, RGB/YUV conversion) and more.")
}

60 changes: 10 additions & 50 deletions NetworkManager/ABUILD
@@ -1,56 +1,16 @@
# Package metadata
#ABUILD created by/создан: khvalera, khvalera at narod.ru

pkgname=NetworkManager
pkgver=0.9.2.0
pkgbuild=2
arch=("auto")

config_files="etc/NetworkManager/NetworkManager.conf"

# Package description
shortdesc=('Network Management daemon')
longdesc=('Network Management daemon')

# Source URL
source=("http://ftp.gnome.org/pub/gnome/sources/NetworkManager/0.9/NetworkManager-${pkgver}.tar.bz2")

# Tags
tags=("network net-misc")

# Manually-added dependencies
adddep="ppp>=2.4.5 iptables dhcp wireless-tools wpa_supplicant rp-pppoe"

# Build system
BUILD_SYSTEM="autotools"
BUILD_KEYS="--prefix=/usr \
--bindir=/usr/bin \
--sbindir=/usr/sbin \
--includedir=/usr/include \
--mandir=/usr/man \
--infodir=/usr/info \
--libdir=/usr/lib$LIBDIRSUFFIX \
--sysconfdir=/etc \
--localstatedir=/var \
--libexecdir=/usr/lib$LIBDIRSUFFIX/networkmanager \
--with-iptables=/usr/sbin/iptables \
--enable-more-warnings=no \
--disable-static \
--with-dhcpcd=no \
--with-dhclient=/sbin/dhclient \
--with-crypto=gnutls \
--with-distro=gentoo \
--disable-wimax"
pkgbuild=3
arch=('noarch')

INSTALL_KEYS="DESTDIR=${pkgdir}"
shortdesc="NetworkManager (Virtual package.)"

after_build() {
set -e
install -m644 "${filedir}/nm-system-settings.conf" "${pkgdir}/etc/NetworkManager/NetworkManager.conf" || exit 1
tags="net-misc virtual"

# we don't need these docs
rm -rf ${pkgdir}/usr/share/gtk-doc

# I don't like camelcase in init.d:
mv ${pkgdir}/etc/init.d/NetworkManager ${pkgdir}/etc/init.d/networkmanager
set +e
}
adddep="networkmanager"

build(){
echo "End build"
}

0 comments on commit 6f1975c

Please sign in to comment.