summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2009-07-11 16:19:51 +0000
committerDenis Dupeyron <calchan@gentoo.org>2009-07-11 16:19:51 +0000
commitfc10cc9685f47ae12e5224c8643b89708edc6bb0 (patch)
treeb2434cc9a73712c5f7618e4a33bc9ba9c91245af /sci-electronics
parentuse system xmlrpc-epi, bug 276349. rb_libtorrent-0.13.1 is minimal, bug 27636... (diff)
downloadgentoo-2-fc10cc9685f47ae12e5224c8643b89708edc6bb0.tar.gz
gentoo-2-fc10cc9685f47ae12e5224c8643b89708edc6bb0.tar.bz2
gentoo-2-fc10cc9685f47ae12e5224c8643b89708edc6bb0.zip
Removed old version.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/systemc/ChangeLog8
-rw-r--r--sci-electronics/systemc/systemc-2.2_beta20060605.ebuild59
2 files changed, 6 insertions, 61 deletions
diff --git a/sci-electronics/systemc/ChangeLog b/sci-electronics/systemc/ChangeLog
index 2da2924a1719..2a65f869f791 100644
--- a/sci-electronics/systemc/ChangeLog
+++ b/sci-electronics/systemc/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-electronics/systemc
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/systemc/ChangeLog,v 1.12 2007/04/22 15:38:02 calchan Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/systemc/ChangeLog,v 1.13 2009/07/11 16:19:51 calchan Exp $
+
+ 11 Jul 2009; Denis Dupeyron <calchan@gentoo.org>
+ -systemc-2.2_beta20060605.ebuild:
+ Removed old version.
*systemc-2.2.0 (22 Apr 2007)
diff --git a/sci-electronics/systemc/systemc-2.2_beta20060605.ebuild b/sci-electronics/systemc/systemc-2.2_beta20060605.ebuild
deleted file mode 100644
index 961cf76f7e3f..000000000000
--- a/sci-electronics/systemc/systemc-2.2_beta20060605.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/systemc/systemc-2.2_beta20060605.ebuild,v 1.4 2007/04/20 09:28:22 calchan Exp $
-
-inherit versionator multilib
-
-SNAPSHOTDATE="05jun06"
-MY_PV="$(get_version_component_range 1-2).${SNAPSHOTDATE}"
-
-DESCRIPTION="A C++ based modeling platform for VLSI and system-level co-design"
-LICENSE="SOPLA-2.3"
-HOMEPAGE="http://www.systemc.org/"
-SRC_URI="${PN}-${MY_PV}.tgz"
-
-SLOT="0"
-IUSE=""
-KEYWORDS="~amd64 x86"
-RESTRICT="fetch test"
-
-DEPEND=""
-
-S="${WORKDIR}/${PN}-${MY_PV}_beta"
-
-pkg_nofetch() {
- elog "${PN} developers require end-users to accept their license agreement"
- elog "by registering on their Web site (${HOMEPAGE})."
- elog "Please download ${A} manually and place it in ${DISTDIR}."
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i -e "s:lib-\$(TARGET_ARCH):$(get_libdir):g" $(find . -name Makefile.in) || die "Patching failed"
- sed -i -e "s:OPT_CXXFLAGS=\"-O3\":OPT_CXXFLAGS=\"${CXXFLAGS}\":g" configure || die "Patching failed"
-}
-
-src_compile() {
- econf --disable-dependency-tracking CXX="g++" || die "Configuration failed"
- cd src
- emake || die "Compilation failed"
-}
-
-src_install() {
- dodoc AUTHORS ChangeLog INSTALL NEWS README RELEASENOTES
- insinto /usr/share/doc/${PF}/docs
- doins doc/*
- cd src
- einstall
-}
-
-pkg_postinst() {
- elog "If you want to run the examples, you need to :"
- elog " tar xvfz ${PORTAGE_ACTUAL_DISTDIR}/${A}"
- elog " cd ${PN}-${MY_PV}_beta"
- elog " find examples -name 'Makefile.*' -exec sed -i -e 's/-lm/-lm -lpthread/' '{}' \;"
- elog " ./configure"
- elog " cd examples"
- elog " make check"
-}