summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2013-03-27 10:12:43 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2013-03-27 10:12:43 +0000
commitaaf9602780dfc2a9b96c43407fdbb5b5840efeed (patch)
tree22b6a25c9d50ea36b4a4f63e9caaeca29c249497 /media-sound
parentStable for ppc64, wrt bug #456574 (diff)
downloadgentoo-2-aaf9602780dfc2a9b96c43407fdbb5b5840efeed.tar.gz
gentoo-2-aaf9602780dfc2a9b96c43407fdbb5b5840efeed.tar.bz2
gentoo-2-aaf9602780dfc2a9b96c43407fdbb5b5840efeed.zip
Remove redudant toolchain-funcs from inherit and show postinst msgs only for first install wrt #440448 by "poletti.marco"
(Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/alsa-utils/ChangeLog7
-rw-r--r--media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild25
2 files changed, 19 insertions, 13 deletions
diff --git a/media-sound/alsa-utils/ChangeLog b/media-sound/alsa-utils/ChangeLog
index 8d9cf72fe64b..4f9a64f9131c 100644
--- a/media-sound/alsa-utils/ChangeLog
+++ b/media-sound/alsa-utils/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/alsa-utils
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.331 2013/03/13 10:56:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.332 2013/03/27 10:12:43 ssuominen Exp $
+
+ 27 Mar 2013; Samuli Suominen <ssuominen@gentoo.org>
+ alsa-utils-1.0.26-r2.ebuild:
+ Remove redudant toolchain-funcs from inherit and show postinst msgs only for
+ first install wrt #440448 by "poletti.marco"
13 Mar 2013; Agostino Sarubbo <ago@gentoo.org> alsa-utils-1.0.25-r1.ebuild:
Stable for ppc, wrt bug #406101
diff --git a/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild b/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild
index aed5afbd77ed..d921b6c02ff5 100644
--- a/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild
+++ b/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild,v 1.1 2013/02/08 19:37:27 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild,v 1.2 2013/03/27 10:12:43 ssuominen Exp $
EAPI=5
-inherit eutils systemd udev toolchain-funcs
+inherit eutils systemd udev
DESCRIPTION="Advanced Linux Sound Architecture Utils (alsactl, alsamixer, etc.)"
HOMEPAGE="http://www.alsa-project.org/"
@@ -66,14 +66,15 @@ src_install() {
}
pkg_postinst() {
- echo
- elog "To take advantage of the init script, and automate the process of"
- elog "saving and restoring sound-card mixer levels you should"
- elog "add alsasound to the boot runlevel. You can do this as"
- elog "root like so:"
- elog " # rc-update add alsasound boot"
- echo
- ewarn "The ALSA core should be built into the kernel or loaded through other"
- ewarn "means. There is no longer any modular auto(un)loading in alsa-utils."
- echo
+ if [[ -z ${REPLACING_VERSIONS} ]]; then
+ elog
+ elog "To take advantage of the init script, and automate the process of"
+ elog "saving and restoring sound-card mixer levels you should"
+ elog "add alsasound to the boot runlevel. You can do this as"
+ elog "root like so:"
+ elog "# rc-update add alsasound boot"
+ ewarn
+ ewarn "The ALSA core should be built into the kernel or loaded through other"
+ ewarn "means. There is no longer any modular auto(un)loading in alsa-utils."
+ fi
}