diff options
author | Anant Narayanan <anant@gentoo.org> | 2007-03-09 15:12:46 +0000 |
---|---|---|
committer | Anant Narayanan <anant@gentoo.org> | 2007-03-09 15:12:46 +0000 |
commit | d125b869f03cb4dae5fa411b3e49a91da64d2375 (patch) | |
tree | ac1b9d6b9a6891692ba4d0ee13301a18dad762ae /dev-lang | |
parent | Removed old hack. (diff) | |
download | gentoo-2-d125b869f03cb4dae5fa411b3e49a91da64d2375.tar.gz gentoo-2-d125b869f03cb4dae5fa411b3e49a91da64d2375.tar.bz2 gentoo-2-d125b869f03cb4dae5fa411b3e49a91da64d2375.zip |
Change incorrect dependency on libstdc++ and update post-install message.
(Portage version: 2.1.2.1)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/dmd-bin/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/dmd-bin/dmd-bin-1.0.0.ebuild | 21 |
2 files changed, 19 insertions, 7 deletions
diff --git a/dev-lang/dmd-bin/ChangeLog b/dev-lang/dmd-bin/ChangeLog index b5bf1c210b8e..604350909d97 100644 --- a/dev-lang/dmd-bin/ChangeLog +++ b/dev-lang/dmd-bin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/dmd-bin # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/dmd-bin/ChangeLog,v 1.1 2007/03/09 14:56:18 anant Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/dmd-bin/ChangeLog,v 1.2 2007/03/09 15:12:46 anant Exp $ + + 08 Mar 2007; <anant@gentoo.org> dmd-bin-1.0.0.ebuild: + Change incorrect dependency on libstdc++ and update post-install message. *dmd-bin-1.0.0 (08 Mar 2007) diff --git a/dev-lang/dmd-bin/dmd-bin-1.0.0.ebuild b/dev-lang/dmd-bin/dmd-bin-1.0.0.ebuild index 5bb3afb94e3a..0fc1682d5a3e 100644 --- a/dev-lang/dmd-bin/dmd-bin-1.0.0.ebuild +++ b/dev-lang/dmd-bin/dmd-bin-1.0.0.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/dmd-bin/dmd-bin-1.0.0.ebuild,v 1.1 2007/03/09 14:56:18 anant Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/dmd-bin/dmd-bin-1.0.0.ebuild,v 1.2 2007/03/09 15:12:46 anant Exp $ inherit eutils @@ -23,7 +23,7 @@ S="${WORKDIR}" DEPEND="sys-apps/findutils" RDEPEND="amd64? ( app-emulation/emul-linux-x86-compat ) - x86? ( sys-libs/libstdc++-v3 )" + x86? ( >=virtual/libstdc++-3.3 )" src_unpack() { unpack ${A} @@ -75,10 +75,19 @@ END } pkg_postinst () { - ewarn "The DMD Configuration file has been disabled," - ewarn "and will be re-enabled when: " + ewarn "The DMD Configuration file has been disabled, " + ewarn "and will be re-enabled when: " + ewarn " " ewarn "http://d.puremagic.com/issues/show_bug.cgi?id=278" + ewarn " " ewarn "has been fixed. Meanwhile, please supply all your" - ewarn "configuration options in the /opt/dmd/bin/dmd" - ewarn "shell script." + ewarn "configuration options in the /opt/dmd/bin/dmd " + ewarn "shell script. " + ewarn " " + ewarn "You may need to run: " + ewarn " " + ewarn "env-update && source /etc/profile " + ewarn " " + ewarn "to be able to use the compiler immediately. " + ewarn " " } |