summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-09-14 22:41:56 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-09-14 22:41:56 +0000
commit8eaa9029c10618cf4a817ffe9666a1f25dc552fa (patch)
treee0e6696796137c2075f356aa23e1f076e0ae442b /sys-libs
parentFix last ChangeLog entry: slash, not backslash. (diff)
downloadgentoo-2-8eaa9029c10618cf4a817ffe9666a1f25dc552fa.tar.gz
gentoo-2-8eaa9029c10618cf4a817ffe9666a1f25dc552fa.tar.bz2
gentoo-2-8eaa9029c10618cf4a817ffe9666a1f25dc552fa.zip
Remove old
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/libspe2/ChangeLog8
-rw-r--r--sys-libs/libspe2/libspe2-2.2.80_p95.ebuild68
2 files changed, 5 insertions, 71 deletions
diff --git a/sys-libs/libspe2/ChangeLog b/sys-libs/libspe2/ChangeLog
index 5c4f405fdb9a..f9755e19b4f8 100644
--- a/sys-libs/libspe2/ChangeLog
+++ b/sys-libs/libspe2/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libspe2
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libspe2/ChangeLog,v 1.4 2008/12/26 14:58:21 josejx Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libspe2/ChangeLog,v 1.5 2012/09/14 22:41:56 ago Exp $
+
+ 14 Sep 2012; Agostino Sarubbo <ago@gentoo.org> -libspe2-2.2.80_p95.ebuild:
+ Remove old
*libspe2-2.3.0_p135 (26 Dec 2008)
@@ -23,4 +26,3 @@
25 Oct 2007; Luca Barbato <lu_zero@gentoo.org> +files/spe.rc6,
+libspe2-2.2.80_p95.ebuild:
First commit
-
diff --git a/sys-libs/libspe2/libspe2-2.2.80_p95.ebuild b/sys-libs/libspe2/libspe2-2.2.80_p95.ebuild
deleted file mode 100644
index 152f60028eef..000000000000
--- a/sys-libs/libspe2/libspe2-2.2.80_p95.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libspe2/libspe2-2.2.80_p95.ebuild,v 1.1 2007/10/25 20:28:57 lu_zero Exp $
-inherit eutils
-
-MY_P=${P/_p/-}
-
-DESCRIPTION="A wrapper library to adapt the JSRE SPU usage model to SPUFS"
-HOMEPAGE="http://sourceforge/projects/libspe"
-SRC_URI="mirror://sourceforge/libspe/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~ppc ~ppc64"
-IUSE="debug"
-
-S="${WORKDIR}/${P//_p*}"
-
-DEPEND=""
-# This packages also provides libspe1
-RDEPEND="!sys-libs/libspe"
-
-export CBUILD=${CBUILD:-${CHOST}}
-export CTARGET=${CTARGET:-${CHOST}}
-
-if [[ ${CTARGET} == ${CHOST} ]] ; then
- if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
- export CTARGET=${CATEGORY/cross-}
- fi
-fi
-
-if [[ ${CTARGET} == ${CHOST} ]] ; then
- SYSROOT=""
-else
- SYSROOT="/usr/${CTARGET}"
-fi
-
-src_unpack () {
- unpack ${A}
- #just in case something is missing
- cd "${S}"
-}
-
-src_compile() {
- myconf=""
- use debug && myconf="${myconf} DEBUG=1"
- make all elfspe-all CROSS="${CTARGET}-" \
- prefix=/usr SYSROOT="$SYSROOT" ${myconf} \
- speinclude=/usr/spu-elf/include
-}
-
-src_install() {
- make CROSS="${CTARGET}-" prefix=/usr \
- speinclude=/usr/spu-elf/include \
- SYSROOT="$SYSROOT" \
- DESTDIR="$D" install elfspe-install
- newinitd "${FILESDIR}/spe.rc6" elfspe
-}
-
-pkg_postinst() {
- einfo "You may want to register elfspe to binfmt using the"
- einfo "provided initscript"
- einfo "# rc-update add elfspe boot"
- ewarn "make sure your fstab contains the following line"
- ewarn "none /spu spufs defaults
- 0 0"
- ewarn "and that you have spufs support enabled in the kernel"
-}