summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2008-04-13 20:01:12 +0000
committerSamuli Suominen <drac@gentoo.org>2008-04-13 20:01:12 +0000
commitcba57e785eac0c5b56a66c08ca659c5bd037cf20 (patch)
tree27d8597a3bbef3f87613f805b46e2a4dfdba303b /media-sound/gsm
parentDropped ppc-macos keyword, see you in Prefix (diff)
downloadgentoo-2-cba57e785eac0c5b56a66c08ca659c5bd037cf20.tar.gz
gentoo-2-cba57e785eac0c5b56a66c08ca659c5bd037cf20.tar.bz2
gentoo-2-cba57e785eac0c5b56a66c08ca659c5bd037cf20.zip
old
(Portage version: 2.1.5_rc3)
Diffstat (limited to 'media-sound/gsm')
-rw-r--r--media-sound/gsm/gsm-1.0.12.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/media-sound/gsm/gsm-1.0.12.ebuild b/media-sound/gsm/gsm-1.0.12.ebuild
deleted file mode 100644
index a4883917954a..000000000000
--- a/media-sound/gsm/gsm-1.0.12.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/gsm/gsm-1.0.12.ebuild,v 1.7 2007/11/25 16:13:26 ranger Exp $
-
-inherit eutils flag-o-matic multilib toolchain-funcs versionator
-
-DESCRIPTION="Lossy speech compression library and tool."
-HOMEPAGE="http://kbs.cs.tu-berlin.de/~jutta/toast.html"
-SRC_URI="http://www.cs.tu-berlin.de/~jutta/${PN}/${P}.tar.gz"
-
-LICENSE="OSI-Approved"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86"
-IUSE=""
-
-S="${WORKDIR}"/${PN}-"$(replace_version_separator 2 '-pl' )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-memcpy.patch
- epatch "${FILESDIR}"/${P}-64bit.patch
-}
-
-src_compile() {
- # From upstream Makefile. Define this if your host multiplies
- # floats faster than integers, e.g. on a SPARCstation.
- use sparc && append-flags -DUSE_FLOAT_MUL -DFAST
-
- emake CCFLAGS="${CFLAGS} -c -DNeedFunctionPrototypes=1" \
- CC="$(tc-getCC)" || die "emake failed."
-}
-
-src_install() {
- dodir /usr/bin /usr/$(get_libdir) /usr/include/gsm /usr/share/man/man{1,3}
-
- emake -j1 INSTALL_ROOT="${D}"/usr \
- GSM_INSTALL_LIB="${D}"/usr/$(get_libdir) \
- GSM_INSTALL_INC="${D}"/usr/include/gsm \
- GSM_INSTALL_MAN="${D}"/usr/share/man/man3 \
- TOAST_INSTALL_MAN="${D}"/usr/share/man/man1 \
- install || die "emake install failed."
-
- dodoc ChangeLog* MACHINES MANIFEST README
-}