diff options
author | Jory Pratt <anarchy@gentoo.org> | 2009-09-16 13:10:06 +0000 |
---|---|---|
committer | Jory Pratt <anarchy@gentoo.org> | 2009-09-16 13:10:06 +0000 |
commit | 04f1c0156fbdb3ba67fc61d9cd66fe268d4911f8 (patch) | |
tree | af923227c996c0950206f0a8ceec912b6a881c1d | |
parent | Fix building with Linux 2.6.31 wrt #280057. (diff) | |
download | gentoo-2-04f1c0156fbdb3ba67fc61d9cd66fe268d4911f8.tar.gz gentoo-2-04f1c0156fbdb3ba67fc61d9cd66fe268d4911f8.tar.bz2 gentoo-2-04f1c0156fbdb3ba67fc61d9cd66fe268d4911f8.zip |
make pkg_postinst() clearer for revdep-rebuild usage with libnss3.so.12
(Portage version: 2.1.6.13/cvs/Linux x86_64)
-rw-r--r-- | dev-libs/nss/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/nss/nss-3.12.4.ebuild | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/dev-libs/nss/ChangeLog b/dev-libs/nss/ChangeLog index e66d1f726fcd..db73dcf53052 100644 --- a/dev-libs/nss/ChangeLog +++ b/dev-libs/nss/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/nss # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.154 2009/09/15 17:38:42 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.155 2009/09/16 13:10:06 anarchy Exp $ + + 16 Sep 2009; Jory A. Pratt <anarchy@gentoo.org> nss-3.12.4.ebuild: + Make pkg_postinst() clearer on revdep-rebuild usage. 15 Sep 2009; Jory A. Pratt <anarchy@gentoo.org> nss-3.12.4.ebuild: Add warning about binary breakage with soname change diff --git a/dev-libs/nss/nss-3.12.4.ebuild b/dev-libs/nss/nss-3.12.4.ebuild index fa461ee4a872..1d24fdebb348 100644 --- a/dev-libs/nss/nss-3.12.4.ebuild +++ b/dev-libs/nss/nss-3.12.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.12.4.ebuild,v 1.4 2009/09/15 20:14:56 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.12.4.ebuild,v 1.5 2009/09/16 13:10:06 anarchy Exp $ inherit eutils flag-o-matic multilib toolchain-funcs @@ -111,8 +111,10 @@ src_install () { } pkg_postinst() { - ewarn "We have reverted back to using upstreams soname." - ewarn "If you find a binary that does not run please re-emerge" - ewarn "package to ensure it properly links." + elog "We have reverted back to using upstreams soname." + elog "Please run revdep-rebuild --library libnss3.so.12 , this" + elog "will correct most issues. If you find a binary that does" + elog "not run please re-emerge package to ensure it properly" + elog " links after upgrade." elog } |