[arch-commits] Commit in handbrake/repos (8 files)

Evangelos Foutras foutrelis at nymeria.archlinux.org
Sun May 19 01:56:32 UTC 2013


    Date: Sunday, May 19, 2013 @ 03:56:32
  Author: foutrelis
Revision: 91088

archrelease: copy trunk to community-i686, community-x86_64

Added:
  handbrake/repos/community-i686/PKGBUILD
    (from rev 91087, handbrake/trunk/PKGBUILD)
  handbrake/repos/community-i686/handbrake.install
    (from rev 91087, handbrake/trunk/handbrake.install)
  handbrake/repos/community-x86_64/PKGBUILD
    (from rev 91087, handbrake/trunk/PKGBUILD)
  handbrake/repos/community-x86_64/handbrake.install
    (from rev 91087, handbrake/trunk/handbrake.install)
Deleted:
  handbrake/repos/community-i686/PKGBUILD
  handbrake/repos/community-i686/handbrake.install
  handbrake/repos/community-x86_64/PKGBUILD
  handbrake/repos/community-x86_64/handbrake.install

------------------------------------+
 /PKGBUILD                          |  156 +++++++++++++++++++++++++++++++++++
 /handbrake.install                 |   28 ++++++
 community-i686/PKGBUILD            |   48 ----------
 community-i686/handbrake.install   |   14 ---
 community-x86_64/PKGBUILD          |   48 ----------
 community-x86_64/handbrake.install |   14 ---
 6 files changed, 184 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-05-19 01:56:19 UTC (rev 91087)
