calchan     15/04/05 05:01:17

  Modified:             ChangeLog
  Added:                tagainijisho-1.0.3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.6                  app-i18n/tagainijisho/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/tagainijisho/ChangeLog?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/tagainijisho/ChangeLog?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/tagainijisho/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-i18n/tagainijisho/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   9 May 2014 20:21:29 -0000       1.5
+++ ChangeLog   5 Apr 2015 05:01:17 -0000       1.6
@@ -1,6 +1,11 @@
 # ChangeLog for app-i18n/tagainijisho
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/tagainijisho/ChangeLog,v 1.5 
2014/05/09 20:21:29 calchan Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/tagainijisho/ChangeLog,v 1.6 
2015/04/05 05:01:17 calchan Exp $
+
+*tagainijisho-1.0.3 (05 Apr 2015)
+
+  05 Apr 2015; Denis Dupeyron <[email protected]> +tagainijisho-1.0.3.ebuild:
+  Version bump.
 
   09 May 2014; Denis Dupeyron <[email protected]> tagainijisho-1.0.2.ebuild:
   Fixed bug #509872, thanks to Jouni Rinne.



1.1                  app-i18n/tagainijisho/tagainijisho-1.0.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/tagainijisho/tagainijisho-1.0.3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/tagainijisho/tagainijisho-1.0.3.ebuild?rev=1.1&content-type=text/plain

Index: tagainijisho-1.0.3.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-i18n/tagainijisho/tagainijisho-1.0.3.ebuild,v 1.1 
2015/04/05 05:01:17 calchan Exp $

EAPI=5

inherit cmake-utils gnome2-utils

DESCRIPTION="Open-source Japanese dictionary and kanji lookup tool"
HOMEPAGE="http://www.tagaini.net/";
SRC_URI="https://github.com/Gnurou/tagainijisho/releases/download/${PV}/${P}.tar.gz";
LICENSE="GPL-3+ public-domain"

SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-qt/qtcore:4
        dev-qt/qtgui:4
        dev-db/sqlite:3"
RDEPEND="${DEPEND}"

pkg_linguas=( ar cs de es fa_IR fi_FI fr hu id it nb nl pl pt ru sv th tr vi )
IUSE+=" ${pkg_linguas[@]/#/linguas_}"

src_configure() {
        # GUI linguas
        # en is not optional, and build fails if none other then en is set, so 
adding ja as non-optional too
        # linguas undeclared in IUSE will trigger an error, which is a handy 
check
        for lingua in $(ls -1 i18n/*.ts | sed -e 
's/.*tagainijisho_\(.*\)\.ts/\1/' | grep -v en | grep -v ja); do
echo "i18n: ${lingua}"
                if ! use linguas_${lingua}; then
                        rm i18n/tagainijisho_${lingua}.ts || die
                fi
        done

        # Dictionary linguas
        # en is not optional here either, but nothing special needs to be done
        # here too, linguas undeclared in IUSE will trigger an error
        local cmake_linguas
        for lingua in $(sed -e 's/;/ /g' -ne '/set(DICT_LANG 
".*")/s/.*"\(.*\)".*/\1/p' CMakeLists.txt); do
echo "dict: ${lingua}"
                if use linguas_${lingua}; then
                        cmake_linguas+=";${lingua}"
                fi
        done
        mycmakeargs=( -DDICT_LANG="${cmake_linguas};" )

        cmake-utils_src_configure
}

pkg_preinst() { gnome2_icon_savelist; }
pkg_postinst() { gnome2_icon_cache_update; }
pkg_postrm() { gnome2_icon_cache_update; }




Reply via email to