From 16bcf8f4a49e02a64cf77f0d94fe44904cbb8a08 Mon Sep 17 00:00:00 2001 From: Sebastien Fabbro Date: Thu, 10 Jul 2008 15:02:02 +0000 Subject: Version bump (Portage version: 2.1.4.4) --- dev-lang/idb/ChangeLog | 8 +++- dev-lang/idb/idb-10.1.012.ebuild | 89 ---------------------------------------- dev-lang/idb/idb-10.1.013.ebuild | 6 +-- dev-lang/idb/idb-10.1.017.ebuild | 89 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 99 insertions(+), 93 deletions(-) delete mode 100644 dev-lang/idb/idb-10.1.012.ebuild create mode 100644 dev-lang/idb/idb-10.1.017.ebuild (limited to 'dev-lang/idb') diff --git a/dev-lang/idb/ChangeLog b/dev-lang/idb/ChangeLog index ee089bde11d4..67462a76c83e 100644 --- a/dev-lang/idb/ChangeLog +++ b/dev-lang/idb/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-lang/idb # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/ChangeLog,v 1.8 2008/02/28 10:43:06 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/ChangeLog,v 1.9 2008/07/10 15:02:02 bicatali Exp $ + +*idb-10.1.017 (10 Jul 2008) + + 10 Jul 2008; Sébastien Fabbro -idb-10.1.012.ebuild, + idb-10.1.013.ebuild, +idb-10.1.017.ebuild: + Version bump *idb-10.1.012 (28 Feb 2008) diff --git a/dev-lang/idb/idb-10.1.012.ebuild b/dev-lang/idb/idb-10.1.012.ebuild deleted file mode 100644 index dd33e939b97c..000000000000 --- a/dev-lang/idb/idb-10.1.012.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/idb-10.1.012.ebuild,v 1.1 2008/02/28 10:43:06 bicatali Exp $ - -inherit rpm elisp-common - -ICC_PID=952 -IFC_PID=955 -xPV=p_${PV} - -DESCRIPTION="Intel C/C++/FORTRAN debugger for Linux" -HOMEPAGE="http://www.intel.com/software/products/compilers/" -COM_URI="http://registrationcenter-download.intel.com/irc_nas" -SRC_URI="amd64? ( ifc? ( !icc? ( ${COM_URI}/${IFC_PID}/l_fc_${xPV}_intel64.tar.gz ) ) - !ifc? ( !icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_intel64.tar.gz ) ) - icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_intel64.tar.gz ) ) - ia64? ( ifc? ( !icc? ( ${COM_URI}/${IFC_PID}/l_fc_${xPV}_ia64.tar.gz ) ) - !ifc? ( !icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_ia64.tar.gz ) ) - icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_ia64.tar.gz ) ) - x86? ( ifc? ( !icc? ( ${COM_URI}/${IFC_PID}/l_fc_${xPV}_ia32.tar.gz ) ) - !ifc? ( !icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_ia32.tar.gz ) ) - icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_ia32.tar.gz ) )" - -KEYWORDS="~amd64 ~x86" - -LICENSE="Intel-SDP" -SLOT="0" - -RESTRICT="strip mirror" -IUSE="emacs icc ifc" - -DEPEND="" -RDEPEND="virtual/libstdc++ - x11-libs/libXft - x11-libs/libXt - dev-libs/libxml2" - -src_unpack() { - unpack ${A} - PACKAGEID=$(basename l_*) - mv "${WORKDIR}"/${PACKAGEID} "${S}" - cd "${S}" - for x in data/*idb*.rpm; do - einfo "Extracting $(basename ${x})..." - rpm_unpack ${x} || die "rpm_unpack ${x} failed" - done -} - -src_install() { - local ext= - use amd64 && ext=e - local instdir=/opt/intel/${PN}${ext}/${PV} - cd "${S}"/${instdir}/doc - sed -e "s|\|${PACKAGEID}|g" \ - -i *support \ - || die "sed support file failed" - chmod 644 *support - - dodir ${instdir} - einfo "Copying files" - cp -pPR \ - "${S}"/${instdir}/* \ - "${D}"/${instdir}/ \ - || die "copying debugger failed" - cat > 06idb <<-EOF - PATH=${instdir}/bin - ROOTPATH=${instdir}/bin - MANPATH=${instdir}/man - EOF - doenvd 06idb || die "installing env file failed" - use emacs && \ - elisp-site-file-install "${S}"${instdir}/bin/*.el -} - -pkg_postinst () { - rm -f "${ROOT}"/opt/intel/{intel_sdp_products.db,.*.log} || die - elog "Make sure you have recieved the a license for ${PN}," - elog "you cannot run ${PN} without a license file." - elog "To receive a non-commercial license, you need to register." - elog "Read the website for more information on this license:" - elog "${HOMEPAGE}" - elog "Then put the license file into ${ROOT}/opt/intel/licenses." - elog "\nTo use ${PN} issue first \n\tsource /etc/profile" - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/dev-lang/idb/idb-10.1.013.ebuild b/dev-lang/idb/idb-10.1.013.ebuild index ffab5d8e1730..87df489bc563 100644 --- a/dev-lang/idb/idb-10.1.013.ebuild +++ b/dev-lang/idb/idb-10.1.013.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/idb-10.1.013.ebuild,v 1.1 2008/03/13 21:30:14 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/idb-10.1.013.ebuild,v 1.2 2008/07/10 15:02:02 bicatali Exp $ inherit rpm elisp-common -ICC_PID=952 -IFC_PID=955 +ICC_PID=964 +IFC_PID=965 xPV=p_${PV} DESCRIPTION="Intel C/C++/FORTRAN debugger for Linux" diff --git a/dev-lang/idb/idb-10.1.017.ebuild b/dev-lang/idb/idb-10.1.017.ebuild new file mode 100644 index 000000000000..1c9ac25de127 --- /dev/null +++ b/dev-lang/idb/idb-10.1.017.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/idb-10.1.017.ebuild,v 1.1 2008/07/10 15:02:02 bicatali Exp $ + +inherit rpm elisp-common + +ICC_PID=1136 +IFC_PID=1137 +xPV=p_${PV} + +DESCRIPTION="Intel C/C++/FORTRAN debugger for Linux" +HOMEPAGE="http://www.intel.com/software/products/compilers/" +COM_URI="http://registrationcenter-download.intel.com/irc_nas" +SRC_URI="amd64? ( ifc? ( !icc? ( ${COM_URI}/${IFC_PID}/l_fc_${xPV}_intel64.tar.gz ) ) + !ifc? ( !icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_intel64.tar.gz ) ) + icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_intel64.tar.gz ) ) + ia64? ( ifc? ( !icc? ( ${COM_URI}/${IFC_PID}/l_fc_${xPV}_ia64.tar.gz ) ) + !ifc? ( !icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_ia64.tar.gz ) ) + icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_ia64.tar.gz ) ) + x86? ( ifc? ( !icc? ( ${COM_URI}/${IFC_PID}/l_fc_${xPV}_ia32.tar.gz ) ) + !ifc? ( !icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_ia32.tar.gz ) ) + icc? ( ${COM_URI}/${ICC_PID}/l_cc_${xPV}_ia32.tar.gz ) )" + +KEYWORDS="~amd64 ~x86" + +LICENSE="Intel-SDP" +SLOT="10.1" + +RESTRICT="strip mirror" +IUSE="emacs icc ifc" + +DEPEND="" +RDEPEND="virtual/libstdc++ + x11-libs/libXft + x11-libs/libXt + dev-libs/libxml2" + +src_unpack() { + unpack ${A} + PACKAGEID=$(basename l_*) + mv "${WORKDIR}"/${PACKAGEID} "${S}" + cd "${S}" + for x in data/*idb*.rpm; do + einfo "Extracting $(basename ${x})..." + rpm_unpack ${x} || die "rpm_unpack ${x} failed" + done +} + +src_install() { + local ext= + use amd64 && ext=e + local instdir=/opt/intel/${PN}${ext}/${PV} + cd "${S}"/${instdir}/doc + sed -e "s|\|${PACKAGEID}|g" \ + -i *support \ + || die "sed support file failed" + chmod 644 *support + + dodir ${instdir} + einfo "Copying files" + cp -pPR \ + "${S}"/${instdir}/* \ + "${D}"/${instdir}/ \ + || die "copying debugger failed" + cat > 06idb <<-EOF + PATH=${instdir}/bin + ROOTPATH=${instdir}/bin + MANPATH=${instdir}/man + EOF + doenvd 06idb || die "installing env file failed" + use emacs && \ + elisp-site-file-install "${S}"${instdir}/bin/*.el +} + +pkg_postinst () { + rm -f "${ROOT}"/opt/intel/{intel_sdp_products.db,.*.log} || die + elog "Make sure you have recieved the a license for ${PN}," + elog "you cannot run ${PN} without a license file." + elog "To receive a non-commercial license, you need to register." + elog "Read the website for more information on this license:" + elog "${HOMEPAGE}" + elog "Then put the license file into ${ROOT}/opt/intel/licenses." + elog "\nTo use ${PN} issue first \n\tsource ${ROOT}/etc/profile" + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} -- cgit v1.2.3-65-gdbad