summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-11-23 09:07:37 +0000
committerMamoru Komachi <usata@gentoo.org>2004-11-23 09:07:37 +0000
commit2dc0ba0fab70db537be22f14987f63f31a705e2d (patch)
treeab47d8827b519bc2cfad9e2a79136a149ee7b280 /app-i18n
parentChanged einstall to make DESTDIR=${D} install; bug #72170. (Manifest recommit) (diff)
downloadgentoo-2-2dc0ba0fab70db537be22f14987f63f31a705e2d.tar.gz
gentoo-2-2dc0ba0fab70db537be22f14987f63f31a705e2d.tar.bz2
gentoo-2-2dc0ba0fab70db537be22f14987f63f31a705e2d.zip
Changed einstall to make DESTDIR=${D} install; bug #72171.
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/jmode/jmode-0.6.7.ebuild13
1 files changed, 10 insertions, 3 deletions
diff --git a/app-i18n/jmode/jmode-0.6.7.ebuild b/app-i18n/jmode/jmode-0.6.7.ebuild
index 5ccfb2831509..3ec447a06fda 100644
--- a/app-i18n/jmode/jmode-0.6.7.ebuild
+++ b/app-i18n/jmode/jmode-0.6.7.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/jmode/jmode-0.6.7.ebuild,v 1.4 2004/06/28 01:47:55 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/jmode/jmode-0.6.7.ebuild,v 1.5 2004/11/23 09:07:37 usata Exp $
DESCRIPTION="a Japanese IME supporting Anthy"
HOMEPAGE="http://anthy.sourceforge.jp/"
@@ -17,12 +17,19 @@ DEPEND="=x11-libs/gtk+-1.2*
src_compile() {
# --with-skk and --with-engine=anthy are exclusive
- econf `use_with gnome` \
+ econf $(use_with gnome) \
--with-engine=anthy || die
emake CPPFLAGS="${CPPFLAGS} -DCONF_DIR=\\\"/etc/jmode/\\\"" || die
}
src_install() {
- einstall pkgdatadir=${D}/etc/jmode || die
+ make DESTDIR=${D} pkgdatadir=/etc/jmode install || die
dodoc AUTHORS ChangeLog INSTALL NEWS README
}
+
+pkg_postinst() {
+ einfo
+ einfo "jmode is deprecated and not supported by upstream anymore."
+ einfo " Please consider switching to app-i18n/uim."
+ einfo
+}