summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-09-03 17:11:05 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-09-03 17:11:05 +0000
commit79ad1e0473f6493c24c1fda542387715e7d51d88 (patch)
treeffda7590d7c46d388e504dedd4457de9c20daf5c /media-sound/lash
parentInstall the pregenerated lash-manual.html (diff)
downloadgentoo-2-79ad1e0473f6493c24c1fda542387715e7d51d88.tar.gz
gentoo-2-79ad1e0473f6493c24c1fda542387715e7d51d88.tar.bz2
gentoo-2-79ad1e0473f6493c24c1fda542387715e7d51d88.zip
Various fixes, see ChangeLog
(Portage version: 2.2.0_alpha124/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/lash')
-rw-r--r--media-sound/lash/ChangeLog14
-rw-r--r--media-sound/lash/lash-0.5.4-r1.ebuild10
2 files changed, 16 insertions, 8 deletions
diff --git a/media-sound/lash/ChangeLog b/media-sound/lash/ChangeLog
index 376f7357f885..48dae38f846d 100644
--- a/media-sound/lash/ChangeLog
+++ b/media-sound/lash/ChangeLog
@@ -1,14 +1,14 @@
# ChangeLog for media-sound/lash
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.37 2012/09/03 17:05:05 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.38 2012/09/03 17:11:05 ssuominen Exp $
03 Sep 2012; Samuli Suominen <ssuominen@gentoo.org> lash-0.5.4-r1.ebuild:
- Install the pregenerated lash-manual.html
-
- 03 Sep 2012; Samuli Suominen <ssuominen@gentoo.org> lash-0.5.4-r1.ebuild:
- Fix building with latest texi2html wrt #422045. Use prune_libtool_files with
- --all argument because we always want _lash.la from python directory removed.
- Pull in correct Python 2.x version with python.eclass and PYTHON_DEPEND.
+ Fix building with latest texi2html wrt #422045 but use the pregenerated
+ lash-manual.html instead. Thanks to Diego Elio Pettenò for reporting.
+ Use prune_libtool_files with --all argument because we always want _lash.la
+ from python directory removed.
+ Fix python.eclass usage wrt #313955 by Arfrever Frehtes Taifersar Arahesis
+ and Ian Delaney.
05 May 2012; Michał Górny <mgorny@gentoo.org> lash-0.5.4-r1.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
diff --git a/media-sound/lash/lash-0.5.4-r1.ebuild b/media-sound/lash/lash-0.5.4-r1.ebuild
index 74dd3783cfd3..e28d9f183645 100644
--- a/media-sound/lash/lash-0.5.4-r1.ebuild
+++ b/media-sound/lash/lash-0.5.4-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r1.ebuild,v 1.16 2012/09/03 17:05:05 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r1.ebuild,v 1.17 2012/09/03 17:11:05 ssuominen Exp $
EAPI=4
@@ -68,3 +68,11 @@ src_install() {
dohtml docs/lash-manual-html-*/lash-manual.html
prune_libtool_files --all # --all for _lash.la in python directory
}
+
+pkg_postinst() {
+ use python && python_mod_optimize lash.py
+}
+
+pkg_postrm() {
+ use python && python_mod_cleanup lash.py
+}