diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-08-25 10:45:55 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-08-25 10:45:55 +0100 |
commit | 3cf7c3ef441822c889356fd1812ebf2944a59851 (patch) | |
tree | c513fe68548b40365c1c2ebfe35c58ad431cdd77 /dev-ruby/ruby-sdl | |
parent | 05b8b0e0af1d72e51a3ee61522941bf7605cd01c (diff) |
gentoo resync : 25.08.2020
Diffstat (limited to 'dev-ruby/ruby-sdl')
-rw-r--r-- | dev-ruby/ruby-sdl/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/ruby-sdl/ruby-sdl-2.1.2-r3.ebuild | 70 |
2 files changed, 71 insertions, 0 deletions
diff --git a/dev-ruby/ruby-sdl/Manifest b/dev-ruby/ruby-sdl/Manifest index 0ba945d264b4..de2397e31a1d 100644 --- a/dev-ruby/ruby-sdl/Manifest +++ b/dev-ruby/ruby-sdl/Manifest @@ -1,3 +1,4 @@ DIST ruby-sdl-2.1.2.tar.gz 178105 BLAKE2B 84870279edcf2616159861267ffc8666b482786f43a30c8729cd4c59f25219956648270452bf38b72115e05235786ec8c0f0e7913469cc8573d9eda813d25726 SHA512 1ddae367fb4145cc8142edbf3c61acaf56604054f710ac37cadb8d04f93db24fc3595c1bc8e0fb5f330aabc815884f31b5f2a39c0108026fca442fc0b3bc2807 EBUILD ruby-sdl-2.1.2-r2.ebuild 1911 BLAKE2B fd537922fe54915e97a2c7788f30a6a98488b08d834b9eba45a996b5daaa3de6f4f69df30e4ec52fdd877ea137aaa502e89807fd16261ed54913212ef2a7b295 SHA512 296dbdf0f1692413e82a14332efdd25324702d41367f8c1f5776ccfdabd120eee055e3e13605779b6ae41f14f4d9cefa8d1a7ce33568f590c5b5fa2872dea0a5 +EBUILD ruby-sdl-2.1.2-r3.ebuild 1924 BLAKE2B 7257ed13367eaa07529ac04d6e5a883d71914624c735d1ce77568b2c777a98e8e8a4be2e5a317286196c1c2c541bea52cbde9f84c413142505110738708a9b3e SHA512 e783ec468ce3c60e72bd24c516339c6b477d84518eef3cba88ac66282029f7907cfe3b85e6e222b286b36bc27acecf039fbc3fa4f306515a65c01afdacf304ce MISC metadata.xml 560 BLAKE2B 44c2c964436b58f2f3d088cc598db576b71e5f42a490e1ae616400686addaf188c82b0f5a4dfab56a61712d5858720007fb31df3f6b71d0e37e5b617dde67984 SHA512 a9eaf9e6a1cf02821fec770e3499796993aebfdf0a7f251773a12950cd42770beb1d5bbc34fad694e74522eeeea619cd659509c31f914f4ddd257a9ce1c17fbb diff --git a/dev-ruby/ruby-sdl/ruby-sdl-2.1.2-r3.ebuild b/dev-ruby/ruby-sdl/ruby-sdl-2.1.2-r3.ebuild new file mode 100644 index 000000000000..39b94a9ed94b --- /dev/null +++ b/dev-ruby/ruby-sdl/ruby-sdl-2.1.2-r3.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27" + +inherit ruby-ng + +RELEASE="rel-${PV//./-}" +RUBY_S="rubysdl-${RELEASE}" + +DESCRIPTION="Ruby/SDL: Ruby bindings for SDL" +HOMEPAGE="https://www.kmc.gr.jp/~ohai/rubysdl.en.html" +SRC_URI="https://github.com/ohai/rubysdl/archive/${RELEASE}.tar.gz -> ${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[joystick] + 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}" + +all_ruby_prepare() { + # Remove already compressed image + rm -f sample/icon.bmp.gz || die +} + +each_ruby_configure() { + ${RUBY} extconf.rb || die "extconf.rb failed" +} + +each_ruby_compile() { + emake V=1 +} + +each_ruby_install() { + emake V=1 DESTDIR="${D}" install +} + +all_ruby_install() { + dodoc README.en README.ja NEWS.en NEWS.ja + dodoc -r doc-en 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 +} |