diff options
author | Stefan Jones <cretin@gentoo.org> | 2004-10-14 16:13:56 +0000 |
---|---|---|
committer | Stefan Jones <cretin@gentoo.org> | 2004-10-14 16:13:56 +0000 |
commit | a058f9027e7096daf60f1e3f4dcb1a530f72c763 (patch) | |
tree | 63e3e9061a5235e8c7988f7051bc92fc2a1f072e /app-sci | |
parent | closing bug #67549 (Manifest recommit) (diff) | |
download | gentoo-2-a058f9027e7096daf60f1e3f4dcb1a530f72c763.tar.gz gentoo-2-a058f9027e7096daf60f1e3f4dcb1a530f72c763.tar.bz2 gentoo-2-a058f9027e7096daf60f1e3f4dcb1a530f72c763.zip |
Add pkg_postrm
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/maxima/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/maxima/maxima-5.9.1-r1.ebuild | 10 |
2 files changed, 13 insertions, 2 deletions
diff --git a/app-sci/maxima/ChangeLog b/app-sci/maxima/ChangeLog index 1897668cf675..09aaa0bbc743 100644 --- a/app-sci/maxima/ChangeLog +++ b/app-sci/maxima/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-sci/maxima # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/ChangeLog,v 1.16 2004/10/08 03:20:24 cretin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/ChangeLog,v 1.17 2004/10/14 16:13:56 cretin Exp $ + + 14 Oct 2004; Stefan Jones <cretin@gentoo.org> maxima-5.9.1-r1.ebuild: + Add missing pkg_postrm function on uninstall *maxima-5.9.1-r1 (07 Oct 2004) diff --git a/app-sci/maxima/maxima-5.9.1-r1.ebuild b/app-sci/maxima/maxima-5.9.1-r1.ebuild index b8d4d156787c..d6d8e66f2af4 100644 --- a/app-sci/maxima/maxima-5.9.1-r1.ebuild +++ b/app-sci/maxima/maxima-5.9.1-r1.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-sci/maxima/maxima-5.9.1-r1.ebuild,v 1.1 2004/10/08 03:20:24 cretin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/maxima-5.9.1-r1.ebuild,v 1.2 2004/10/14 16:13:56 cretin Exp $ inherit eutils elisp-common @@ -90,3 +90,11 @@ pkg_postinst() { mktexlsr fi } + +pkg_postrm() { + if use emacs + then + einfo "Running elisp-site-regen...." + elisp-site-regen + fi +} |