diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2013-09-05 00:23:03 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2013-09-05 00:23:03 +0000 |
commit | b6c433658c9d27a2cf91c68154ef3d680aee0046 (patch) | |
tree | 9873d3b7ea7107245be0b9ed5a77bb113903f1bc /dev-ruby/ruby-sdl | |
parent | Cleanup old. (diff) | |
download | gentoo-2-b6c433658c9d27a2cf91c68154ef3d680aee0046.tar.gz gentoo-2-b6c433658c9d27a2cf91c68154ef3d680aee0046.tar.bz2 gentoo-2-b6c433658c9d27a2cf91c68154ef3d680aee0046.zip |
Cleanup old.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/ruby-sdl')
-rw-r--r-- | dev-ruby/ruby-sdl/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ruby/ruby-sdl/ruby-sdl-2.1.1.1.ebuild | 69 |
2 files changed, 4 insertions, 70 deletions
diff --git a/dev-ruby/ruby-sdl/ChangeLog b/dev-ruby/ruby-sdl/ChangeLog index 0804ff052b11..0f2d230a060a 100644 --- a/dev-ruby/ruby-sdl/ChangeLog +++ b/dev-ruby/ruby-sdl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/ruby-sdl # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-sdl/ChangeLog,v 1.37 2013/08/28 11:16:24 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-sdl/ChangeLog,v 1.38 2013/09/05 00:23:03 mrueg Exp $ + + 05 Sep 2013; Manuel Rüger <mrueg@gentoo.org> -ruby-sdl-2.1.1.1.ebuild: + Cleanup old. 28 Aug 2013; Agostino Sarubbo <ago@gentoo.org> ruby-sdl-2.1.2.ebuild: Stable for x86, wrt bug #480984 diff --git a/dev-ruby/ruby-sdl/ruby-sdl-2.1.1.1.ebuild b/dev-ruby/ruby-sdl/ruby-sdl-2.1.1.1.ebuild deleted file mode 100644 index cddc635b53a9..000000000000 --- a/dev-ruby/ruby-sdl/ruby-sdl-2.1.1.1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2012 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.1.1.1.ebuild,v 1.4 2012/05/01 18:24:26 armin76 Exp $ - -EAPI=2 -USE_RUBY="ruby18" - -inherit eutils ruby-ng - -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 ~ppc x86" - -IUSE="image mixer truetype mpeg sge" - -CDEPEND=" - >=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="${DEPEND} ${CDEPEND}" -RDEPEND="${RDEPEND} ${CDEPEND}" - -each_ruby_configure() { - ${RUBY} extconf.rb || die "extconf.rb failed" -} - -each_ruby_compile() { - emake || die "emake failed" -} - -each_ruby_install() { - emake DESTDIR="${D}" install || die "einstall failed" -} - -all_ruby_install() { - dodoc README.en README.ja NEWS.en NEWS.ja - 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 -} |