X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail.cmpwn.com (mail.cmpwn.com [45.56.77.53]) by lists.alpinelinux.org (Postfix) with ESMTP id 3E9375C4DE6 for ; Mon, 15 Jan 2018 19:29:40 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=cmpwn.com; s=cmpwn; t=1516044581; bh=6G38iR7Jc59DfR0zgmUA8/lIBVnwcXHhzSpviAcWfxQ=; h=From:To:Cc:Subject:Date; b=up2IjpKeqfw87RxGHwnb0GgV55/jG4PWLt4Bpk1MD9BZgeOpGJJwlP/o5l/rsLv+M PDt5dpBkvbaDOiNj/A2vavTYUflVGMB2chZks041GHkCElkiGCUGfxnZupVqS66ERW 1b29UqSFCQQk2Fxu2gIe0Vokoe6/hfb3tsNgsSAw= From: Drew DeVault To: alpine-aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [alpine-aports] [PATCH 1/2] testing/ibus: new aport Date: Mon, 15 Jan 2018 14:29:18 -0500 Message-Id: <20180115192919.12563-1-sir@cmpwn.com> X-Mailer: git-send-email 2.15.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- .../0001-Use-more-portable-call-to-mktemp.patch | 28 +++++++++++ testing/ibus/APKBUILD | 54 ++++++++++++++++++++++ testing/ibus/ibus.post-install | 3 ++ 3 files changed, 85 insertions(+) create mode 100644 testing/ibus/0001-Use-more-portable-call-to-mktemp.patch create mode 100644 testing/ibus/APKBUILD create mode 100755 testing/ibus/ibus.post-install diff --git a/testing/ibus/0001-Use-more-portable-call-to-mktemp.patch b/testing/ibus/0001-Use-more-portable-call-to-mktemp.patch new file mode 100644 index 0000000000..2e15dae89d --- /dev/null +++ b/testing/ibus/0001-Use-more-portable-call-to-mktemp.patch @@ -0,0 +1,28 @@ +From 2083455a9e1de2980d229b5f98788b563498e2dc Mon Sep 17 00:00:00 2001 +From: Drew DeVault +Date: Mon, 15 Jan 2018 13:49:09 -0500 +Subject: [PATCH] Use more portable call to mktemp + +--tmpdir is not supported by BusyBox. + +Signed-off-by: Drew DeVault +--- + data/dconf/make-dconf-override-db.sh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/data/dconf/make-dconf-override-db.sh b/data/dconf/make-dconf-override-db.sh +index 9c650e97..38838d09 100755 +--- a/data/dconf/make-dconf-override-db.sh ++++ b/data/dconf/make-dconf-override-db.sh +@@ -6,7 +6,7 @@ set -e + # breaks dbus-launch. There's dbus-run-session which is + # better, but not everyone has it yet. + export DBUS_FATAL_WARNINGS=0 +-export TMPDIR=$(mktemp -d --tmpdir="$PWD") ++export TMPDIR=$(TMPDIR="$PWD" mktemp -d) + export XDG_CONFIG_HOME="$TMPDIR/config" + export XDG_CACHE_HOME="$TMPDIR/cache" + export GSETTINGS_SCHEMA_DIR="$TMPDIR/schemas" +-- +2.15.0 + diff --git a/testing/ibus/APKBUILD b/testing/ibus/APKBUILD new file mode 100644 index 0000000000..dbb6e39a41 --- /dev/null +++ b/testing/ibus/APKBUILD @@ -0,0 +1,54 @@ +# Maintainer: Drew DeVault +pkgname=ibus +pkgver=1.5.17 +pkgrel=0 +pkgdesc="Next Generation Input Bus for Linux" +url="https://github.com/ibus/ibus/wiki" +arch="all" +license="LGPL" +depends=" + dconf hicolor-icon-theme iso-codes dbus py-gobject3 +" +makedepends=" + dconf-dev gtk+-dev gtk+3.0-dev libnotify-dev iso-codes-dev librsvg-dev + gobject-introspection-dev vala intltool qt5-qtbase + automake autoconf gnome-common gtk-doc wayland-dev wayland-protocols gconf + dbus-x11 +" +subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" +source=" + $pkgname-$pkgver.tar.gz::https://github.com/ibus/ibus/archive/$pkgver.tar.gz + 0001-Use-more-portable-call-to-mktemp.patch +" +install="$pkgname.post-install" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$builddir" + ./autogen.sh \ + --prefix=/usr \ + --libexecdir=/usr/lib/ibus \ + --sysconfdir=/etc \ + --disable-gconf \ + --enable-dconf \ + --enable-wayland \ + --disable-memconf \ + --enable-ui \ + --disable-gtk-doc \ + --disable-emoji-dict + make +} + +check() { + cd "$builddir" + ./bus/ibus-daemon --version +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" uninstall-pkgconfigDATA +} + +sha512sums="8369b5fe425fa0d3f1f5cbda37e2f054bb40a1b0e16a1fa07d4445774efaeaa1d5344973b070d7d940978bd3873484946d42f4c88a6d702f46fb052d14c000d6 ibus-1.5.17.tar.gz +1e2e62ce52becf75d794c403e8f21bb72e8406aacbdbc5189f62a3b7c54166c40da0032d3f3865f5a23d9d2c782f974b7bcc9ba5ce437d9eb435dd3db3ff0b06 0001-Use-more-portable-call-to-mktemp.patch" diff --git a/testing/ibus/ibus.post-install b/testing/ibus/ibus.post-install new file mode 100755 index 0000000000..8d323626f0 --- /dev/null +++ b/testing/ibus/ibus.post-install @@ -0,0 +1,3 @@ +#!/bin/sh +which gtk-query-immodules-2.0 && gtk-query-immodules-2.0 --update-cache +which gtk-query-immodules-3.0 && gtk-query-immodules-3.0 --update-cache -- 2.15.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---