diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-03-18 11:14:38 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-03-18 11:14:38 +0000 |
commit | 7048235e04d19d7b953afd4a8194f63109e0c9e6 (patch) | |
tree | dc033c66cf96295fa8198ea962e329126baefc9c /dev-lang/c-intercal | |
parent | Nautilus-cd-burner is deprecated and replaced by brasero. Update deps for nau... (diff) | |
download | gentoo-2-7048235e04d19d7b953afd4a8194f63109e0c9e6.tar.gz gentoo-2-7048235e04d19d7b953afd4a8194f63109e0c9e6.tar.bz2 gentoo-2-7048235e04d19d7b953afd4a8194f63109e0c9e6.zip |
Add pkg_postinst and pkg_postrm functions.
(Portage version: 2.2_rc25/cvs/Linux i686)
Diffstat (limited to 'dev-lang/c-intercal')
-rw-r--r-- | dev-lang/c-intercal/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/c-intercal/c-intercal-28.0-r1.ebuild | 12 |
2 files changed, 15 insertions, 4 deletions
diff --git a/dev-lang/c-intercal/ChangeLog b/dev-lang/c-intercal/ChangeLog index fd639b276cfb..4e768aee80ad 100644 --- a/dev-lang/c-intercal/ChangeLog +++ b/dev-lang/c-intercal/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/c-intercal -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/c-intercal/ChangeLog,v 1.2 2008/12/15 20:57:17 ulm Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/c-intercal/ChangeLog,v 1.3 2009/03/18 11:14:38 ulm Exp $ + + 18 Mar 2009; Ulrich Mueller <ulm@gentoo.org> c-intercal-28.0-r1.ebuild: + Add pkg_postinst and pkg_postrm functions. *c-intercal-28.0-r1 (15 Dec 2008) diff --git a/dev-lang/c-intercal/c-intercal-28.0-r1.ebuild b/dev-lang/c-intercal/c-intercal-28.0-r1.ebuild index 9d356a3e80f7..5176f960dbe5 100644 --- a/dev-lang/c-intercal/c-intercal-28.0-r1.ebuild +++ b/dev-lang/c-intercal/c-intercal-28.0-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/c-intercal/c-intercal-28.0-r1.ebuild,v 1.1 2008/12/15 20:57:17 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/c-intercal/c-intercal-28.0-r1.ebuild,v 1.2 2009/03/18 11:14:38 ulm Exp $ inherit elisp-common eutils multilib versionator @@ -59,3 +59,11 @@ src_install() { doins -r pit || die "doins -r pit failed" fi } + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |