diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-08-16 14:09:54 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-08-16 14:09:54 +0000 |
commit | 58bfc682af63ee165e7b1017e178f8bbdf997afa (patch) | |
tree | f147d4979c18a493a88fdeb6a56051a78085a52d /app-i18n/scim-qtimm | |
parent | RevisioRevision bump to handle gpgme-0.3.14-r1 bug #57193 (Manifest recommit) (diff) | |
download | gentoo-2-58bfc682af63ee165e7b1017e178f8bbdf997afa.tar.gz gentoo-2-58bfc682af63ee165e7b1017e178f8bbdf997afa.tar.bz2 gentoo-2-58bfc682af63ee165e7b1017e178f8bbdf997afa.zip |
Corrected immodule version check condition.
Diffstat (limited to 'app-i18n/scim-qtimm')
-rw-r--r-- | app-i18n/scim-qtimm/ChangeLog | 6 | ||||
-rw-r--r-- | app-i18n/scim-qtimm/scim-qtimm-0.6_pre20040813.ebuild | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/app-i18n/scim-qtimm/ChangeLog b/app-i18n/scim-qtimm/ChangeLog index fa7808a98659..580384ae6064 100644 --- a/app-i18n/scim-qtimm/ChangeLog +++ b/app-i18n/scim-qtimm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-i18n/scim-qtimm # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-qtimm/ChangeLog,v 1.3 2004/08/16 13:57:19 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-qtimm/ChangeLog,v 1.4 2004/08/16 14:09:54 usata Exp $ + + 16 Aug 2004; Mamoru KOMACHI <usata@gentoo.org> + scim-qtimm-0.6_pre20040813.ebuild: + Corrected immodule version check condition. *scim-qtimm-0.6_pre20040813 (16 Aug 2004) diff --git a/app-i18n/scim-qtimm/scim-qtimm-0.6_pre20040813.ebuild b/app-i18n/scim-qtimm/scim-qtimm-0.6_pre20040813.ebuild index 3be885434363..a0125bb4bdc4 100644 --- a/app-i18n/scim-qtimm/scim-qtimm-0.6_pre20040813.ebuild +++ b/app-i18n/scim-qtimm/scim-qtimm-0.6_pre20040813.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-qtimm/scim-qtimm-0.6_pre20040813.ebuild,v 1.1 2004/08/16 13:57:19 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-qtimm/scim-qtimm-0.6_pre20040813.ebuild,v 1.2 2004/08/16 14:09:54 usata Exp $ S="${WORKDIR}/${PN}" @@ -27,9 +27,9 @@ pkg_setup() { ewarn if [ ! -e /usr/qt/3/include/qinputcontext.h ] ; then die "You need to rebuild >=x11-libs/qt-3.3.2 with cjk USE flag enabled." - if [ ! -e /usr/qt/3/plugins/inputmethods/libqimsw-none.so ] ; then - die "Your Qt was not built against the latest immodule API. Please rebuild >=x11-libs/qt-3.3.2." - fi + fi + if [ ! -e /usr/qt/3/plugins/inputmethods/libqimsw-none.so ] ; then + die "Your Qt was not built against the latest immodule API. Please rebuild >=x11-libs/qt-3.3.2." fi } |