You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ruby/ruby-sdl/ruby-sdl-2.0.1b.ebuild

61 lines
1.8 KiB

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-sdl/ruby-sdl-2.0.1b.ebuild,v 1.3 2010/03/03 18:46:27 phajdan.jr Exp $
inherit eutils
MY_P="${P/-/}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Ruby/SDL: Ruby bindings for SDL"
HOMEPAGE="http://www.kmc.gr.jp/~ohai/rubysdl.en.html"
SRC_URI="mirror://rubyforge/rubysdl/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc x86"
IUSE="image mixer truetype mpeg sge"
RDEPEND="dev-lang/ruby
>=media-libs/libsdl-1.2.5
truetype? ( >=media-libs/sdl-ttf-2.0.6 )
image? ( >=media-libs/sdl-image-1.2.2 )
mixer? ( >=media-libs/sdl-mixer-1.2.4 )
mpeg? ( >=media-libs/smpeg-0.4.4-r1 )
sge? ( media-libs/sge )"
DEPEND="${RDEPEND}"
src_compile() {
ruby extconf.rb || die "extconf.rb failed"
emake || die "emake failed"
}
src_install () {
emake DESTDIR="${D}" install || die "einstall failed"
dodoc rubysdl_const_list.txt README.en NEWS.en
insinto /usr/share/doc/${P}/doc
doins doc-en/*
insinto /usr/share/doc/${P}/sample
doins sample/*
}
pkg_postinst () {
if ! use image || ! use mixer || ! use truetype || ! use mpeg || ! use sge; then
echo ""
ewarn "If any of the following packages are not installed, Ruby/SDL"
ewarn "will be missing some functionality. This is ok, but may"
ewarn "cause errors in Ruby/SDL programs that need these libraries:"
ewarn ""
ewarn "\tmedia-libs/sdl-image\tImage loading (PNG, JPEG, etc.)"
ewarn "\tmedia-libs/sdl-mixer\tSound mixing"
ewarn "\tmedia-libs/sdl-ttf\tTrueType Fonts"
ewarn "\tmedia-libs/sge\t\tVarious cool graphics extensions"
ewarn "\tmedia-libs/smpeg\tMPEG playback (including mp3)"
ewarn ""
ewarn "If you need the functionality offered by these libraries,"
ewarn "emerge the desired libraries, then re-emerge dev-ruby/rubysdl"
echo ""
fi
}