54 lines
1.2 KiB
Bash
54 lines
1.2 KiB
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcsparse/rcsparse-0_pre45-r1.ebuild,v 1.2 2011/06/18 10:10:00 sochotnicky Exp $
|
|
|
|
EAPI=4
|
|
|
|
USE_RUBY="ruby18 ree18"
|
|
|
|
#mercurial after ruby!
|
|
inherit ruby-ng mercurial
|
|
|
|
MY_PV="${PV#0_pre}"
|
|
|
|
DESCRIPTION="rcsparse ruby module"
|
|
HOMEPAGE="http://ww2.fs.ei.tum.de/~corecode/hg/rcsparse"
|
|
SRC_URI=""
|
|
EHG_REPO_URI="http://ww2.fs.ei.tum.de/~corecode/hg/rcsparse"
|
|
EHG_REVISION="${MY_PV}"
|
|
|
|
LICENSE="BSD-4"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="test"
|
|
|
|
RUBY_S="${P}"
|
|
# return S to default after ruby-ng has modified it
|
|
S="${WORKDIR}/${RUBY_S}"
|
|
|
|
ruby_add_bdepend "test? ( virtual/ruby-test-unit )"
|
|
|
|
src_prepare() {
|
|
# this is a workaround because combination of ruby-ng and mercurial is
|
|
# not working correctly for unpacking
|
|
for rubyv in ${USE_RUBY} all;do
|
|
mkdir "${WORKDIR}/${rubyv}" || die
|
|
cp -prl "${S}" "${WORKDIR}/${rubyv}/${RUBY_S}" || die
|
|
done
|
|
}
|
|
|
|
each_ruby_configure() {
|
|
${RUBY} extconf.rb || die
|
|
}
|
|
|
|
each_ruby_compile() {
|
|
emake
|
|
}
|
|
|
|
each_ruby_test() {
|
|
${RUBY} -I. test.rb || die
|
|
}
|
|
|
|
each_ruby_install() {
|
|
emake DESTDIR="${D}" install
|
|
}
|