diff options
author | Nguyen Thai Ngoc Duy <pclouds@gentoo.org> | 2004-06-27 18:05:55 +0000 |
---|---|---|
committer | Nguyen Thai Ngoc Duy <pclouds@gentoo.org> | 2004-06-27 18:05:55 +0000 |
commit | ae878a8df99349e242a8f676519e7abeafef7347 (patch) | |
tree | 995f336ff2454995e30682f339fdd559c9635f3f /app-i18n/xvnkb | |
parent | Stable on x86 / ppc (diff) | |
download | gentoo-2-ae878a8df99349e242a8f676519e7abeafef7347.tar.gz gentoo-2-ae878a8df99349e242a8f676519e7abeafef7347.tar.bz2 gentoo-2-ae878a8df99349e242a8f676519e7abeafef7347.zip |
Added use flag "spell", edit my info in metadata.xml
Diffstat (limited to 'app-i18n/xvnkb')
-rw-r--r-- | app-i18n/xvnkb/ChangeLog | 5 | ||||
-rw-r--r-- | app-i18n/xvnkb/metadata.xml | 5 | ||||
-rw-r--r-- | app-i18n/xvnkb/xvnkb-0.2.8a.ebuild | 17 |
3 files changed, 13 insertions, 14 deletions
diff --git a/app-i18n/xvnkb/ChangeLog b/app-i18n/xvnkb/ChangeLog index 05373f6d9cc8..5289a3c22d99 100644 --- a/app-i18n/xvnkb/ChangeLog +++ b/app-i18n/xvnkb/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-i18n/xvnkb # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/xvnkb/ChangeLog,v 1.3 2004/06/24 21:57:11 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/xvnkb/ChangeLog,v 1.4 2004/06/27 18:05:55 pclouds Exp $ + + 28 Jun 2004; <pclouds@gentoo.org> metadata.xml, xvnkb-0.2.8a.ebuild: + Add use flag spell, edit some info of mine in metadata.xml 29 Apr 2004; David Holm <dholm@gentoo.org> xvnkb-0.2.8a.ebuild: Added to ~ppc. diff --git a/app-i18n/xvnkb/metadata.xml b/app-i18n/xvnkb/metadata.xml index 58c4996d6b03..ac9fb22efd36 100644 --- a/app-i18n/xvnkb/metadata.xml +++ b/app-i18n/xvnkb/metadata.xml @@ -3,9 +3,6 @@ <pkgmetadata> <herd>cjk</herd> <maintainer> - <email>pclouds@vnlinux.org</email> - <name>Nguyen Thai Ngoc Duy</name> - <description>Since none of us in cjk herd speak Vietnamese he helps - us a lot in Vietnamese support.</description> + <email>pclouds@gentoo.org</email> </maintainer> </pkgmetadata> diff --git a/app-i18n/xvnkb/xvnkb-0.2.8a.ebuild b/app-i18n/xvnkb/xvnkb-0.2.8a.ebuild index 1b0435c0a9ee..42524f989369 100644 --- a/app-i18n/xvnkb/xvnkb-0.2.8a.ebuild +++ b/app-i18n/xvnkb/xvnkb-0.2.8a.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/xvnkb/xvnkb-0.2.8a.ebuild,v 1.4 2004/06/24 21:57:11 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/xvnkb/xvnkb-0.2.8a.ebuild,v 1.5 2004/06/27 18:05:55 pclouds Exp $ inherit eutils -IUSE="truetype" +IUSE="truetype spell" DESCRIPTION="Vietnamese input keyboard for X" SRC_URI="http://xvnkb.sourceforge.net/xvnkb/${P}.tar.bz2" @@ -27,11 +27,10 @@ src_unpack() { src_compile() { local myconf - if ! use truetype ; then - myconf="${myconf} --no-xft" - fi + use spell || myconf="${myconf} --no-spellcheck" + use truetype || myconf="${myconf} --no-xft" - econf --no-spellcheck --use-extstroke ${myconf} || die + econf --use-extstroke ${myconf} || die emake || die } @@ -55,8 +54,8 @@ pkg_postinst() { einfo "$ export LANG=en_US.UTF-8" einfo "(or any other UTF-8 locale) and" einfo "$ export LD_PRELOAD=${DESTTREE}/lib/xvnkb.so" - einfo "before you" - einfo "$ startx" + einfo "before starting X Window" einfo "More documents are in /usr/share/doc/${PF}" - einfo "Also note that this ebuild has spell checking disabled." + ewarn "Programs with suid/sgid will have LD_PRELOAD cleared" + ewarn "You have to unset suid/sgid to use with xvnkb" } |