summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-08-16 14:12:41 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-08-16 14:12:41 +0000
commit3abfc1ebef5936241997dd882938581c91743ee9 (patch)
tree2115f0512eb82f91f0a536d20631bed8eb37f47a /community
parentea595018ba8ae00d7030ff296ec4f50e122d2ea9 (diff)
Tue Aug 16 14:12:40 UTC 2011
Diffstat (limited to 'community')
-rw-r--r--community/musca/PKGBUILD26
-rw-r--r--community/ogre/PKGBUILD90
-rw-r--r--community/ogre/ogre.install4
-rw-r--r--community/thoggen/ChangeLog6
-rw-r--r--community/thoggen/PKGBUILD22
5 files changed, 0 insertions, 148 deletions
diff --git a/community/musca/PKGBUILD b/community/musca/PKGBUILD
deleted file mode 100644
index 34ab9b843..000000000
--- a/community/musca/PKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# $Id: PKGBUILD 31936 2010-11-08 00:00:11Z lfleischer $
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Murtuza Akhtari <inxsible at gmail dot com>
-
-pkgname=musca
-pkgver=0.9.24
-pkgrel=1
-pkgdesc='A simple X11 dynamic window manager with features nicked from ratpoison and dwm.'
-arch=('i686' 'x86_64')
-url='http://aerosuidae.net/musca/'
-license=('GPL3')
-depends=('libx11' 'dmenu')
-source=("http://aerosuidae.net/${pkgname}-${pkgver}.tgz")
-md5sums=('e067a8e39b1a97d62fc8e43800edee70')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
- install -Dm644 "${pkgname}.1" "${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
diff --git a/community/ogre/PKGBUILD b/community/ogre/PKGBUILD
deleted file mode 100644
index 87cc13a32..000000000
--- a/community/ogre/PKGBUILD
+++ /dev/null
@@ -1,90 +0,0 @@
-# $Id: PKGBUILD 52770 2011-07-28 04:02:26Z svenstaro $
-# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.7.3
-pkgrel=4
-pkgdesc="A scene-oriented, flexible 3D engine written in C++"
-arch=('i686' 'x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
- 'nvidia-cg-toolkit' 'mesa' 'zziplib' 'ois')
-makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
-optdepends=('cppunit: unit testing'
- 'intel-tbb: better threading support'
- 'poco: portability'
- 'boost: for developing using ogre')
-install=ogre.install
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}_src_v${pkgver//./-}.tar.bz2")
-md5sums=('7a85d3b8f0d64debd186e48ebe9556aa')
-
-build() {
- cd ${srcdir}/${pkgname}_src_v${pkgver//./-}
-
- # get a clean build dir
- [[ -d build ]] && rm -rf build
- mkdir build
- cd build
-
- # generate CMake Makefile
- cmake .. \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DOGRE_INSTALL_PLUGINS_HEADERS=TRUE \
- -DOGRE_INSTALL_SAMPLES=TRUE \
- -DOGRE_INSTALL_DOCS=TRUE \
- -DOGRE_INSTALL_MEDIA=TRUE \
- -DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
- -DCMAKE_BUILD_TYPE=Release # set =Debug for debugging version
-
- # compile
- make
-
- # generate docs
- if [[ $(which dot) && $(which doxygen) ]]; then
- make doc
- fi
-}
-
-package_ogre() {
- optdepends=('ogre-docs: documentation')
-
- cd ${srcdir}/${pkgname}_src_v${pkgver//./-}/build
-
- # install the bugger
- make DESTDIR=${pkgdir} install
-
- # fix up samples
- install -dm775 -o root -g users ${pkgdir}/opt/OGRE/samples/
- mv ${pkgdir}/usr/share/OGRE/*.cfg ${pkgdir}/opt/OGRE/samples/
- mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/opt/OGRE/samples/
-
- # make sample launcher
- echo "#!/bin/bash" > ${pkgdir}/usr/bin/OgreSampleBrowser
- echo "cd /opt/OGRE/samples && ./SampleBrowser" >> ${pkgdir}/usr/bin/OgreSampleBrowser
- chmod +x ${pkgdir}/usr/bin/OgreSampleBrowser
-
- # install license
- install -Dm644 ../Docs/License.html ${pkgdir}/usr/share/licenses/${pkgname}/license.html
-
- # move docs out of this package
- mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
- pkgdesc="Documentation for ogre"
- depends=()
-
- cd ${srcdir}/${pkgbase}_src_v${pkgver//./-}/build
-
- # move docs into this package
- install -dm755 ${pkgdir}/usr/share/doc
- mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
- # symlink for docs
- install -dm755 ${pkgdir}/usr/share/OGRE/
- cd ${pkgdir}/usr/share
- ln -s doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/ogre/ogre.install b/community/ogre/ogre.install
deleted file mode 100644
index 5db668d9e..000000000
--- a/community/ogre/ogre.install
+++ /dev/null
@@ -1,4 +0,0 @@
-post_install() {
- echo "To view the OGRE samples just run OgreSampleBrowser or launch"
- echo "it directly in /opt/OGRE/samples/"
-}
diff --git a/community/thoggen/ChangeLog b/community/thoggen/ChangeLog
deleted file mode 100644
index 45138e297..000000000
--- a/community/thoggen/ChangeLog
+++ /dev/null
@@ -1,6 +0,0 @@
-2008-06-19 Mateusz Herych <heniekk@gmail.com>
-
-* Updated to 0.7.1
-
-2007-06-27 tardo <tardo@nagi-fanboi.net>
-* built for x86_64
diff --git a/community/thoggen/PKGBUILD b/community/thoggen/PKGBUILD
deleted file mode 100644
index 35230b4c0..000000000
--- a/community/thoggen/PKGBUILD
+++ /dev/null
@@ -1,22 +0,0 @@
-# $Id: PKGBUILD 22322 2010-07-20 23:22:32Z mherych $
-# Maintainer: Mateusz Herych <heniekk@gmail.com>
-# Maintainer: Robert Emil Berge <filoktetes@linuxophic.org>
-
-pkgname=thoggen
-pkgver=0.7.1
-pkgrel=5
-pkgdesc="A DVD ripper based on GStreamer and Gtk+."
-arch=('i686' 'x86_64')
-url="http://thoggen.net/"
-license=('GPL')
-depends=('libofa' 'perlxml' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'gstreamer0.10-ugly-plugins' 'gstreamer0.10-bad-plugins' 'gstreamer0.10-ffmpeg' 'libdvdread' 'hal' 'libglade')
-source=(http://downloads.sourceforge.net/sourceforge/thoggen/$pkgname-$pkgver.tar.gz)
-md5sums=('e36c1ceb098f8ed51ca6c0d1e7ae8279')
-
-build() {
- cd $startdir/src/$pkgname-$pkgver
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR=$startdir/pkg install
-}
-