summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-07-21 17:24:09 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-07-21 17:24:09 +0000
commitfec1d83f87577b45d4224b1f1e8b2d36a2097f66 (patch)
treef27e1507b3212c8b9065b6ade797fbcc2fc65362 /app-i18n
parentAdd notes about who wrote the patches that vapier committed. (diff)
downloadgentoo-2-fec1d83f87577b45d4224b1f1e8b2d36a2097f66.tar.gz
gentoo-2-fec1d83f87577b45d4224b1f1e8b2d36a2097f66.tar.bz2
gentoo-2-fec1d83f87577b45d4224b1f1e8b2d36a2097f66.zip
Fixed DEPEND.
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/kanjipad/ChangeLog5
-rw-r--r--app-i18n/kanjipad/Manifest4
-rw-r--r--app-i18n/kanjipad/kanjipad-1.2.3.ebuild56
3 files changed, 9 insertions, 56 deletions
diff --git a/app-i18n/kanjipad/ChangeLog b/app-i18n/kanjipad/ChangeLog
index 8415dc0b0daa..73c6d53faafc 100644
--- a/app-i18n/kanjipad/ChangeLog
+++ b/app-i18n/kanjipad/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-i18n/kanjipad
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/kanjipad/ChangeLog,v 1.3 2003/02/12 04:22:41 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/kanjipad/ChangeLog,v 1.4 2003/07/21 17:23:58 mholzer Exp $
+
+ 22 Jul 2003; Martin Holzer <mholzer@gentoo.org> kanjipad-1.2.3.ebuild:
+ Fixed DEPEND. Closes #24969.
*kanjipad-1.2.3 (10 Jul 2002)
diff --git a/app-i18n/kanjipad/Manifest b/app-i18n/kanjipad/Manifest
index 836adb3f04a1..e14b690ce81e 100644
--- a/app-i18n/kanjipad/Manifest
+++ b/app-i18n/kanjipad/Manifest
@@ -1,4 +1,4 @@
-MD5 d58f783740f8dc8cda4ecde2a140f44a ChangeLog 359
-MD5 fb26927847dc1b8e1dbf019d8813edf9 kanjipad-1.2.3.ebuild 2810
+MD5 69328f872f6e089ea5ebedc0fca5e233 ChangeLog 465
+MD5 d529233fa95b6d6733cc7a258aab09d5 kanjipad-1.2.3.ebuild 795
MD5 e92a48548554c80cf90e18df17ff6a82 metadata.xml 156
MD5 c90d0d4d81c5077c7dfca93ed7aa722a files/digest-kanjipad-1.2.3 65
diff --git a/app-i18n/kanjipad/kanjipad-1.2.3.ebuild b/app-i18n/kanjipad/kanjipad-1.2.3.ebuild
index 7b15138f6d8d..675d94caa0d9 100644
--- a/app-i18n/kanjipad/kanjipad-1.2.3.ebuild
+++ b/app-i18n/kanjipad/kanjipad-1.2.3.ebuild
@@ -1,79 +1,29 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/kanjipad/kanjipad-1.2.3.ebuild,v 1.3 2003/02/13 08:01:59 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/kanjipad/kanjipad-1.2.3.ebuild,v 1.4 2003/07/21 17:23:58 mholzer Exp $
KEYWORDS="x86"
-
DESCRIPTION="Japanese handwriting recognition tool"
-
HOMEPAGE="http://www.gtk.org/~otaylor/kanjipad/"
-
LICENSE="GPL-2"
-DEPEND=">=gtk+-1.2.10-r8 >=glib-1.2.10-r4"
-
+DEPEND=">=x11-libs/gtk+-1.2.10-r8
+ >=dev-libs/glib-1.2.10-r4"
SLOT="0"
-# Point to any required sources; these will be automatically downloaded by
-# Portage.
SRC_URI="ftp://ftp.gtk.org/pub/users/otaylor/kanjipad/${P}.tar.gz"
-# Source directory; the dir where the sources can be found (automatically
-# unpacked) inside ${WORKDIR}. S will get a default setting of ${WORKDIR}/${P}
-# if you omit this line.
-
S=${WORKDIR}/${P}
src_compile() {
- # Most open-source packages use GNU autoconf for configuration.
- # You should use something similar to the following lines to
- # configure your package before compilation. The "|| die" portion
- # at the end will stop the build process if the command fails.
- # You should use this at the end of critical commands in the build
- # process. (Hint: Most commands are critical, that is, the build
- # process should abort if they aren't successful.)
- #./configure \
- # --host=${CHOST} \
- # --prefix=/usr \
- # --infodir=/usr/share/info \
- # --mandir=/usr/share/man || die "./configure failed"
- # Note the use of --infodir and --mandir, above. This is to make
- # this package FHS 2.2-compliant. For more information, see
- # http://www.pathname.com/fhs/
-
- # emake (previously known as pmake) is a script that calls the
- # standard GNU make with parallel building options for speedier
- # builds (especially on SMP systems). Try emake first. It might
- # not work for some packages, in which case you'll have to resort
- # to normal "make".
-
- # Edit Makefile to install in /usr
mv Makefile Makefile.orig
sed -e "s/PREFIX=\/usr\/local/PREFIX=\/usr/" Makefile.orig > Makefile
emake || die
- #make || die
}
src_install () {
- # You must *personally verify* that this trick doesn't install
- # anything outside of DESTDIR; do this by reading and
- # understanding the install part of the Makefiles.
- #make DESTDIR=${D} install || die
- # For Makefiles that don't make proper use of DESTDIR, setting
- # prefix is often an alternative. However if you do this, then
- # you also need to specify mandir and infodir, since they were
- # passed to ./configure as absolute paths (overriding the prefix
- # setting).
- #make \
- # prefix=${D}/usr \
- # mandir=${D}/usr/share/man \
- # infodir=${D}/usr/share/info \
- # install || die
- # Again, verify the Makefiles! We don't want anything falling
- # outside of ${D}.
-
dobin kanjipad kpengine || die
dodir /usr/share/kanjipad || die
insinto /usr/share/kanjipad