summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-05-05 00:01:14 +0000
committerroot <root@rshg054.dnsready.net>2012-05-05 00:01:14 +0000
commit5801c5acd80d30d17aaef76b8bc401c61b3ef3c9 (patch)
treeeb041f2a83edee4a597678749b22181df9a32ecb /community
parentb2c353d874b85e06f355a9419852e2616613c7d0 (diff)
Sat May 5 00:01:14 UTC 2012
Diffstat (limited to 'community')
-rw-r--r--community/cl/PKGBUILD36
-rw-r--r--community/csfml/PKGBUILD4
-rw-r--r--community/esdl/PKGBUILD18
-rw-r--r--community/fox/PKGBUILD8
-rw-r--r--community/minidlna/PKGBUILD18
-rw-r--r--community/minidlna/minidlna.conf4
-rw-r--r--community/minidlna/minidlna.service12
-rw-r--r--community/notion/PKGBUILD13
-rwxr-xr-xcommunity/pragha/PKGBUILD8
-rw-r--r--community/wings3d/PKGBUILD20
-rw-r--r--community/wings3d/wings3d.sh2
11 files changed, 106 insertions, 37 deletions
diff --git a/community/cl/PKGBUILD b/community/cl/PKGBUILD
new file mode 100644
index 000000000..714f8dd28
--- /dev/null
+++ b/community/cl/PKGBUILD
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 61589 2012-01-03 23:37:49Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: kappa <kappacurve@gmail.com>
+
+pkgname=cl
+pkgver=1.0
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc="OpenCL binding for the Erlang programming language"
+url="http://github.com/tonyrog/cl"
+license=('custom:unknown')
+depends=('erlang' 'libcl' 'bash')
+makedepends=('opencl-headers')
+source=("$pkgname-$pkgver.tar.gz::https://nodeload.github.com/tonyrog/cl/tarball/master")
+md5sums=('62960d4b8ce47be7d2e3898b99a30fd1')
+_dirname='tonyrog-cl-bba7b77'
+
+build() {
+ cd "$srcdir/$_dirname"
+
+ make
+
+ cd c_src
+ rm config.*
+}
+
+package() {
+ cd "$srcdir/$_dirname"
+
+ mkdir -p "$pkgdir/usr/lib/erlang/lib/$pkgname-$pkgver"
+ cp -r * "$pkgdir/usr/lib/erlang/lib/$pkgname-$pkgver"
+
+ #install -Dm644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:
diff --git a/community/csfml/PKGBUILD b/community/csfml/PKGBUILD
index 1c082b678..1f47c2772 100644
--- a/community/csfml/PKGBUILD
+++ b/community/csfml/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 64966 2012-02-19 01:53:06Z svenstaro $
+# $Id: PKGBUILD 70299 2012-05-04 03:01:09Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
pkgname=csfml
@@ -6,7 +6,7 @@ pkgname=csfml
_git=true
if [[ "${_git}" = "true" ]]; then
- pkgver=1.99.git20120219
+ pkgver=1.99.git20120504
fi
pkgrel=1
diff --git a/community/esdl/PKGBUILD b/community/esdl/PKGBUILD
index e7b9bc920..76b5be9d6 100644
--- a/community/esdl/PKGBUILD
+++ b/community/esdl/PKGBUILD
@@ -3,37 +3,37 @@
# Contributor: kappa <kappacurve@gmail.com>
pkgname=esdl
-pkgver=1.0.1
-pkgrel=3
+pkgver=1.2
+pkgrel=1
epoch=2
arch=('x86_64' 'i686')
pkgdesc="SDL and OpenGL bindings for the Erlang programming language"
url="http://esdl.sourceforge.net/"
license=('custom')
depends=('erlang' 'sdl' 'mesa')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.src.tar.gz")
-md5sums=('50230ea81418cb029281a70627a5dd8e')
+source=("$pkgname-$pkgver.tar.gz::https://nodeload.github.com/dgud/esdl/tarball/master")
+md5sums=('d51f8e2fe07b9e82ff9c2e06af35e3eb')
+_dirname='dgud-esdl-4139134'
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir/$_dirname"
find -type f -print0 | xargs -0 chmod 644
make
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir/$_dirname"
make INSTALLDIR="$pkgdir/usr/lib/erlang/lib/$pkgname-$pkgver" install
- ## To make wings3d compile with esdl 1.2
+ ## An attempt to make wings3d compile with esdl 1.2
#ln -s /usr/lib/erlang/lib/wx-0.99/include/glu.hrl \
# "$pkgdir/usr/lib/erlang/lib/$pkgname-$pkgver/include/glu.hrl"
#ln -s /usr/lib/erlang/lib/wx-0.99/include/gl.hrl \
# "$pkgdir/usr/lib/erlang/lib/$pkgname-$pkgver/include/gl.hrl"
- install -Dm644 "$srcdir/$pkgname-$pkgver/license.terms" \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+ install -Dm644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
# vim:set ts=2 sw=2 et:
diff --git a/community/fox/PKGBUILD b/community/fox/PKGBUILD
index 41a7c1cbb..3ab908481 100644
--- a/community/fox/PKGBUILD
+++ b/community/fox/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 63562 2012-02-05 11:56:09Z ibiru $
+# $Id: PKGBUILD 70277 2012-05-03 15:59:36Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Ben <ben@benmazer.net>
pkgname=fox
-pkgver=1.6.44
-pkgrel=2
+pkgver=1.6.45
+pkgrel=1
pkgdesc="Free Objects for X: GUI Toolkit for C++"
arch=('i686' 'x86_64')
url="http://www.fox-toolkit.org/"
@@ -13,7 +13,7 @@ depends=('bzip2' 'libxcursor' 'libxft' 'libxrandr' 'mesa' 'libxi' 'libpng' 'libt
optdepends=('perl')
options=('!libtool')
source=(http://ftp.fox-toolkit.org/pub/fox-$pkgver.tar.gz)
-md5sums=('6ccc8cbcfa6e4c8b6e4deeeb39c36434')
+md5sums=('57bef430c3d01463508d76a88f61d763')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
diff --git a/community/minidlna/PKGBUILD b/community/minidlna/PKGBUILD
index f542f23ae..23441c568 100644
--- a/community/minidlna/PKGBUILD
+++ b/community/minidlna/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 65511 2012-02-21 07:16:38Z spupykin $
+# $Id: PKGBUILD 70262 2012-05-03 10:11:50Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer:Biginoz < biginoz AT free point fr>
# Contributor: Ignacio Galmarino <igalmarino@gmail.com>
@@ -7,20 +7,24 @@
pkgname=minidlna
pkgver=1.0.24
-pkgrel=2
+pkgrel=3
pkgdesc="A DLNA/UPnP-AV Media server (aka ReadyDLNA)"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/minidlna/"
license=('GPL')
-depends=('libexif' 'libjpeg' 'libid3tag' 'flac' 'libvorbis' 'ffmpeg' 'sqlite3')
+depends=('libexif' 'libjpeg' 'libid3tag' 'flac' 'libvorbis' 'ffmpeg' 'sqlite')
conflicts=('minidlna-cvs')
backup=('etc/minidlna.conf'
'etc/conf.d/minidlna')
changelog=changelog
source=(http://downloads.sourceforge.net/minidlna/minidlna_${pkgver}_src.tar.gz
- minidlna.rc)
+ minidlna.rc
+ minidlna.conf
+ minidlna.service)
md5sums=('be9b4c91e3fcde592dc3f9828098ca0f'
- 'c9863d5703e0a8469cc200f2739567e7')
+ 'c9863d5703e0a8469cc200f2739567e7'
+ 'af1b8c0fef9902f797b0324c255da5a1'
+ '1903ed9ceee43b8bb86146b9ad8eb50c')
build() {
cd "$srcdir/$pkgname-$pkgver"
@@ -36,4 +40,8 @@ package() {
mkdir -p $pkgdir/etc/conf.d
echo 'MINIDLNA_USER=nobody' >$pkgdir/etc/conf.d/minidlna
echo 'MINIDLNA_OPTS=""' >>$pkgdir/etc/conf.d/minidlna
+
+ # systemd files
+ install -Dm0644 $srcdir/minidlna.conf $pkgdir/usr/lib/tmpfiles.d/minidlna.conf
+ install -Dm0644 $srcdir/minidlna.service $pkgdir/usr/lib/systemd/system/minidlna.service
}
diff --git a/community/minidlna/minidlna.conf b/community/minidlna/minidlna.conf
new file mode 100644
index 000000000..98be33c0d
--- /dev/null
+++ b/community/minidlna/minidlna.conf
@@ -0,0 +1,4 @@
+# systemd tmpfile settings for minidlna
+# See tmpfiles.d(5) for details
+
+d /var/run/minidlna 0755 nobody nobody -
diff --git a/community/minidlna/minidlna.service b/community/minidlna/minidlna.service
new file mode 100644
index 000000000..6c9a40152
--- /dev/null
+++ b/community/minidlna/minidlna.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=minidlna server
+After=network.target
+
+[Service]
+Type=forking
+User=nobody
+ExecStart=/usr/sbin/minidlna -P /var/run/minidlna/minidlna.pid
+PIDFile=/var/run/minidlna/minidlna.pid
+
+[Install]
+WantedBy=multi-user.target
diff --git a/community/notion/PKGBUILD b/community/notion/PKGBUILD
index 5c6b7b0d6..c29a0054a 100644
--- a/community/notion/PKGBUILD
+++ b/community/notion/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 57592 2011-10-31 08:12:46Z spupykin $
+# $Id: PKGBUILD 70297 2012-05-03 22:44:04Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Eugen Zagorodniy e dot zagorodniy at gmail dot com
# Contributor: aunoor
pkgname=notion
-pkgver=20111031
+pkgver=20120504
pkgrel=1
pkgdesc="Tabbed tiling, window manager. Fork of Ion3"
url="http://sourceforge.net/projects/notion/"
@@ -25,6 +25,7 @@ _gitroots=("git://notion.git.sourceforge.net/gitroot/notion/notion"
"git://notion.git.sourceforge.net/gitroot/notion/mod_xrandr"
"git://notion.git.sourceforge.net/gitroot/notion/contrib")
#source=(https://downloads.sourceforge.net/project/notion/notion-3-2011102900-src.tar.bz2)
+md5sums=()
build() {
cd ${srcdir}
@@ -66,9 +67,15 @@ build() {
done
# build doc and modules
- for i in mod_xinerama mod_xkbevents mod_xrandr notion-doc; do
+ for i in mod_xinerama mod_xkbevents mod_xrandr; do
(cd $i && make -j1 TOPDIR=.. all)
done
+
+ mkdir notion-doc/notionconf-onepage
+ mkdir notion-doc/notionnotes-onepage
+ (cd notion-doc && make -j1 TOPDIR=.. all) || true
+ sed -i 's|mod_query.exec_on_merr|mod\\_query.exec\\_on\\_merr|g' notion-doc/ioncore.exports
+ (cd notion-doc && make -j1 TOPDIR=.. all)
}
package() {
diff --git a/community/pragha/PKGBUILD b/community/pragha/PKGBUILD
index d7afdc8de..7b3fb1b93 100755
--- a/community/pragha/PKGBUILD
+++ b/community/pragha/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 68966 2012-04-06 15:03:02Z ttopper $
+# $Id: PKGBUILD 70293 2012-05-03 18:11:39Z ttopper $
# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
# Contributor: Alois Nespor <alois.nespor@gmail.com>
# Contributor: JerichoKru <jerichokru(AT)htomail.com>
pkgname=pragha
-pkgver=1.0.1
+pkgver=1.0.2
pkgrel=1
pkgdesc="A lightweight GTK+ music manager - fork of Consonance Music Manager."
arch=('i686' 'x86_64')
@@ -12,12 +12,12 @@ url="http://pragha.wikispaces.com/"
license=('GPL3')
depends=('libnotify' 'libcdio' 'gstreamer0.10-base'
'taglib' 'hicolor-icon-theme' 'gtk2'
- 'dbus-glib' 'sqlite3' 'desktop-file-utils')
+ 'dbus-glib' 'sqlite' 'desktop-file-utils')
optdepends=('notification-daemon: OSD notification')
replaces=('dissonance')
install=pragha.install
source=("https://github.com/downloads/matiasdelellis/pragha/$pkgname-$pkgver.tar.bz2")
-sha1sums=('607e54233305d6774dcd66327969533b6f2c6847')
+sha1sums=('297381d068860c22649ca29ae2281f9f6e33c000')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/wings3d/PKGBUILD b/community/wings3d/PKGBUILD
index fbd443548..3fa7ea7a3 100644
--- a/community/wings3d/PKGBUILD
+++ b/community/wings3d/PKGBUILD
@@ -5,48 +5,48 @@
pkgname=wings3d
_pkgname=wings
pkgver=1.4.1
-pkgrel=7
+pkgrel=8
pkgdesc="3D modeling program"
arch=('x86_64' 'i686')
url="http://www.wings3d.com/"
license=('GPL')
-depends=('esdl' 'bash' 'desktop-file-utils')
+depends=('esdl' 'bash' 'desktop-file-utils' 'cl')
makedepends=('setconf' 'gendesk')
optdepends=('povray: rendering support via POV-Ray')
-# 'kerkythea: rendering support via Kerkythea'
replaces=('wings' 'wings-devel')
install=$pkgname.install
-source=("http://downloads.sourceforge.net/wings/$_pkgname-$pkgver.tar.bz2"
- "$pkgname"
+source=("$pkgname-$pkgver.tar.gz::https://nodeload.github.com/dgud/wings/tarball/dgud/r15b-driver-compat"
+ "$pkgname.sh"
"$pkgname.png::http://img299.imageshack.us/img299/2538/wingsiconblackshiningew5.png")
-sha256sums=('51aea431e18935e5634ea673caa945f586db2203855554d8dcab5e9545f2789a'
+sha256sums=('cbe917601b31b7d469c2f9ed0de1b016be86f14f9e757860990d9489a84585dd'
'46513cd05f8b6e778120af4a87b239c5250799c17b591592893d98cbf082359e'
'6658977cc3bc8db2c9358edf3a2d6cb6bb8084c9a1d96ca573a83dd4e8781f1a')
_genericname=('3D Modeler')
+_dirname='dgud-wings-4f3a3ff'
build() {
cd "$srcdir"
gendesk
setconf "$pkgname.desktop" Categories "Graphics;3DGraphics;"
- cd "$_pkgname-$pkgver"
+ cd "$_dirname"
export ESDL_PATH=$(echo /usr/lib/erlang/lib/esdl-*)
make
make lang
}
package() {
- cd "$srcdir/$_pkgname-$pkgver"
+ cd "$srcdir/$_dirname"
mkdir -p "$pkgdir/usr/lib/$pkgname"
for subdir in ebin fonts patches plugins shaders textures; do
- cp -r "$srcdir/$_pkgname-$pkgver/$subdir/" "$pkgdir/usr/lib/$pkgname"
+ cp -r "$srcdir/$_dirname/$subdir/" "$pkgdir/usr/lib/$pkgname"
done
install -Dm644 license.terms "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
cd "$srcdir"
- install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
+ install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
install -Dm644 "$pkgname.desktop" \
"$pkgdir/usr/share/applications/$pkgname.desktop"
diff --git a/community/wings3d/wings3d.sh b/community/wings3d/wings3d.sh
new file mode 100644
index 000000000..c0fd3b2fb
--- /dev/null
+++ b/community/wings3d/wings3d.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+erl -noinput -smp disable -pa /usr/lib/erlang/lib/esdl-*/ebin /usr/lib/wings3d/ebin -run wings_start start_halt ${1+"$@"}