X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-wr0-f195.google.com (mail-wr0-f195.google.com [209.85.128.195]) by lists.alpinelinux.org (Postfix) with ESMTP id 524C25C3AD7 for ; Thu, 6 Apr 2017 21:04:18 +0000 (GMT) Received: by mail-wr0-f195.google.com with SMTP id t20so14769629wra.2 for ; Thu, 06 Apr 2017 14:04:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=nMl6RP63N7cS+6dyUQ37QbzkIH3ubk/QzZYYzKcK4vY=; b=WuK2vI+z5dvoOFb53Hqzbx6qJI3e7Oklhh7p62SF5CzgZBe3HDoRwmZJnLUntY6Lfs cO6pFx4tBow2Xlec8MTWNdXMods5Er6wnVLRZenrpFNljS/VO/KRzYB5UIVa5jjHGWUa D+MDlb4s1Wa/gkcfEGC2pICjU9GZ5VutvdFL0+YqgGVFC8KYWFJRLWGaxjgDsIiEBp8h XSFiwC/GM+f0dbUO8H+p0uotELl36E8OP+ScyGnV4H1Agw6DHeK6thkEJD4gc90rLpOS lmaqpce2eFC/Xb0Yi44G7zJMwZHR7qierQSUVKdWuCR1eVbjDBvU9oMzVbhOTOShcHF/ 3yVw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=nMl6RP63N7cS+6dyUQ37QbzkIH3ubk/QzZYYzKcK4vY=; b=H8W0fnzzVbjOkOpImah5PoDwDSe39vgdTYsJUQnC5PsjXYENpn4r0CbHuhPH1JtTmL Wg1nTc9vBeau5mRZZdQisWX89oRBlvZpIpwvTYlD8ZlXgRQT8p3VY1+vu0gk2HNFllLu rw1WuaIb/WAKhKaeOB4H4kjFKXgQMI8ScZXJk+XBCF29BPnd+dEzZA3rt4OvWGv+rD20 HQOiN5ziOZddFVNTggR8LEfCQmCy5OAU19XvlB2JGiiSLW739yRytxycbosDbKPabHI4 YgmHw6QTUVIvgoRmvvDwJ6PHVBeh4w0iPqc3pRroiu9PhyaaB9BNsVMIxLl9hVtQa7NT a32w== X-Gm-Message-State: AFeK/H13tWdVIbR7CH+Pe+BrU++M0uAjoWYolmN29O+K5j624vwGHyDTrwwvhkPgtsjhng== X-Received: by 10.223.136.125 with SMTP id e58mr7235913wre.73.1491512657390; Thu, 06 Apr 2017 14:04:17 -0700 (PDT) Received: from localhost.localdomain ([31.223.25.141]) by smtp.gmail.com with ESMTPSA id v188sm3771283wmg.11.2017.04.06.14.04.15 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 06 Apr 2017 14:04:16 -0700 (PDT) From: Taner Tas To: alpine-aports@lists.alpinelinux.org Cc: Taner Tas Subject: [alpine-aports] [PATCH] testing/stardict: new aport Date: Thu, 6 Apr 2017 21:03:55 +0000 Message-Id: <20170406210355.3490-1-taner76@gmail.com> X-Mailer: git-send-email 2.12.2 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://stardict-4.sourceforge.net/ Cross-Platform and international dictionary Software --- testing/stardict/APKBUILD | 67 ++++++++++++++++++++++++++++++++++++++++++++ testing/stardict/gcc46.patch | 11 ++++++++ testing/stardict/glib2.patch | 36 ++++++++++++++++++++++++ 3 files changed, 114 insertions(+) create mode 100644 testing/stardict/APKBUILD create mode 100644 testing/stardict/gcc46.patch create mode 100644 testing/stardict/glib2.patch diff --git a/testing/stardict/APKBUILD b/testing/stardict/APKBUILD new file mode 100644 index 00000000..c8ce104a --- /dev/null +++ b/testing/stardict/APKBUILD @@ -0,0 +1,67 @@ +# Contributor: Taner Tas +# Maintainer: Taner Tas +pkgname=stardict +pkgver=3.0.6 +pkgrel=0 +pkgdesc="Cross-Platform and international dictionary Software" +url="http://stardict-4.sourceforge.net/" +arch="all" +license="GPL" +depends="gtk+2.0 libsigc++ zlib" +makedepends="gtk+2.0-dev libsigc++-dev libxml2-dev gnome-doc-utils + gnome-common enchant-dev espeak-dev zlib-dev mariadb-dev gconf-dev" +install="" +subpackages="$pkgname-doc $pkgname-lang $pkgname-help::noarch" +source="http://downloads.sourceforge.net/project/stardict-4/${pkgver}/${pkgname}-${pkgver}.tar.bz2 + gcc46.patch + glib2.patch" + +prepare() { + cd "$builddir" + local i + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done + find dict/src/sigc++* -name \*.h -or -name \*.cc | xargs rm -f || return 1 +} + +build() { + cd "$builddir" + export CXXFLAGS="$CXXLAGS -std=gnu++11" + ./autogen.sh + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --disable-gnome-support \ + --disable-dictdotcn \ + --disable-gucharmap \ + --disable-scrollkeeper \ + --disable-festival \ + --disable-updateinfo \ + --disable-gpe-support \ + --disable-schemas-install || return 1 + make || return 1 +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +help() { + pkgdesc="Stardict help files." + mkdir -p ${subpkgdir}/usr/share/stardict + mv ${pkgdir}/usr/share/gnome ${subpkgdir}/usr/share/ + mv ${pkgdir}/usr/share/omf ${subpkgdir}/usr/share/ + mv ${pkgdir}/usr/share/stardict/help ${subpkgdir}/usr/share/stardict/ +} + +sha512sums="81d93324b6e8954af7c20ea6d2a3054bb564d786a21b1cb541c728da7a18a6e7ddb23e595055ccc77e6866bbb8c89fb4f17023e33664761dbe1ee8cd55768658 stardict-3.0.6.tar.bz2 +cc43b57cdf2e7fbd3e9c86acb4c8f9fef367d68f6f027e75774eec9cdf66b3fdd3b0bc58d373d076cb38671e09012ab69b8b7e81638a5be888af56372e65a838 gcc46.patch +4132eee58ab5dfb30105fd2c1a113d143528f7e904ededbb8de203bbb244377aed2c152aae7f383936e74005c2f4afa6128674a245d2a8083b2757b1ca90dd24 glib2.patch" diff --git a/testing/stardict/gcc46.patch b/testing/stardict/gcc46.patch new file mode 100644 index 00000000..944b9635 --- /dev/null +++ b/testing/stardict/gcc46.patch @@ -0,0 +1,11 @@ +diff -aur old/dict/stardict-plugins/stardict-wordnet-plugin/utils.h new/dict/stardict-plugins/stardict-wordnet-plugin/utils.h +--- old/dict/stardict-plugins/stardict-wordnet-plugin/utils.h 2011-07-18 06:58:58.519404744 -0700 ++++ new/dict/stardict-plugins/stardict-wordnet-plugin/utils.h 2011-07-18 07:01:10.739734313 -0700 +@@ -26,6 +26,7 @@ + #ifndef __TYPES_H__ + #define __TYPES_H__ + ++#include + #include + + typedef float single; diff --git a/testing/stardict/glib2.patch b/testing/stardict/glib2.patch new file mode 100644 index 00000000..bd0f6bac --- /dev/null +++ b/testing/stardict/glib2.patch @@ -0,0 +1,36 @@ +diff -Naur old/dict/configure.ac new/dict/configure.ac +--- old/dict/configure.ac 2011-07-03 16:58:40.000000000 +1000 ++++ new/dict/configure.ac 2012-07-12 22:31:52.875176842 +1000 +@@ -266,6 +266,9 @@ + fi + AC_SUBST(WIKI_PARSEDATA_PLUGIN_DIR) + ++GMODULE2_LIBS=`pkg-config --libs gmodule-2.0` ++AC_SUBST([GMODULE2_LIBS]) ++ + dnl ================================================================ + dnl main program checks. + dnl ================================================================ +diff -Naur old/dict/src/Makefile.am new/dict/src/Makefile.am +--- old/dict/src/Makefile.am 2011-07-03 16:58:40.000000000 +1000 ++++ new/dict/src/Makefile.am 2012-07-12 22:29:53.714870692 +1000 +@@ -33,7 +33,7 @@ + stardict_DEPENDENCIES = lib/libstardict.la $(LOCAL_SIGCPP_LIBFILE) + stardict_LDFLAGS = + ## place libstardict.la before any system library, otherwise build with --as-needed linker option may fail +-stardict_LDADD = lib/libstardict.la $(STARDICT_LIBS) $(LOCAL_SIGCPP_LIBFILE) ++stardict_LDADD = lib/libstardict.la $(STARDICT_LIBS) $(LOCAL_SIGCPP_LIBFILE) $(GMODULE2_LIBS) + + if !GNOME_SUPPORT + if MAEMO_SUPPORT +diff -Naur old/dict/src/tomboykeybinder.h new/dict/src/tomboykeybinder.h +--- old/dict/src/tomboykeybinder.h 2011-07-03 16:58:40.000000000 +1000 ++++ new/dict/src/tomboykeybinder.h 2012-07-12 22:28:04.337920391 +1000 +@@ -21,7 +21,6 @@ + #ifndef __TOMBOY_KEY_BINDER_H__ + #define __TOMBOY_KEY_BINDER_H__ + +-#include + + G_BEGIN_DECLS + -- 2.12.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---