summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2003-04-23 12:44:32 +0000
committerDan Armak <danarmak@gentoo.org>2003-04-23 12:44:32 +0000
commitf8cb63cf4d42adae40c97ea94e03cefcb6243668 (patch)
tree6878a9c57ea272be0f36ae6c3f9bed92954b5aa0 /net-misc
parentupgrade warning message to eerror. fix pkg_postinst which was incorrectly cal... (diff)
downloadgentoo-2-f8cb63cf4d42adae40c97ea94e03cefcb6243668.tar.gz
gentoo-2-f8cb63cf4d42adae40c97ea94e03cefcb6243668.tar.bz2
gentoo-2-f8cb63cf4d42adae40c97ea94e03cefcb6243668.zip
upgrade warning message to eerror. fix pkg_postinst which was incorrectly called src_postinst.
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/kio_fish/ChangeLog10
-rw-r--r--net-misc/kio_fish/Manifest4
-rw-r--r--net-misc/kio_fish/kio_fish-1.1.2.ebuild16
3 files changed, 16 insertions, 14 deletions
diff --git a/net-misc/kio_fish/ChangeLog b/net-misc/kio_fish/ChangeLog
index f106d4d13c1c..a1b5a2357fd0 100644
--- a/net-misc/kio_fish/ChangeLog
+++ b/net-misc/kio_fish/ChangeLog
@@ -1,17 +1,21 @@
# ChangeLog for net-misc/kio_fish
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/kio_fish/ChangeLog,v 1.7 2003/02/12 08:25:27 vapier Exp $
-
- 31 Jan 2003; Dan Armak <danarmak@gentoo.org> ChangeLog :
+# $Header: /var/cvsroot/gentoo-x86/net-misc/kio_fish/ChangeLog,v 1.8 2003/04/23 12:44:12 danarmak Exp $
Added warning message: this app is part of KDE 3.1 (kdebase). You really
should upgrade to kde 3.1 and use it from there. This old standalone
version is not being updated or fixed anymore.
+ 31 Jan 2003; Dan Armak <danarmak@gentoo.org> ChangeLog :
+
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
*kio_fish-1.1.2 (7 Jun 2002)
+ 23 Apr 2003; Dan Armak <danarmak@gentoo.org> kio_fish-1.1.2.ebuild:
+ Fixed pkg_postinst funtion (was mistakenly called src_postinst, which did
+ nothing). Upgraded warning message.
+
07 Jul 2002; phoen][x <phoenix@gentoo.org> kio_fish-1.1.2.ebuild:
Added KEYWORDS.
diff --git a/net-misc/kio_fish/Manifest b/net-misc/kio_fish/Manifest
index 75915e92c212..f6099d3e7d4d 100644
--- a/net-misc/kio_fish/Manifest
+++ b/net-misc/kio_fish/Manifest
@@ -1,3 +1,3 @@
-MD5 e2ab301b7b6db7cb0ef368c5fcb729be kio_fish-1.1.2.ebuild 1023
-MD5 e1d993dfc049088559da41488b419b19 ChangeLog 860
+MD5 2885060d3d1c2be4820d52e5e9dc872e kio_fish-1.1.2.ebuild 1003
+MD5 04549dc5ddb5ab55fe70760d327ac20d ChangeLog 1047
MD5 90b214675f170e3ff92b7631f2623096 files/digest-kio_fish-1.1.2 67
diff --git a/net-misc/kio_fish/kio_fish-1.1.2.ebuild b/net-misc/kio_fish/kio_fish-1.1.2.ebuild
index 0d72e02ce251..875d6c6fcb07 100644
--- a/net-misc/kio_fish/kio_fish-1.1.2.ebuild
+++ b/net-misc/kio_fish/kio_fish-1.1.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/kio_fish/kio_fish-1.1.2.ebuild,v 1.10 2003/02/13 14:55:14 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/kio_fish/kio_fish-1.1.2.ebuild,v 1.11 2003/04/23 12:44:12 danarmak Exp $
inherit kde-base
@@ -16,17 +16,15 @@ KEYWORDS="x86 ppc sparc "
warning_msg() {
-ewarn "WARNING: this app is now part of kdebase-3.1. It is very much recommended that you"
-ewarn "upgrade to kde 3.1 instead of using this standalone app, because it is no longer being"
-ewarn "updated or fixed. In addition, it won't even compile on a kde 3.1 system."
+eerror "WARNING: this app is now part of kdebase-3.1. It is very much recommended that you"
+eerror "upgrade to kde 3.1 instead of using this standalone app, because it is no longer being"
+eerror "updated or fixed. In addition, it won't even compile on a kde 3.1 system."
+sleep 5
}
-src_unpack() {
-
+pkg_setup() {
warning_msg
- kde_src_unpack
-
}
src_install() {
@@ -34,6 +32,6 @@ src_install() {
make DESTDIR=${D} install || die
}
-src_postinst() {
+pkg_postinst() {
warning_msg
}