diff options
author | 2004-10-14 16:13:56 +0000 | |
---|---|---|
committer | 2004-10-14 16:13:56 +0000 | |
commit | 1d9885bad2952140aa2c2377e4142de845155965 (patch) | |
tree | 4e99fc7b1ce65308033e0f20e4fde4e4e36e8777 /app-sci | |
parent | closing bug #67549 (diff) | |
download | historical-1d9885bad2952140aa2c2377e4142de845155965.tar.gz historical-1d9885bad2952140aa2c2377e4142de845155965.tar.bz2 historical-1d9885bad2952140aa2c2377e4142de845155965.zip |
Add pkg_postrm
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/maxima/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/maxima/Manifest | 4 | ||||
-rw-r--r-- | app-sci/maxima/maxima-5.9.1-r1.ebuild | 10 |
3 files changed, 15 insertions, 4 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/Manifest b/app-sci/maxima/Manifest index 5f073d3b9a09..e6ebdcf667c2 100644 --- a/app-sci/maxima/Manifest +++ b/app-sci/maxima/Manifest @@ -1,8 +1,8 @@ MD5 870604232354646e69c57d16da1a6af8 maxima-5.9.0-r3.ebuild 2477 MD5 780474ef22cbaff6cd18228747a7fd83 maxima-5.9.0-r2.ebuild 2357 -MD5 eaf258157b0eaedc28e8cda2c4db383f maxima-5.9.1-r1.ebuild 2432 +MD5 450124e4e8ae5a35df660a58d7b0ffd5 maxima-5.9.1-r1.ebuild 2532 MD5 c460b4acb43710708be8561f6aecac41 maxima-5.9.1.ebuild 2490 -MD5 da977d8cdcc76204626b18c3e6ed72ca ChangeLog 2614 +MD5 0e9910aaf20f51b2536b850d5ee2f230 ChangeLog 2734 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 MD5 b91d1554583fba944bc04476c4af394e maxima-5.9.0.ebuild 778 MD5 aaa91ea4812a84a1054b82e69d3fe05b files/digest-maxima-5.9.0-r2 65 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 +} |