View previous topic :: View next topic |
Author |
Message |
ai Apprentice
Joined: 21 Mar 2004 Posts: 227 Location: Poland, Krk
|
Posted: Sat Sep 11, 2004 9:44 am Post subject: emerge -C sox = blad |
|
|
Code: | media-sound/sox
selected: 12.17.4-r1
protected: none
omitted: 12.17.4-r2
>>> 'Selected' packages are slated for removal.
>>> 'Protected' and 'omitted' packages will not be removed.
>>> Waiting 5 seconds before starting...
>>> (Control-C to abort)...
>>> Unmerging in: 5 4 3 2 1
>>> Unmerging media-sound/sox-12.17.4-r1...
No package files given... Grabbing a set.
/var/db/pkg/media-sound/sox-12.17.4-r1/sox-12.17.4-r1.ebuild: line 27: unexpected EOF while looking for matching `"'
/var/db/pkg/media-sound/sox-12.17.4-r1/sox-12.17.4-r1.ebuild: line 45: syntax error: unexpected end of file
!!! ERROR: media-sound/sox-12.17.4-r1 failed.
!!! Function , Line 1299, Exitcode 1
!!! error sourcing ebuild
!!! FAILED prerm: 1
|
??? o co to chodzi, nie moge update'owac ani nic bo nie chce mi usunac starszej wersji. Jakis blad w .ebuild'zie czy cus?
poz. ai _________________ just nothing |
|
Back to top |
|
|
joker l33t
Joined: 03 May 2003 Posts: 681 Location: www
|
|
Back to top |
|
|
ai Apprentice
Joined: 21 Mar 2004 Posts: 227 Location: Poland, Krk
|
Posted: Mon Sep 13, 2004 2:20 pm Post subject: |
|
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /home/cvsroot/gentoo-x86/media-sound/sox/sox-12.17.4-r1.ebuild,v 1.8
DESCRIPTION="The swiss army knife of sound processing programs"
HOMEPAGE="http://sox.sourceforge.net"
SRC_URI="mirror://sourceforge/sox/${P}.tar.gz"
IUSE="alsa oss oggvorbis mad encode"
SLOT="0"
KEYWORDS="x86 ppc sparc amd64"
LICENSE="LGPL-2.1"
DEPEND="virtual/glibc
oggvorbis? media-libs/libvorbis
mad? media-sound/madplay^A
src_compile () {
# 12.17.4 has mp3 encoding/decoding if you have madlibs and lame
# using alsa by default
local myconf
use oggvorbis || myconf="${myconf} --disable-ogg-vorbis"
use mad || myconf="${myconf} --disable-mad"
use encode || myconf="${myconf} --disable-lame"
use alsa || myconf="${myconf} --disable-alsa-dsp"
use oss || myconf="${myconf} --disable-oss-dsp"
econf ${myconf} --enable-fast-ulaw --enable-fast-alaw || die
emake || die
}
src_install() {
dobin sox play soxeffect soxmix || die
doman sox.1 play.1 soxexam.1
dodoc Changelog README TODO *.txt
}
pkg_postinst() {
# the rec binary doesnt exist anymore
if [ ! -e ${ROOT}/usr/bin/rec ] ; then
ln -s /usr/bin/play ${ROOT}/usr/bin/rec
fi
} _________________ just nothing |
|
Back to top |
|
|
joker l33t
Joined: 03 May 2003 Posts: 681 Location: www
|
|
Back to top |
|
|
|