Date: Friday, May 25, 2012 @ 12:19:35 Author: andrea Revision: 159504
KDE-multimedia has been split Added: kdemultimedia-audiocd-kio/ kdemultimedia-audiocd-kio/kde-unstable/ kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD kdemultimedia-audiocd-kio/repos/ kdemultimedia-audiocd-kio/trunk/ kdemultimedia-dragonplayer/ kdemultimedia-dragonplayer/kde-unstable/ kdemultimedia-dragonplayer/kde-unstable/PKGBUILD kdemultimedia-dragonplayer/kde-unstable/kdemultimedia-dragonplayer.install kdemultimedia-dragonplayer/repos/ kdemultimedia-dragonplayer/trunk/ kdemultimedia-ffmpegthumbs/ kdemultimedia-ffmpegthumbs/kde-unstable/ kdemultimedia-ffmpegthumbs/kde-unstable/PKGBUILD kdemultimedia-ffmpegthumbs/repos/ kdemultimedia-ffmpegthumbs/trunk/ kdemultimedia-juk/ kdemultimedia-juk/kde-unstable/ kdemultimedia-juk/kde-unstable/PKGBUILD kdemultimedia-juk/kde-unstable/kdemultimedia-juk.install kdemultimedia-juk/repos/ kdemultimedia-juk/trunk/ kdemultimedia-kmix/ kdemultimedia-kmix/kde-unstable/ kdemultimedia-kmix/kde-unstable/PKGBUILD kdemultimedia-kmix/kde-unstable/kdemultimedia-kmix.install kdemultimedia-kmix/repos/ kdemultimedia-kmix/trunk/ kdemultimedia-kscd/ kdemultimedia-kscd/kde-unstable/ kdemultimedia-kscd/kde-unstable/PKGBUILD kdemultimedia-kscd/kde-unstable/kdemultimedia-kscd.install kdemultimedia-kscd/repos/ kdemultimedia-kscd/trunk/ kdemultimedia-mplayerthumbs/ kdemultimedia-mplayerthumbs/kde-unstable/ kdemultimedia-mplayerthumbs/kde-unstable/PKGBUILD kdemultimedia-mplayerthumbs/repos/ kdemultimedia-mplayerthumbs/trunk/ libkcddb/ libkcddb/kde-unstable/ libkcddb/kde-unstable/PKGBUILD libkcddb/repos/ libkcddb/trunk/ libkcompactdisc/ libkcompactdisc/kde-unstable/ libkcompactdisc/kde-unstable/PKGBUILD libkcompactdisc/repos/ libkcompactdisc/trunk/ ----------------------------------------------------------------------------+ kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD | 31 ++++++++++ kdemultimedia-dragonplayer/kde-unstable/PKGBUILD | 31 ++++++++++ kdemultimedia-dragonplayer/kde-unstable/kdemultimedia-dragonplayer.install | 12 +++ kdemultimedia-ffmpegthumbs/kde-unstable/PKGBUILD | 29 +++++++++ kdemultimedia-juk/kde-unstable/PKGBUILD | 31 ++++++++++ kdemultimedia-juk/kde-unstable/kdemultimedia-juk.install | 11 +++ kdemultimedia-kmix/kde-unstable/PKGBUILD | 30 +++++++++ kdemultimedia-kmix/kde-unstable/kdemultimedia-kmix.install | 11 +++ kdemultimedia-kscd/kde-unstable/PKGBUILD | 30 +++++++++ kdemultimedia-kscd/kde-unstable/kdemultimedia-kscd.install | 11 +++ kdemultimedia-mplayerthumbs/kde-unstable/PKGBUILD | 29 +++++++++ libkcddb/kde-unstable/PKGBUILD | 31 ++++++++++ libkcompactdisc/kde-unstable/PKGBUILD | 31 ++++++++++ 13 files changed, 318 insertions(+) Added: kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD =================================================================== --- kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD (rev 0) +++ kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdemultimedia-audiocd-kio +pkgver=4.8.80 +pkgrel=1 +pkgdesc="Kioslave for accessing audio CDs" +url='https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('libkcddb' 'libkcompactdisc' 'lame') +makedepends=('cmake' 'automoc4') +replaces=('kdemultimedia-kioslave') +conflicts=('kdemultimedia-kioslave') +source=("http://download.kde.org/unstable/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz") +sha1sums=('eb4d8c065a77c43eb4492c75085ddf9a1be0d1c8') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../audiocd-kio-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdemultimedia-audiocd-kio/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: kdemultimedia-dragonplayer/kde-unstable/PKGBUILD =================================================================== --- kdemultimedia-dragonplayer/kde-unstable/PKGBUILD (rev 0) +++ kdemultimedia-dragonplayer/kde-unstable/PKGBUILD 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdemultimedia-dragonplayer +pkgver=4.8.80 +pkgrel=1 +pkgdesc="A multimedia player where the focus is on simplicity, instead of +features" +url='http://kde.org/applications/multimedia/dragonplayer/' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-runtime') +makedepends=('cmake' 'automoc4') +install="${pkgname}.install" +source=("http://download.kde.org/unstable/${pkgver}/src/dragon-${pkgver}.tar.xz") +sha1sums=('2bf02ca31e2dac65bc621a89e09cc8e5885593d8') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../dragon-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdemultimedia-dragonplayer/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: kdemultimedia-dragonplayer/kde-unstable/kdemultimedia-dragonplayer.install =================================================================== --- kdemultimedia-dragonplayer/kde-unstable/kdemultimedia-dragonplayer.install (rev 0) +++ kdemultimedia-dragonplayer/kde-unstable/kdemultimedia-dragonplayer.install 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,12 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} Added: kdemultimedia-ffmpegthumbs/kde-unstable/PKGBUILD =================================================================== --- kdemultimedia-ffmpegthumbs/kde-unstable/PKGBUILD (rev 0) +++ kdemultimedia-ffmpegthumbs/kde-unstable/PKGBUILD 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdemultimedia-ffmpegthumbs +pkgver=4.8.80 +pkgrel=1 +pkgdesc='FFmpeg-based thumbnail creator for video files' +url='https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs' 'ffmpeg') +makedepends=('cmake' 'automoc4') +source=("http://download.kde.org/unstable/${pkgver}/src/ffmpegthumbs-${pkgver}.tar.xz") +sha1sums=('092060cc8ab89612a5fd1955f2d9c39521c67daa') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../ffmpegthumbs-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdemultimedia-ffmpegthumbs/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: kdemultimedia-juk/kde-unstable/PKGBUILD =================================================================== --- kdemultimedia-juk/kde-unstable/PKGBUILD (rev 0) +++ kdemultimedia-juk/kde-unstable/PKGBUILD 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdemultimedia-juk +pkgver=4.8.80 +pkgrel=1 +pkgdesc='A jukebox, tagger and music collection manager' +url='http://kde.org/applications/multimedia/juk/' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-runtime' 'taglib') +makedepends=('cmake' 'automoc4') +install="${pkgname}.install" +source=("http://download.kde.org/unstable/${pkgver}/src/juk-${pkgver}.tar.xz") +sha1sums=('07cf74206540294e4a942482708182e4d2578b37') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../juk-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DWITH_TunePimp=OFF + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdemultimedia-juk/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: kdemultimedia-juk/kde-unstable/kdemultimedia-juk.install =================================================================== --- kdemultimedia-juk/kde-unstable/kdemultimedia-juk.install (rev 0) +++ kdemultimedia-juk/kde-unstable/kdemultimedia-juk.install 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} Added: kdemultimedia-kmix/kde-unstable/PKGBUILD =================================================================== --- kdemultimedia-kmix/kde-unstable/PKGBUILD (rev 0) +++ kdemultimedia-kmix/kde-unstable/PKGBUILD 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdemultimedia-kmix +pkgver=4.8.80 +pkgrel=1 +pkgdesc="KDE volume control program" +url='http://kde.org/applications/multimedia/kmix/' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-runtime') +makedepends=('cmake' 'automoc4') +install="${pkgname}.install" +source=("http://download.kde.org/unstable/${pkgver}/src/kmix-${pkgver}.tar.xz") +sha1sums=('e6e7ffc05b800d17b8b32600410a6ecbce773f8c') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../kmix-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdemultimedia-kmix/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: kdemultimedia-kmix/kde-unstable/kdemultimedia-kmix.install =================================================================== --- kdemultimedia-kmix/kde-unstable/kdemultimedia-kmix.install (rev 0) +++ kdemultimedia-kmix/kde-unstable/kdemultimedia-kmix.install 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} Added: kdemultimedia-kscd/kde-unstable/PKGBUILD =================================================================== --- kdemultimedia-kscd/kde-unstable/PKGBUILD (rev 0) +++ kdemultimedia-kscd/kde-unstable/PKGBUILD 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdemultimedia-kscd +pkgver=4.8.80 +pkgrel=1 +pkgdesc="KDE CD player" +url='http://kde.org/applications/multimedia/kscd/' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-runtime' 'libkcddb' 'libkcompactdisc' 'libmusicbrainz3') +makedepends=('cmake' 'automoc4') +install="${pkgname}.install" +source=("http://download.kde.org/unstable/${pkgver}/src/kscd-${pkgver}.tar.xz") +sha1sums=('2352ef7a8b85ce6a4610563b2be0a37c0c1dfe41') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../kscd-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdemultimedia-kscd/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: kdemultimedia-kscd/kde-unstable/kdemultimedia-kscd.install =================================================================== --- kdemultimedia-kscd/kde-unstable/kdemultimedia-kscd.install (rev 0) +++ kdemultimedia-kscd/kde-unstable/kdemultimedia-kscd.install 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} Added: kdemultimedia-mplayerthumbs/kde-unstable/PKGBUILD =================================================================== --- kdemultimedia-mplayerthumbs/kde-unstable/PKGBUILD (rev 0) +++ kdemultimedia-mplayerthumbs/kde-unstable/PKGBUILD 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=kdemultimedia-mplayerthumbs +pkgver=4.8.80 +pkgrel=1 +pkgdesc="MPlayer based thumbnail generator for video files" +url='https://projects.kde.org/projects/kde/kdemultimedia/mplayerthumbs' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-runtime' 'mplayer') +makedepends=('cmake' 'automoc4') +source=("http://download.kde.org/unstable/${pkgver}/src/mplayerthumbs-${pkgver}.tar.xz") +sha1sums=('44f530ac94b1b5b4051579e407dd6a98636be1eb') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../mplayerthumbs-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: kdemultimedia-mplayerthumbs/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: libkcddb/kde-unstable/PKGBUILD =================================================================== --- libkcddb/kde-unstable/PKGBUILD (rev 0) +++ libkcddb/kde-unstable/PKGBUILD 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=libkcddb +pkgver=4.8.80 +pkgrel=1 +pkgdesc="KDE CDDB library" +url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs') +makedepends=('cmake' 'automoc4') +replaces=('kdemultimedia-kioslave') +conflicts=('kdemultimedia-kioslave') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") +sha1sums=('7741b061d9dcb0cb8edc73c140943ca52ce8e74e') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: libkcddb/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: libkcompactdisc/kde-unstable/PKGBUILD =================================================================== --- libkcompactdisc/kde-unstable/PKGBUILD (rev 0) +++ libkcompactdisc/kde-unstable/PKGBUILD 2012-05-25 16:19:35 UTC (rev 159504) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=libkcompactdisc +pkgver=4.8.80 +pkgrel=1 +pkgdesc="A library for interfacing with CDs" +url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc' +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('kdelibs') +makedepends=('cmake' 'automoc4') +replaces=('kdemultimedia-kioslave') +conflicts=('kdemultimedia-kioslave') +source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") +sha1sums=('52c984a187195e92436b070cee186977c5dee977') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} Property changes on: libkcompactdisc/kde-unstable/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