+++ community-i686/PKGBUILD	2013-05-19 01:56:32 UTC (rev 91088)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
-# Contributor: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: Sebastien Piccand <sebcactus gmail com>
-
-pkgname=('handbrake' 'handbrake-cli')
-pkgver=0.9.8
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://handbrake.fr/"
-license=('GPL')
-makedepends=('intltool' 'python2' 'yasm' 'wget' 'bzip2' 'gcc-libs' 'libnotify'
-             'gstreamer0.10-base' 'gtk2' 'dbus-glib' 'fribidi')
-source=(http://downloads.sourceforge.net/project/handbrake/$pkgver/HandBrake-$pkgver.tar.bz2)
-sha256sums=('dba75a9ff772e419c01d75532c1bf0d7253e73d7ead184eee755cd4c133dc798')
-
-build() {
-  cd "$srcdir/HandBrake-$pkgver"
-
-  # Use Python 2
-  sed -i 's/python /python2 /' gtk/src/Makefile.am
-
-  ./configure --prefix=/usr --force --disable-gtk-update-checks
-  cd build
-  make
-}
-
-package_handbrake() {
-  pkgdesc="Multithreaded video transcoder"
-  depends=('bzip2' 'gcc-libs' 'gstreamer0.10-base' 'libnotify' 'dbus-glib'
-           'fribidi' 'gtk2' 'desktop-file-utils' 'hicolor-icon-theme')
-  install=$pkgname.install
-
-  cd "$srcdir/HandBrake-$pkgver/build"
-
-  make DESTDIR="$pkgdir" install
-  rm "$pkgdir/usr/bin/HandBrakeCLI"
-}
-
-package_handbrake-cli() {
-  pkgdesc="Multithreaded video transcoder (CLI)"
-  depends=('bzip2' 'gcc-libs' 'zlib' 'fribidi')
-
-  cd "$srcdir/HandBrake-$pkgver/build"
-  install -D HandBrakeCLI "$pkgdir/usr/bin/HandBrakeCLI"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: handbrake/repos/community-i686/PKGBUILD (from rev 91087, handbrake/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-05-19 01:56:32 UTC (rev 91088)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
+# Contributor: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Sebastien Piccand <sebcactus gmail com>
+
+pkgname=('handbrake' 'handbrake-cli')
+pkgver=0.9.9
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://handbrake.fr/"
+license=('GPL')
+makedepends=('intltool' 'python2' 'yasm' 'wget' 'bzip2' 'gcc-libs' 'libnotify'
+             'gst-plugins-base' 'gtk3' 'dbus-glib' 'fribidi' 'libass'
+             'fontconfig' 'freetype2' 'libxml2' 'libogg' 'libvorbis'
+             'libtheora' 'libsamplerate' 'libbluray' 'ffmpeg')
+source=(http://downloads.sourceforge.net/project/handbrake/$pkgver/HandBrake-$pkgver.tar.bz2)
+sha256sums=('a71dd774104cda00cfb51a813550351d638253791f2f419d04a66f3158a835b3')
+
+prepare() {
+  cd "$srcdir/HandBrake-$pkgver"
+
+  # Use Python 2
+  sed -i 's/python /python2 /' gtk/src/Makefile.am
+
+  # Use more system libs
+  sed -i \
+    -e '/MODULES += contrib\/libbluray/d' \
+    -e '/MODULES += contrib\/ffmpeg/d' \
+    -e '/MODULES += contrib\/x264/d' \
+    make/include/main.defs
+
+  # Fix configure.ac to work with automake 1.13
+  cd gtk
+  sed -i \
+    -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' \
+    -e '/AM_PROG_CC_STDC/d' \
+    configure.ac
+
+  autoreconf -vi
+}
+
+build() {
+  cd "$srcdir/HandBrake-$pkgver"
+
+  ./configure \
+    --prefix=/usr \
+    --force \
+    --disable-gtk-update-checks
+  cd build
+  make
+}
+
+package_handbrake() {
+  pkgdesc="Multithreaded video transcoder"
+  depends=('bzip2' 'gcc-libs' 'gst-plugins-base' 'libnotify' 'dbus-glib'
+           'fribidi' 'libass' 'gtk3' 'fontconfig' 'freetype2' 'libxml2'
+           'libogg' 'libvorbis' 'libtheora' 'libsamplerate' 'libbluray'
+           'ffmpeg' 'desktop-file-utils' 'hicolor-icon-theme')
+  optdepends=('gst-plugins-good: for video previews'
+              'gst-libav: for video previews')
+  install=$pkgname.install
+
+  cd "$srcdir/HandBrake-$pkgver/build"
+
+  make DESTDIR="$pkgdir" install
+  rm "$pkgdir/usr/bin/HandBrakeCLI"
+}
+
+package_handbrake-cli() {
+  pkgdesc="Multithreaded video transcoder (CLI)"
+  depends=('bzip2' 'gcc-libs' 'zlib' 'fribidi' 'libass' 'libxml2' 'libtheora'
+           'libsamplerate' 'libbluray' 'ffmpeg')
+
+  cd "$srcdir/HandBrake-$pkgver/build"
+  install -D HandBrakeCLI "$pkgdir/usr/bin/HandBrakeCLI"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/handbrake.install
===================================================================
--- community-i686/handbrake.install	2013-05-19 01:56:19 UTC (rev 91087)
+++ community-i686/handbrake.install	2013-05-19 01:56:32 UTC (rev 91088)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: handbrake/repos/community-i686/handbrake.install (from rev 91087, handbrake/trunk/handbrake.install)
===================================================================
--- community-i686/handbrake.install	                        (rev 0)
+++ community-i686/handbrake.install	2013-05-19 01:56:32 UTC (rev 91088)
@@ -0,0 +1,14 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-05-19 01:56:19 UTC (rev 91087)
+++ community-x86_64/PKGBUILD	2013-05-19 01:56:32 UTC (rev 91088)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
-# Contributor: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: Sebastien Piccand <sebcactus gmail com>
-
-pkgname=('handbrake' 'handbrake-cli')
-pkgver=0.9.8
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://handbrake.fr/"
-license=('GPL')
-makedepends=('intltool' 'python2' 'yasm' 'wget' 'bzip2' 'gcc-libs' 'libnotify'
-             'gstreamer0.10-base' 'gtk2' 'dbus-glib' 'fribidi')
-source=(http://downloads.sourceforge.net/project/handbrake/$pkgver/HandBrake-$pkgver.tar.bz2)
-sha256sums=('dba75a9ff772e419c01d75532c1bf0d7253e73d7ead184eee755cd4c133dc798')
-
-build() {
-  cd "$srcdir/HandBrake-$pkgver"
-
-  # Use Python 2
-  sed -i 's/python /python2 /' gtk/src/Makefile.am
-
-  ./configure --prefix=/usr --force --disable-gtk-update-checks
-  cd build
-  make
-}
-
-package_handbrake() {
-  pkgdesc="Multithreaded video transcoder"
-  depends=('bzip2' 'gcc-libs' 'gstreamer0.10-base' 'libnotify' 'dbus-glib'
-           'fribidi' 'gtk2' 'desktop-file-utils' 'hicolor-icon-theme')
-  install=$pkgname.install
-
-  cd "$srcdir/HandBrake-$pkgver/build"
-
-  make DESTDIR="$pkgdir" install
-  rm "$pkgdir/usr/bin/HandBrakeCLI"
-}
-
-package_handbrake-cli() {
-  pkgdesc="Multithreaded video transcoder (CLI)"
-  depends=('bzip2' 'gcc-libs' 'zlib' 'fribidi')
-
-  cd "$srcdir/HandBrake-$pkgver/build"
-  install -D HandBrakeCLI "$pkgdir/usr/bin/HandBrakeCLI"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: handbrake/repos/community-x86_64/PKGBUILD (from rev 91087, handbrake/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-05-19 01:56:32 UTC (rev 91088)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
+# Contributor: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Sebastien Piccand <sebcactus gmail com>
+
+pkgname=('handbrake' 'handbrake-cli')
+pkgver=0.9.9
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://handbrake.fr/"
+license=('GPL')
+makedepends=('intltool' 'python2' 'yasm' 'wget' 'bzip2' 'gcc-libs' 'libnotify'
+             'gst-plugins-base' 'gtk3' 'dbus-glib' 'fribidi' 'libass'
+             'fontconfig' 'freetype2' 'libxml2' 'libogg' 'libvorbis'
+             'libtheora' 'libsamplerate' 'libbluray' 'ffmpeg')
+source=(http://downloads.sourceforge.net/project/handbrake/$pkgver/HandBrake-$pkgver.tar.bz2)
+sha256sums=('a71dd774104cda00cfb51a813550351d638253791f2f419d04a66f3158a835b3')
+
+prepare() {
+  cd "$srcdir/HandBrake-$pkgver"
+
+  # Use Python 2
+  sed -i 's/python /python2 /' gtk/src/Makefile.am
+
+  # Use more system libs
+  sed -i \
+    -e '/MODULES += contrib\/libbluray/d' \
+    -e '/MODULES += contrib\/ffmpeg/d' \
+    -e '/MODULES += contrib\/x264/d' \
+    make/include/main.defs
+
+  # Fix configure.ac to work with automake 1.13
+  cd gtk
+  sed -i \
+    -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' \
+    -e '/AM_PROG_CC_STDC/d' \
+    configure.ac
+
+  autoreconf -vi
+}
+
+build() {
+  cd "$srcdir/HandBrake-$pkgver"
+
+  ./configure \
+    --prefix=/usr \
+    --force \
+    --disable-gtk-update-checks
+  cd build
+  make
+}
+
+package_handbrake() {
+  pkgdesc="Multithreaded video transcoder"
+  depends=('bzip2' 'gcc-libs' 'gst-plugins-base' 'libnotify' 'dbus-glib'
+           'fribidi' 'libass' 'gtk3' 'fontconfig' 'freetype2' 'libxml2'
+           'libogg' 'libvorbis' 'libtheora' 'libsamplerate' 'libbluray'
+           'ffmpeg' 'desktop-file-utils' 'hicolor-icon-theme')
+  optdepends=('gst-plugins-good: for video previews'
+              'gst-libav: for video previews')
+  install=$pkgname.install
+
+  cd "$srcdir/HandBrake-$pkgver/build"
+
+  make DESTDIR="$pkgdir" install
+  rm "$pkgdir/usr/bin/HandBrakeCLI"
+}
+
+package_handbrake-cli() {
+  pkgdesc="Multithreaded video transcoder (CLI)"
+  depends=('bzip2' 'gcc-libs' 'zlib' 'fribidi' 'libass' 'libxml2' 'libtheora'
+           'libsamplerate' 'libbluray' 'ffmpeg')
+
+  cd "$srcdir/HandBrake-$pkgver/build"
+  install -D HandBrakeCLI "$pkgdir/usr/bin/HandBrakeCLI"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/handbrake.install
===================================================================
--- community-x86_64/handbrake.install	2013-05-19 01:56:19 UTC (rev 91087)
+++ community-x86_64/handbrake.install	2013-05-19 01:56:32 UTC (rev 91088)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: handbrake/repos/community-x86_64/handbrake.install (from rev 91087, handbrake/trunk/handbrake.install)
===================================================================
--- community-x86_64/handbrake.install	                        (rev 0)
+++ community-x86_64/handbrake.install	2013-05-19 01:56:32 UTC (rev 91088)
@@ -0,0 +1,14 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:




More information about the arch-commits mailing list