diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2011-12-02 23:54:26 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2011-12-02 23:54:26 +0000 |
commit | a57ceffbaf9915199796f357d4834d464f578cf6 (patch) | |
tree | 5c87c6bad440a25ece1904aef7399f44d4a7c570 /sys-devel/dragonegg | |
parent | Simplify gtk+ dep and add pango dep. (diff) | |
download | gentoo-2-a57ceffbaf9915199796f357d4834d464f578cf6.tar.gz gentoo-2-a57ceffbaf9915199796f357d4834d464f578cf6.tar.bz2 gentoo-2-a57ceffbaf9915199796f357d4834d464f578cf6.zip |
Add live ebuild for dragonegg
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel/dragonegg')
-rw-r--r-- | sys-devel/dragonegg/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/dragonegg/dragonegg-9999.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/sys-devel/dragonegg/ChangeLog b/sys-devel/dragonegg/ChangeLog index 0abbb298c3b6..0509f398b867 100644 --- a/sys-devel/dragonegg/ChangeLog +++ b/sys-devel/dragonegg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/dragonegg # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/dragonegg/ChangeLog,v 1.4 2011/12/02 13:21:27 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/dragonegg/ChangeLog,v 1.5 2011/12/02 23:54:26 voyageur Exp $ + +*dragonegg-9999 (02 Dec 2011) + + 02 Dec 2011; Bernard Cafarelli <voyageur@gentoo.org> +dragonegg-9999.ebuild: + Add live ebuild for dragonegg *dragonegg-3.0 (02 Dec 2011) diff --git a/sys-devel/dragonegg/dragonegg-9999.ebuild b/sys-devel/dragonegg/dragonegg-9999.ebuild new file mode 100644 index 000000000000..4992029e3623 --- /dev/null +++ b/sys-devel/dragonegg/dragonegg-9999.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/dragonegg/dragonegg-9999.ebuild,v 1.1 2011/12/02 23:54:26 voyageur Exp $ + +EAPI=4 +inherit subversion multilib + +DESCRIPTION="GCC plugin that uses LLVM for optimization and code generation" +HOMEPAGE="http://dragonegg.llvm.org/" +SRC_URI="" +ESVN_REPO_URI="http://llvm.org/svn/llvm-project/dragonegg/trunk" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND="|| ( sys-devel/gcc:4.5[lto] + >=sys-devel/gcc-4.6 ) + ~sys-devel/llvm-${PV}" +RDEPEND="${DEPEND}" + +src_prepare() { + # Replace svnversion call + subversion_wc_info + sed -e "s/\(^REVISION:=\).*/\1${ESVN_WC_REVISION}/" \ + -i Makefile || die "Setting revision failed" +} + +src_compile() { + # GCC: compiler to use plugin with + emake CC="$(tc-getCC)" GCC="$(tc-getCC)" CXX="$(tc-getCXX)" VERBOSE=1 +} + +src_install() { + # Install plugin in llvm lib directory + exeinto /usr/$(get_libdir)/llvm + doexe dragonegg.so + + dodoc README +} + +pkg_postinst() { + elog "To use dragonegg, run gcc as usual, with an extra command line argument:" + elog " -fplugin=/usr/$(get_libdir)/llvm/dragonegg.so" + elog "If you change the active gcc profile, or update gcc to a new version," + elog "you will have to remerge this package to update the plugin" +} |