public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-text/mecab: ChangeLog mecab-0.991.ebuild
@ 2012-01-21  2:57 Matsuu Takuto (matsuu)
  0 siblings, 0 replies; 2+ messages in thread
From: Matsuu Takuto (matsuu) @ 2012-01-21  2:57 UTC (permalink / raw
  To: gentoo-commits

matsuu      12/01/21 02:57:45

  Modified:             ChangeLog
  Added:                mecab-0.991.ebuild
  Log:
  Version bumped. Added static-libs USE flag.
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.63                 app-text/mecab/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mecab/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mecab/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mecab/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	2 May 2010 11:01:57 -0000	1.62
+++ ChangeLog	21 Jan 2012 02:57:45 -0000	1.63
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/mecab
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.62 2010/05/02 11:01:57 aballier Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.63 2012/01/21 02:57:45 matsuu Exp $
+
+*mecab-0.991 (21 Jan 2012)
+
+  21 Jan 2012; MATSUU Takuto <matsuu@gentoo.org> +mecab-0.991.ebuild:
+  Version bumped. Added static-libs USE flag.
 
   02 May 2010; Alexis Ballier <aballier@gentoo.org> mecab-0.98.ebuild,
   +files/mecab-0.98-iconv.patch:



1.1                  app-text/mecab/mecab-0.991.ebuild

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

Index: mecab-0.991.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.991.ebuild,v 1.1 2012/01/21 02:57:45 matsuu Exp $

EAPI="4"
inherit autotools eutils

DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer"
HOMEPAGE="http://mecab.sourceforge.net/"
SRC_URI="http://mecab.googlecode.com/files/${P}.tar.gz"

LICENSE="|| ( BSD LGPL-2.1 GPL-2 )"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
SLOT="0"
IUSE="static-libs unicode"

DEPEND="dev-lang/perl
	virtual/libiconv"
RDEPEND=""
PDEPEND="|| (
		>=app-dicts/mecab-ipadic-2.7.0.20070610[unicode=]
		app-dicts/mecab-naist-jdic[unicode=]
	)"

src_prepare() {
	sed -i \
		-e "/CFLAGS/s/-O3/${CFLAGS}/" \
		-e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \
		configure.in || die
	epatch "${FILESDIR}/${PN}-0.98-iconv.patch"
	eautoreconf
}

src_configure() {
	local myconf

	use unicode && myconf="${myconf} --with-charset=utf8"

	econf \
		$(use_enable static-libs static) \
		${myconf}
}

src_install() {
	default

	if ! use static-libs ; then
		find "${ED}" -name '*.la' -delete
	fi

	dodoc AUTHORS README
	dohtml -r doc/*
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-text/mecab: ChangeLog mecab-0.991.ebuild
@ 2012-05-17 16:37 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2012-05-17 16:37 UTC (permalink / raw
  To: gentoo-commits

aballier    12/05/17 16:37:29

  Modified:             ChangeLog mecab-0.991.ebuild
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha107/cvs/Linux x86_64)

Revision  Changes    Path
1.69                 app-text/mecab/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mecab/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mecab/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mecab/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	18 Mar 2012 15:39:04 -0000	1.68
+++ ChangeLog	17 May 2012 16:37:28 -0000	1.69
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/mecab
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.68 2012/03/18 15:39:04 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.69 2012/05/17 16:37:28 aballier Exp $
+
+  17 May 2012; Alexis Ballier <aballier@gentoo.org> mecab-0.991.ebuild:
+  keyword ~amd64-fbsd
 
   18 Mar 2012; Raúl Porcel <armin76@gentoo.org> mecab-0.98.ebuild:
   ia64/sparc stable wrt #396841



1.2                  app-text/mecab/mecab-0.991.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mecab/mecab-0.991.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mecab/mecab-0.991.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/mecab/mecab-0.991.ebuild?r1=1.1&r2=1.2

Index: mecab-0.991.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.991.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mecab-0.991.ebuild	21 Jan 2012 02:57:45 -0000	1.1
+++ mecab-0.991.ebuild	17 May 2012 16:37:28 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.991.ebuild,v 1.1 2012/01/21 02:57:45 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.991.ebuild,v 1.2 2012/05/17 16:37:28 aballier Exp $
 
 EAPI="4"
 inherit autotools eutils
@@ -10,7 +10,7 @@
 SRC_URI="http://mecab.googlecode.com/files/${P}.tar.gz"
 
 LICENSE="|| ( BSD LGPL-2.1 GPL-2 )"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 SLOT="0"
 IUSE="static-libs unicode"
 






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-05-17 16:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-17 16:37 [gentoo-commits] gentoo-x86 commit in app-text/mecab: ChangeLog mecab-0.991.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2012-01-21  2:57 Matsuu Takuto (matsuu)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox