diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-04-26 20:01:17 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-04-26 20:01:17 +0000 |
commit | 5b128fe6092922f17171e084cf74280c12690a9b (patch) | |
tree | 024f975019803c3e3077cd74431e7861413305f1 /sci-electronics | |
parent | ia64 stable wrt bug #517718 (diff) | |
download | gentoo-2-5b128fe6092922f17171e084cf74280c12690a9b.tar.gz gentoo-2-5b128fe6092922f17171e084cf74280c12690a9b.tar.bz2 gentoo-2-5b128fe6092922f17171e084cf74280c12690a9b.zip |
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sci-electronics')
-rw-r--r-- | sci-electronics/ghdl/ChangeLog | 8 | ||||
-rw-r--r-- | sci-electronics/ghdl/ghdl-0.27.ebuild | 75 |
2 files changed, 5 insertions, 78 deletions
diff --git a/sci-electronics/ghdl/ChangeLog b/sci-electronics/ghdl/ChangeLog index adee51e24848..fb7c139a9bc4 100644 --- a/sci-electronics/ghdl/ChangeLog +++ b/sci-electronics/ghdl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-electronics/ghdl -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ghdl/ChangeLog,v 1.15 2013/08/04 09:10:43 tomjbe Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ghdl/ChangeLog,v 1.16 2015/04/26 20:01:17 mrueg Exp $ + + 26 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -ghdl-0.27.ebuild: + Remove old. 04 Aug 2013; Thomas Beierlein <tomjbe@gentoo.org> ghdl-0.29.ebuild, +files/ghdl-0.29-gcc.patch: @@ -58,4 +61,3 @@ 29 Jun 2007; Denis Dupeyron <calchan@gentoo.org> +ghdl-0.26.ebuild: Initial commit, see bug #83877. Thanks to everybody for contributing to this bug and to Zac Medico for adapting Portage to ghdl. - diff --git a/sci-electronics/ghdl/ghdl-0.27.ebuild b/sci-electronics/ghdl/ghdl-0.27.ebuild deleted file mode 100644 index 72428107a437..000000000000 --- a/sci-electronics/ghdl/ghdl-0.27.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ghdl/ghdl-0.27.ebuild,v 1.5 2010/07/24 15:39:14 tomjbe Exp $ - -EAPI="2" - -inherit multilib - -GCC_VERSION="4.2.4" -GNATGCC_SLOT="4.2" - -DESCRIPTION="Complete VHDL simulator using the GCC technology" -HOMEPAGE="http://ghdl.free.fr" -SRC_URI="http://ghdl.free.fr/${P}.tar.bz2 - mirror://gnu/gcc/gcc-${GCC_VERSION}/gcc-core-${GCC_VERSION}.tar.bz2" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" -DEPEND=">=sys-apps/portage-2.1.2.10 - dev-lang/gnat-gcc:${GNATGCC_SLOT}" -RDEPEND="" -S="${WORKDIR}/gcc-${GCC_VERSION}" - -ADA_INCLUDE_PATH="${ROOT}/usr/lib/gnat-gcc/${CHOST}/${GNATGCC_SLOT}/adainclude" -ADA_OBJECTS_PATH="${ROOT}/usr/lib/gnat-gcc/${CHOST}/${GNATGCC_SLOT}/adalib" -GNATGCC_PATH="${ROOT}/usr/${CHOST}/gnat-gcc-bin/${GNATGCC_SLOT}:${ROOT}/usr/libexec/gnat-gcc/${CHOST}/${GNATGCC_SLOT}" - -src_prepare() { - mv "${WORKDIR}/${P}"/vhdl gcc - sed -i -e 's/ADAC = \$(CC)/ADAC = gnatgcc/' gcc/vhdl/Makefile.in || die "sed failed" - sed -i \ - -e 's/AGCC_CFLAGS=-g/AGCC_CFLAGS=$(CFLAGS)/' \ - -e 's/rm -rf $(infodir)/rm -rf $(DESTDIR)$(infodir)/' \ - gcc/vhdl/Make-lang.in || die "sed failed" - - # Fix issue similar to bug #195074, ported from vapier's fix for binutils - sed -i -e "s:egrep.*texinfo.*dev/null:egrep 'texinfo[^0-9]*(4\.([4-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null:" \ - configure* || die "sed failed" - - # For multilib profile arch, see bug #203721 - if (has_multilib_profile || use multilib ) ; then - for T_LINUX64 in `find "${S}/gcc/config" -name t-linux64` ; - do - einfo "sed for ${T_LINUX64} for multilib. :)" - sed -i \ - -e "s:\(MULTILIB_OSDIRNAMES = \).*:\1../lib64 ../lib32:" \ - "${T_LINUX64}" \ - || die "sed for ${T_LINUX64} failed. :(" - done - fi -} - -src_configure() { - PATH="${GNATGCC_PATH}:${PATH}" econf --enable-languages=vhdl -} - -src_compile() { - PATH="${GNATGCC_PATH}:${PATH}" emake -j1 || die "Compilation failed" -} - -src_install() { - # bug #277644 - PATH="${GNATGCC_PATH}:${PATH}" emake -j1 DESTDIR="${D}" install || die "Installation failed" - - cd "${D}"/usr/bin ; rm `ls --ignore=ghdl` - rm -rf "${D}"/usr/include - rm "${D}"/usr/$(get_libdir)/lib* - cd "${D}"/usr/$(get_libdir)/gcc/${CHOST}/${GCC_VERSION} ; rm -rf `ls --ignore=vhdl*` - cd "${D}"/usr/libexec/gcc/${CHOST}/${GCC_VERSION} ; rm -rf `ls --ignore=ghdl*` - cd "${D}"/usr/share/info ; rm `ls --ignore=ghdl*` - cd "${D}"/usr/share/man/man1 ; rm `ls --ignore=ghdl*` - rm -Rf "${D}"/usr/share/locale - rm -Rf "${D}"/usr/share/man/man7 -} |