summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-02-06 03:14:33 +0000
committerMike Frysinger <vapier@gentoo.org>2012-02-06 03:14:33 +0000
commit9588bc82a78ae6e39d12d0bf3e173fec49d9eafd (patch)
treed30ec189f0c50acacd61a87ce654840fe8ac016c
parentDon't run env-update in pkg_* funcs -- the PM does that. (diff)
downloadgentoo-2-9588bc82a78ae6e39d12d0bf3e173fec49d9eafd.tar.gz
gentoo-2-9588bc82a78ae6e39d12d0bf3e173fec49d9eafd.tar.bz2
gentoo-2-9588bc82a78ae6e39d12d0bf3e173fec49d9eafd.zip
Don't run env-update in pkg_* funcs -- the PM does that.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
-rw-r--r--app-arch/stuffit/ChangeLog7
-rw-r--r--app-arch/stuffit/stuffit-5.2.0.611.ebuild16
2 files changed, 11 insertions, 12 deletions
diff --git a/app-arch/stuffit/ChangeLog b/app-arch/stuffit/ChangeLog
index ae1368fa3e2e..69c9e7ed3fb5 100644
--- a/app-arch/stuffit/ChangeLog
+++ b/app-arch/stuffit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/stuffit
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/stuffit/ChangeLog,v 1.19 2009/10/12 16:47:21 halcy0n Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/stuffit/ChangeLog,v 1.20 2012/02/06 03:14:33 vapier Exp $
+
+ 06 Feb 2012; Mike Frysinger <vapier@gentoo.org> stuffit-5.2.0.611.ebuild:
+ Don't run env-update in pkg_* funcs -- the PM does that.
12 Oct 2009; Mark Loeser <halcy0n@gentoo.org> stuffit-5.2.0.611.ebuild:
QA fixes; unquoted variables
diff --git a/app-arch/stuffit/stuffit-5.2.0.611.ebuild b/app-arch/stuffit/stuffit-5.2.0.611.ebuild
index bcceb7bf6ae0..50b12046553a 100644
--- a/app-arch/stuffit/stuffit-5.2.0.611.ebuild
+++ b/app-arch/stuffit/stuffit-5.2.0.611.ebuild
@@ -1,22 +1,24 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/stuffit/stuffit-5.2.0.611.ebuild,v 1.20 2009/10/12 16:47:21 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/stuffit/stuffit-5.2.0.611.ebuild,v 1.21 2012/02/06 03:14:33 vapier Exp $
MY_P="stuffit520.611linux-i386"
DESCRIPTION="Aladdin Software's StuffIt and StuffIt Expander"
HOMEPAGE="http://www.stuffit.com/"
SRC_URI="http://my.smithmicro.com/downloads/files/stuffit520.611linux-i386.tar.gz"
+
LICENSE="Stuffit"
SLOT="0"
KEYWORDS="-* x86 amd64"
-
IUSE=""
+RESTRICT="fetch strip"
+
DEPEND=""
RDEPEND="amd64? ( app-emulation/emul-linux-x86-baselibs )"
S="${WORKDIR}"
+
INSTALLDIR="/opt/stuffit"
-RESTRICT="fetch strip"
pkg_nofetch() {
einfo "Please download stuffit from"
@@ -58,7 +60,6 @@ src_install() {
}
pkg_postinst() {
- env-update
elog
elog "Reminder: StuffIt requires registration within 30 days."
elog "The registration program is located in ${INSTALLDIR}/extra"
@@ -66,8 +67,3 @@ pkg_postinst() {
elog "The binaries are named 'stuff' and 'unstuff'"
elog
}
-
-pkg_postrm() {
- # Get rid of those extraneous PATH entries.
- env-update
-}