summaryrefslogtreecommitdiff
path: root/community/aegisub
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-02-28 00:03:26 -0800
committerroot <root@rshg054.dnsready.net>2013-02-28 00:03:26 -0800
commitb56d5949c9b0c3b40a942cd83f71e4420473435b (patch)
treeeab18954f3e6ffee5b561a2fd77ff58fbd259bc0 /community/aegisub
parent23018fec360e50c7cb4de4b2411650ce79532e54 (diff)
Thu Feb 28 00:03:24 PST 2013
Diffstat (limited to 'community/aegisub')
-rwxr-xr-xcommunity/aegisub/PKGBUILD43
-rwxr-xr-xcommunity/aegisub/aegisub.install14
-rwxr-xr-xcommunity/aegisub/crash-on-deatach.patch10
-rwxr-xr-xcommunity/aegisub/lua51.patch24
4 files changed, 91 insertions, 0 deletions
diff --git a/community/aegisub/PKGBUILD b/community/aegisub/PKGBUILD
new file mode 100755
index 000000000..1904ec6c6
--- /dev/null
+++ b/community/aegisub/PKGBUILD
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 85219 2013-02-27 18:33:34Z alucryd $
+# Maintainer: Maxime Gauduin <alucryd@gmail.com>
+# Contributor: kozec <kozec@kozec.com>
+# Contributor: Limao Luo <luolimao+AUR@gmail.com>
+
+pkgname=aegisub
+pkgver=3.0.2
+pkgrel=5
+pkgdesc="A general-purpose subtitle editor with ASS/SSA support"
+arch=('i686' 'x86_64')
+url="http://www.aegisub.org"
+license=('GPL' 'BSD')
+depends=('desktop-file-utils' 'ffmpegsource' 'fftw' 'hicolor-icon-theme' 'hunspell' 'lua51' 'wxgtk2.9' 'hicolor-icon-theme')
+makedepends=('mesa')
+install=aegisub.install
+source=("http://ftp.aegisub.org/pub/releases/${pkgname}-${pkgver}.tar.xz" 'crash-on-deatach.patch' 'lua51.patch')
+sha256sums=('68ec20cf49f513608cec400bd462ebb762d6057109968fb01d842e10e6e7fb39'
+ '85e2c2a6bf091f5b4ca29a0149df8d8ca6219d98a4095f79809f2e698983bca4'
+ 'ce67b143cc2949fbbd7d72862c54005030339d1c364753335acec271ca9e179d')
+
+build() {
+ cd "${srcdir}"/${pkgname}/${pkgname}
+
+# Patch
+ patch -Np1 -i "${srcdir}"/crash-on-deatach.patch
+ patch -Np1 -i "${srcdir}"/lua51.patch
+
+# Build
+ autoreconf -ivf
+ ./configure --prefix=/usr --without-{portaudio,openal,oss} --with-wxdir=/usr/include/wx-2.9 --with-wx-config=/usr/bin/wx-config-2.9
+ make
+}
+
+package() {
+ cd "${srcdir}"/${pkgname}/${pkgname}
+
+# Install
+ make DESTDIR="$pkgdir" install
+
+# License
+ install -dm 755 "${pkgdir}"/usr/share/licenses/aegisub
+ install -m 644 LICENCE "${pkgdir}"/usr/share/licenses/aegisub/LICENSE
+}
diff --git a/community/aegisub/aegisub.install b/community/aegisub/aegisub.install
new file mode 100755
index 000000000..105ce6543
--- /dev/null
+++ b/community/aegisub/aegisub.install
@@ -0,0 +1,14 @@
+post_install() {
+ gtk-update-icon-cache -ftq /usr/share/icons/hicolor
+ update-desktop-database -q
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
+
+# vim: ts=2 sw=2 et:
diff --git a/community/aegisub/crash-on-deatach.patch b/community/aegisub/crash-on-deatach.patch
new file mode 100755
index 000000000..1a1a3d007
--- /dev/null
+++ b/community/aegisub/crash-on-deatach.patch
@@ -0,0 +1,10 @@
+--- a/src/video_display.cpp
++++ b/src/video_display.cpp
+@@ -309,6 +309,7 @@
+ }
+
+ void VideoDisplay::UpdateSize() {
++ if (zoomValue<=0) zoomValue = 1;
+ if (!con->videoController->IsLoaded() || !IsShownOnScreen()) return;
+
+ videoSize.Set(con->videoController->GetWidth(), con->videoController->GetHeight());
diff --git a/community/aegisub/lua51.patch b/community/aegisub/lua51.patch
new file mode 100755
index 000000000..f93fb02de
--- /dev/null
+++ b/community/aegisub/lua51.patch
@@ -0,0 +1,24 @@
+--- a/configure.ac
++++ b/configure.ac
+@@ -371,9 +371,9 @@
+
+ AS_IF([test x$with_lua = xno], [$with_auto4_lua="no"; lua_disabled="(disabled)"], [
+ # First try pkg-config with several names
+- PKG_CHECK_MODULES(LUA, lua >= 5.1, [with_auto4_lua="yes"], [
+- PKG_CHECK_MODULES(LUA, lua5.1 >= 5.1, [with_auto4_lua="yes"], [
+- PKG_CHECK_MODULES(LUA, lua-5.1 >= 5.1, [with_auto4_lua="yes"], [
++ PKG_CHECK_MODULES(LUA, lua5.1 >= 5.1 lua5.1 < 5.2, [with_auto4_lua="yes"], [
++ PKG_CHECK_MODULES(LUA, lua-5.1 >= 5.1 lua-5.1 < 5.2, [with_auto4_lua="yes"], [
++ PKG_CHECK_MODULES(LUA, lua >= 5.1 lua < 5.2, [with_auto4_lua="yes"], [
+ # Still not found so try to autodetect
+ AS_IF([test -z "$LUA_CFLAGS"],
+ [AGI_FIND_HEADER([LUA], [lua.hpp],
+@@ -393,7 +393,7 @@
+ return !res;
+ }])
+ AS_IF([test x$agi_cv_with_lua = xno && test x$with_lua = xyes],
+- [AC_MSG_FAILURE([--with-lua was specified, but lua could not be found. Try setting LUA_CLFAGS and LUA_LIBS manually])])
++ [AC_MSG_FAILURE([--with-lua was specified, but lua 5.1 could not be found. Try setting LUA_CLFAGS and LUA_LIBS manually])])
+ with_auto4_lua=$agi_cv_with_lua
+ ])])])
+ ])