diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-05-01 13:05:49 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-05-01 21:32:17 +0200 |
commit | 617a87fbe2abe454cda91989e4d4ac7f47a66e84 (patch) | |
tree | a3fd988728691f579aea49e10667c45236b0588f /games-puzzle/einstein/einstein-2.1.1.ebuild | |
parent | games-puzzle/cuyo: Drop old (diff) | |
download | gentoo-617a87fbe2abe454cda91989e4d4ac7f47a66e84.tar.gz gentoo-617a87fbe2abe454cda91989e4d4ac7f47a66e84.tar.bz2 gentoo-617a87fbe2abe454cda91989e4d4ac7f47a66e84.zip |
games-puzzle/einstein: Version bump
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-puzzle/einstein/einstein-2.1.1.ebuild')
-rw-r--r-- | games-puzzle/einstein/einstein-2.1.1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/games-puzzle/einstein/einstein-2.1.1.ebuild b/games-puzzle/einstein/einstein-2.1.1.ebuild new file mode 100644 index 000000000000..0489b66bdf2c --- /dev/null +++ b/games-puzzle/einstein/einstein-2.1.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit desktop + +DESCRIPTION="A puzzle game inspired by Albert Einstein" +HOMEPAGE="https://github.com/lksj/einstein-puzzle" +SRC_URI="https://github.com/lksj/einstein-puzzle/archive/v${PV}.tar.gz + mirror://gentoo/${PN}.png" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="media-libs/libsdl[sound,video] + media-libs/sdl-mixer + media-libs/sdl-ttf" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-puzzle-${PV}" + +src_prepare() { + default + eapply "${FILESDIR}"/${PN}-2.0-as-needed.patch + sed -i \ + -e "/PREFIX/s:/usr/local:/usr:" \ + -e "s/\(OPTIMIZE=[^#]*\)/\0 ${CXXFLAGS}/" Makefile \ + || die +} + +src_install() { + dobin "${PN}" + insinto "/usr/share/${PN}/res" + doins einstein.res + doicon "${DISTDIR}"/${PN}.png + make_desktop_entry ${PN} "Einstein Puzzle" + einstalldocs +} |