diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2010-05-08 10:28:38 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2010-05-08 10:28:38 +0000 |
commit | 1931ec7c90e3d1f62550608280ed2722d5d72d48 (patch) | |
tree | 369ff393f47da4b38f0cc76e589b516e03b60c18 /app-i18n | |
parent | Removed x11-libs/libXt from DEPEND, bug #313109. (diff) | |
download | historical-1931ec7c90e3d1f62550608280ed2722d5d72d48.tar.gz historical-1931ec7c90e3d1f62550608280ed2722d5d72d48.tar.bz2 historical-1931ec7c90e3d1f62550608280ed2722d5d72d48.zip |
Removed x11-libs/libXt from DEPEND, bug #313109. Removed old versions.
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/scim/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/scim/scim-1.4.5-r1.ebuild | 113 | ||||
-rw-r--r-- | app-i18n/scim/scim-1.4.7-r2.ebuild | 5 | ||||
-rw-r--r-- | app-i18n/scim/scim-1.4.8.ebuild | 111 | ||||
-rw-r--r-- | app-i18n/scim/scim-1.4.9-r1.ebuild | 3 | ||||
-rw-r--r-- | app-i18n/scim/scim-1.4.9.ebuild | 109 |
6 files changed, 9 insertions, 339 deletions
diff --git a/app-i18n/scim/ChangeLog b/app-i18n/scim/ChangeLog index 282101c5ca1c..461aec88cf7a 100644 --- a/app-i18n/scim/ChangeLog +++ b/app-i18n/scim/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/scim # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim/ChangeLog,v 1.139 2010/05/06 05:14:05 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim/ChangeLog,v 1.140 2010/05/08 10:28:37 matsuu Exp $ + + 08 May 2010; MATSUU Takuto <matsuu@gentoo.org> -scim-1.4.5-r1.ebuild, + scim-1.4.7-r2.ebuild, -scim-1.4.8.ebuild, -scim-1.4.9.ebuild, + scim-1.4.9-r1.ebuild: + Removed x11-libs/libXt from DEPEND, bug #313109. Removed old versions. 06 May 2010; Jeroen Roovers <jer@gentoo.org> scim-1.4.9-r1.ebuild: Stable for HPPA (bug #306035). diff --git a/app-i18n/scim/scim-1.4.5-r1.ebuild b/app-i18n/scim/scim-1.4.5-r1.ebuild deleted file mode 100644 index bed78ceb7b04..000000000000 --- a/app-i18n/scim/scim-1.4.5-r1.ebuild +++ /dev/null @@ -1,113 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim/scim-1.4.5-r1.ebuild,v 1.12 2009/12/31 21:15:48 ssuominen Exp $ - -inherit eutils flag-o-matic autotools - -DESCRIPTION="Smart Common Input Method (SCIM) is an Input Method (IM) development platform" -HOMEPAGE="http://www.scim-im.org/" -SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="doc gtk" - -RDEPEND="x11-libs/libX11 - gtk? ( >=x11-libs/gtk+-2 - >=dev-libs/atk-1 - >=x11-libs/pango-1 - >=dev-libs/glib-2 ) - !app-i18n/scim-cvs" -DEPEND="${RDEPEND} - x11-libs/libXt - doc? ( app-doc/doxygen - app-text/docbook-xsl-stylesheets ) - dev-lang/perl - dev-util/pkgconfig - >=dev-util/intltool-0.33" - -get_gtk_confdir() { - if use amd64 || ( [ "${CONF_LIBDIR}" == "lib32" ] && use x86 ) ; then - echo "/etc/gtk-2.0/${CHOST}" - else - echo "/etc/gtk-2.0" - fi -} - -src_unpack() { - unpack ${A} - - cd "${S}" - epatch "${FILESDIR}"/${P}-imengine.patch - epatch "${FILESDIR}"/${P}-fbsd.patch - - if use doc ; then - local xsl=$(ls -1d /usr/share/sgml/docbook/xsl-stylesheets* | head -n 1) - sed -i -e "s:/usr/share/sgml/docbook/xsl-stylesheets:${xsl}:" configure.ac || die - fi - eautoreconf -} - -src_compile() { - local myconf - # bug #83625 - filter-flags -fvisibility-inlines-hidden - filter-flags -fvisibility=hidden - - # We cannot use "use_enable" - if ! use gtk ; then - myconf="${myconf} --disable-panel-gtk" - myconf="${myconf} --disable-setup-ui" - myconf="${myconf} --disable-gtk2-immodule" - fi - - econf \ - $(use_with doc doxygen) \ - --enable-ld-version-script \ - ${myconf} || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc README AUTHORS ChangeLog docs/developers docs/scim.cfg - use doc && dohtml -r docs/html/* -} - -pkg_postinst() { - elog - elog "To use SCIM with both GTK2 and XIM, you should use the following" - elog "in your user startup scripts such as .gnomerc or .xinitrc:" - elog - elog "LANG='your_language' scim -d" - elog "export XMODIFIERS=@im=SCIM" - elog "export GTK_IM_MODULE=\"scim\"" - elog "export QT_IM_MODULE=\"scim\"" - elog - elog "where 'your_language' can be zh_CN, zh_TW, ja_JP.eucJP or any other" - elog "UTF-8 locale such as en_US.UTF-8 or ja_JP.UTF-8" - elog - elog "If you prefer KDE/Qt interface, try emerge app-i18n/skim." - elog - elog "To use Chinese input methods:" - elog " # emerge app-i18n/scim-tables app-i18n/scim-pinyin" - elog "To use Korean input methods:" - elog " # emerge app-i18n/scim-hangul" - elog "To use Japanese input methods:" - elog " # emerge app-i18n/scim-anthy" - elog "To use various input methods (more than 30 languages):" - elog " # emerge app-i18n/scim-m17n" - elog - ewarn - ewarn "If you upgraded from scim-1.2.x or scim-1.0.x, you should remerge all SCIM modules." - ewarn - epause 10 - - [ -x /usr/bin/gtk-query-immodules-2.0 ] && gtk-query-immodules-2.0 > "${ROOT}$(get_gtk_confdir)/gtk.immodules" -} - -pkg_postrm() { - - [ -x /usr/bin/gtk-query-immodules-2.0 ] && gtk-query-immodules-2.0 > "${ROOT}$(get_gtk_confdir)/gtk.immodules" -} diff --git a/app-i18n/scim/scim-1.4.7-r2.ebuild b/app-i18n/scim/scim-1.4.7-r2.ebuild index 3f2cef087f0b..b9c674b27e89 100644 --- a/app-i18n/scim/scim-1.4.7-r2.ebuild +++ b/app-i18n/scim/scim-1.4.7-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim/scim-1.4.7-r2.ebuild,v 1.7 2009/06/20 13:44:17 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim/scim-1.4.7-r2.ebuild,v 1.8 2010/05/08 10:28:37 matsuu Exp $ inherit eutils flag-o-matic autotools @@ -20,7 +20,6 @@ RDEPEND="x11-libs/libX11 >=dev-libs/glib-2 !app-i18n/scim-cvs" DEPEND="${RDEPEND} - x11-libs/libXt doc? ( app-doc/doxygen >=app-text/docbook-xsl-stylesheets-1.73.1 ) dev-lang/perl diff --git a/app-i18n/scim/scim-1.4.8.ebuild b/app-i18n/scim/scim-1.4.8.ebuild deleted file mode 100644 index 4f32e3d8f9a5..000000000000 --- a/app-i18n/scim/scim-1.4.8.ebuild +++ /dev/null @@ -1,111 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim/scim-1.4.8.ebuild,v 1.1 2009/01/25 06:15:01 matsuu Exp $ - -inherit eutils flag-o-matic autotools - -DESCRIPTION="Smart Common Input Method (SCIM) is an Input Method (IM) development platform" -HOMEPAGE="http://www.scim-im.org/" -SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="doc" - -RDEPEND="x11-libs/libX11 - >=x11-libs/gtk+-2 - >=dev-libs/atk-1 - >=x11-libs/pango-1 - >=dev-libs/glib-2 - !app-i18n/scim-cvs" -DEPEND="${RDEPEND} - x11-libs/libXt - doc? ( app-doc/doxygen - >=app-text/docbook-xsl-stylesheets-1.73.1 ) - dev-lang/perl - dev-util/pkgconfig - >=dev-util/intltool-0.33 - sys-devel/libtool" - -get_gtk_confdir() { - if use amd64 || ( [ "${CONF_LIBDIR}" == "lib32" ] && use x86 ) ; then - echo "/etc/gtk-2.0/${CHOST}" - else - echo "/etc/gtk-2.0" - fi -} - -src_unpack() { - unpack ${A} - - cd "${S}" - - epatch "${FILESDIR}/${PN}-1.4.7-syslibltdl.patch" - rm "${S}"/src/ltdl.{cpp,h} - eautoreconf -} - -src_compile() { - local myconf - # bug #83625 - filter-flags -fvisibility-inlines-hidden - filter-flags -fvisibility=hidden - - # bug #191696 - ## We cannot use "use_enable" - #if ! use gtk ; then - # myconf="${myconf} --disable-panel-gtk" - # myconf="${myconf} --disable-setup-ui" - # myconf="${myconf} --disable-gtk2-immodule" - #fi - - econf \ - $(use_with doc doxygen) \ - --enable-ld-version-script \ - ${myconf} || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc README AUTHORS ChangeLog docs/developers docs/scim.cfg - use doc && dohtml -r docs/html/* -} - -pkg_postinst() { - elog - elog "To use SCIM with both GTK2 and XIM, you should use the following" - elog "in your user startup scripts such as .gnomerc or .xinitrc:" - elog - elog "LANG='your_language' scim -d" - elog "export XMODIFIERS=@im=SCIM" - elog "export GTK_IM_MODULE=\"scim\"" - elog "export QT_IM_MODULE=\"scim\"" - elog - elog "where 'your_language' can be zh_CN, zh_TW, ja_JP.eucJP or any other" - elog "UTF-8 locale such as en_US.UTF-8 or ja_JP.UTF-8" - elog - elog "If you prefer KDE/Qt interface, try emerge app-i18n/skim." - elog - elog "To use Chinese input methods:" - elog " # emerge app-i18n/scim-tables app-i18n/scim-pinyin" - elog "To use Korean input methods:" - elog " # emerge app-i18n/scim-hangul" - elog "To use Japanese input methods:" - elog " # emerge app-i18n/scim-anthy" - elog "To use various input methods (more than 30 languages):" - elog " # emerge app-i18n/scim-m17n" - elog - ewarn - ewarn "If you upgraded from scim-1.2.x or scim-1.0.x, you should remerge all SCIM modules." - ewarn - epause 10 - - [ -x /usr/bin/gtk-query-immodules-2.0 ] && gtk-query-immodules-2.0 > "${ROOT}$(get_gtk_confdir)/gtk.immodules" -} - -pkg_postrm() { - - [ -x /usr/bin/gtk-query-immodules-2.0 ] && gtk-query-immodules-2.0 > "${ROOT}$(get_gtk_confdir)/gtk.immodules" -} diff --git a/app-i18n/scim/scim-1.4.9-r1.ebuild b/app-i18n/scim/scim-1.4.9-r1.ebuild index bca52c3e2ebc..92342ed35341 100644 --- a/app-i18n/scim/scim-1.4.9-r1.ebuild +++ b/app-i18n/scim/scim-1.4.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim/scim-1.4.9-r1.ebuild,v 1.7 2010/05/06 05:14:05 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim/scim-1.4.9-r1.ebuild,v 1.8 2010/05/08 10:28:38 matsuu Exp $ EAPI="2" inherit autotools eutils flag-o-matic multilib @@ -21,7 +21,6 @@ RDEPEND="x11-libs/libX11 >=dev-libs/glib-2 !app-i18n/scim-cvs" DEPEND="${RDEPEND} - x11-libs/libXt doc? ( app-doc/doxygen >=app-text/docbook-xsl-stylesheets-1.73.1 ) dev-lang/perl diff --git a/app-i18n/scim/scim-1.4.9.ebuild b/app-i18n/scim/scim-1.4.9.ebuild deleted file mode 100644 index cbe9ddd9a65f..000000000000 --- a/app-i18n/scim/scim-1.4.9.ebuild +++ /dev/null @@ -1,109 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim/scim-1.4.9.ebuild,v 1.2 2009/11/25 19:34:10 ssuominen Exp $ - -inherit eutils flag-o-matic autotools - -DESCRIPTION="Smart Common Input Method (SCIM) is an Input Method (IM) development platform" -HOMEPAGE="http://www.scim-im.org/" -SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="doc" - -RDEPEND="x11-libs/libX11 - >=x11-libs/gtk+-2 - >=dev-libs/atk-1 - >=x11-libs/pango-1 - >=dev-libs/glib-2 - !app-i18n/scim-cvs" -DEPEND="${RDEPEND} - x11-libs/libXt - doc? ( app-doc/doxygen - >=app-text/docbook-xsl-stylesheets-1.73.1 ) - dev-lang/perl - dev-util/pkgconfig - >=dev-util/intltool-0.33 - sys-devel/libtool" - -get_gtk_confdir() { - if use amd64 || ( [ "${CONF_LIBDIR}" == "lib32" ] && use x86 ) ; then - echo "/etc/gtk-2.0/${CHOST}" - else - echo "/etc/gtk-2.0" - fi -} - -src_unpack() { - unpack ${A} - - cd "${S}" - - epatch "${FILESDIR}/${PN}-1.4.7-syslibltdl.patch" - rm "${S}"/src/ltdl.{cpp,h} - eautoreconf -} - -src_compile() { - local myconf - # bug #83625 - filter-flags -fvisibility-inlines-hidden - filter-flags -fvisibility=hidden - - # bug #191696 - ## We cannot use "use_enable" - #if ! use gtk ; then - # myconf="${myconf} --disable-panel-gtk" - # myconf="${myconf} --disable-setup-ui" - # myconf="${myconf} --disable-gtk2-immodule" - #fi - - econf \ - $(use_with doc doxygen) \ - --enable-ld-version-script \ - ${myconf} || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc README AUTHORS ChangeLog docs/developers docs/scim.cfg - use doc && dohtml -r docs/html/* -} - -pkg_postinst() { - elog - elog "To use SCIM with both GTK2 and XIM, you should use the following" - elog "in your user startup scripts such as .gnomerc or .xinitrc:" - elog - elog "LANG='your_language' scim -d" - elog "export XMODIFIERS=@im=SCIM" - elog "export GTK_IM_MODULE=\"scim\"" - elog "export QT_IM_MODULE=\"scim\"" - elog - elog "where 'your_language' can be zh_CN, zh_TW, ja_JP.eucJP or any other" - elog "UTF-8 locale such as en_US.UTF-8 or ja_JP.UTF-8" - elog - elog "To use Chinese input methods:" - elog " # emerge app-i18n/scim-tables app-i18n/scim-pinyin" - elog "To use Korean input methods:" - elog " # emerge app-i18n/scim-hangul" - elog "To use Japanese input methods:" - elog " # emerge app-i18n/scim-anthy" - elog "To use various input methods (more than 30 languages):" - elog " # emerge app-i18n/scim-m17n" - elog - ewarn - ewarn "If you upgraded from scim-1.2.x or scim-1.0.x, you should remerge all SCIM modules." - ewarn - epause 10 - - [ -x /usr/bin/gtk-query-immodules-2.0 ] && gtk-query-immodules-2.0 > "${ROOT}$(get_gtk_confdir)/gtk.immodules" -} - -pkg_postrm() { - - [ -x /usr/bin/gtk-query-immodules-2.0 ] && gtk-query-immodules-2.0 > "${ROOT}$(get_gtk_confdir)/gtk.immodules" -} |