diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-05-12 08:25:44 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-05-12 08:25:44 +0000 |
commit | 5fbeceb68b7b150f35898010eb453490e57bc14a (patch) | |
tree | 2af4b33fc3945f3ea0ab2509ae6d462a52c49d93 /dev-lang/ocaml | |
parent | Stable on mips. (diff) | |
download | gentoo-2-5fbeceb68b7b150f35898010eb453490e57bc14a.tar.gz gentoo-2-5fbeceb68b7b150f35898010eb453490e57bc14a.tar.bz2 gentoo-2-5fbeceb68b7b150f35898010eb453490e57bc14a.zip |
Install ocaml-rebuild.sh in /usr/sbin rather than keeping it in PORTDIR, fix bug #175668
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-lang/ocaml')
-rw-r--r-- | dev-lang/ocaml/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/ocaml/ocaml-3.09.3-r1.ebuild | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/dev-lang/ocaml/ChangeLog b/dev-lang/ocaml/ChangeLog index 889cdb78810b..f3e98000fda2 100644 --- a/dev-lang/ocaml/ChangeLog +++ b/dev-lang/ocaml/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/ocaml # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.101 2007/05/11 19:42:00 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.102 2007/05/12 08:25:44 aballier Exp $ + + 12 May 2007; Alexis Ballier <aballier@gentoo.org> ocaml-3.09.3-r1.ebuild: + Install ocaml-rebuild.sh in /usr/sbin rather than keeping it in PORTDIR, fix + bug #175668 11 May 2007; Alexis Ballier <aballier@gentoo.org> ocaml-3.09.3.ebuild, ocaml-3.09.3-r1.ebuild: diff --git a/dev-lang/ocaml/ocaml-3.09.3-r1.ebuild b/dev-lang/ocaml/ocaml-3.09.3-r1.ebuild index 236a6fa8eef4..c0793ee4335c 100644 --- a/dev-lang/ocaml/ocaml-3.09.3-r1.ebuild +++ b/dev-lang/ocaml/ocaml-3.09.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.09.3-r1.ebuild,v 1.4 2007/05/11 19:42:00 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.09.3-r1.ebuild,v 1.5 2007/05/12 08:25:44 aballier Exp $ inherit flag-o-matic eutils multilib pax-utils versionator toolchain-funcs @@ -113,6 +113,9 @@ src_install() { echo "TEXINPUTS=/usr/$(get_libdir)/ocaml/ocamldoc:" > "${T}"/99ocamldoc doenvd "${T}"/99ocamldoc fi + + # Install ocaml-rebuild.sh script rather than keeping it in $PORTDIR + dosbin "${FILESDIR}/ocaml-rebuild.sh" } pkg_postinst() { @@ -126,7 +129,7 @@ pkg_postinst() { elog "OCaml is not binary compatible from version to version, so you (may)" elog "need to rebuild all packages depending on it, that are actually" elog "installed on your system. To do so, you can run:" - elog "sh ${FILESDIR}/ocaml-rebuild.sh [-h | emerge options]" + elog "/usr/sbin/ocaml-rebuild.sh [-h | emerge options]" elog "Which will call emerge on all old packages with the given options" echo } |