diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-03-28 19:28:58 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-03-28 19:28:58 +0000 |
commit | ac06a7481b83994e7fef5c05f731bf187a366ebb (patch) | |
tree | 2607f1217b11c1df95b816bae1ee8724d424719e | |
parent | Version bump, snapshot of upstream subversion repository. Bug 259933. (diff) | |
download | gentoo-2-ac06a7481b83994e7fef5c05f731bf187a366ebb.tar.gz gentoo-2-ac06a7481b83994e7fef5c05f731bf187a366ebb.tar.bz2 gentoo-2-ac06a7481b83994e7fef5c05f731bf187a366ebb.zip |
Renamed normalize to nnormalize, bug #248324
(Portage version: 2.2_rc27/cvs/Linux x86_64)
-rw-r--r-- | sci-mathematics/num-utils/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/num-utils/num-utils-0.5.ebuild | 13 |
2 files changed, 15 insertions, 5 deletions
diff --git a/sci-mathematics/num-utils/ChangeLog b/sci-mathematics/num-utils/ChangeLog index 774bcf7fe7a6..eeb564c9cff3 100644 --- a/sci-mathematics/num-utils/ChangeLog +++ b/sci-mathematics/num-utils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/num-utils -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/num-utils/ChangeLog,v 1.6 2008/06/17 09:17:49 bicatali Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/num-utils/ChangeLog,v 1.7 2009/03/28 19:28:58 bicatali Exp $ + + 28 Mar 2009; Sébastien Fabbro <bicatali@gentoo.org> num-utils-0.5.ebuild: + Renamed normalize to nnormalize, bug #248324 17 Jun 2008; Sébastien Fabbro <bicatali@gentoo.org> num-utils-0.5.ebuild: Added ~amd64 and cleaned-up ebuild diff --git a/sci-mathematics/num-utils/num-utils-0.5.ebuild b/sci-mathematics/num-utils/num-utils-0.5.ebuild index 20c243fa7c32..2c265bbef279 100644 --- a/sci-mathematics/num-utils/num-utils-0.5.ebuild +++ b/sci-mathematics/num-utils/num-utils-0.5.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/sci-mathematics/num-utils/num-utils-0.5.ebuild,v 1.3 2008/06/17 09:17:49 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/num-utils/num-utils-0.5.ebuild,v 1.4 2009/03/28 19:28:58 bicatali Exp $ IUSE="" @@ -15,15 +15,22 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~ppc" src_compile() { + # bug #248324 + mv normalize nnormalize || die sed -i \ -e 's/^RPMDIR/#RPMDIR/' \ -e 's/COPYING//' \ -e '/^DOCS/s/MANIFEST//' \ + -e 's/normalize/nnormalize/' \ Makefile || die "sed Makefile failed" - emake || die "emake failed" } src_install () { emake ROOT="${D}" install || die "emake install failed" } + +pkg_postinst() { + elog "normalize has been renamed nnormalize" +} + |