65 lines
1.7 KiB
Bash
65 lines
1.7 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/rubyripper/rubyripper-0.6.2.ebuild,v 1.3 2012/01/28 15:23:57 phajdan.jr Exp $
|
|
|
|
EAPI=2
|
|
|
|
VIRTUALX_REQUIRED=always
|
|
VIRTUALX_COMMAND=./configure
|
|
USE_RUBY=ruby18
|
|
|
|
inherit ruby-ng virtualx
|
|
|
|
DESCRIPTION="A secure audio ripper for Linux"
|
|
HOMEPAGE="http://code.google.com/p/rubyripper"
|
|
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="cli cdrdao flac +gtk +mp3 normalize +vorbis wav"
|
|
|
|
ILINGUAS="bg de es fr hu it nl ru se"
|
|
|
|
for lingua in $ILINGUAS; do
|
|
IUSE="${IUSE} linguas_${lingua}"
|
|
done
|
|
|
|
RDEPEND="virtual/eject
|
|
media-sound/cd-discid
|
|
media-sound/cdparanoia
|
|
cdrdao? ( app-cdr/cdrdao )
|
|
flac? ( media-libs/flac )
|
|
mp3? ( media-sound/lame )
|
|
vorbis? ( media-sound/vorbis-tools )
|
|
normalize? ( media-sound/normalize
|
|
mp3? ( media-sound/mp3gain )
|
|
vorbis? ( media-sound/vorbisgain )
|
|
wav? ( media-sound/wavegain ) )"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
ruby_add_rdepend ">=dev-ruby/ruby-gettext-2.1.0-r1
|
|
gtk? ( >=dev-ruby/ruby-gtk2-0.19.3 )"
|
|
|
|
# fix for bug 203737
|
|
RUBY_PATCHES=( "${FILESDIR}/${PN}-0.5.2-require-rubygems.patch" )
|
|
|
|
each_ruby_configure() {
|
|
local myconf=--prefix=/usr
|
|
local enable_linguas
|
|
|
|
for lingua in $ILINGUAS; do
|
|
use linguas_$lingua && enable_linguas="${enable_linguas},${lingua}"
|
|
done
|
|
|
|
[[ -n ${enable_linguas} ]] && myconf="${myconf} --enable-lang=${enable_linguas#,}"
|
|
|
|
use gtk && myconf="${myconf} --enable-gtk2"
|
|
use cli && myconf="${myconf} --enable-cli"
|
|
|
|
virtualmake ${myconf}
|
|
}
|
|
|
|
each_ruby_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed"
|
|
}
|