diff options
author | Julian Ospald <hasufell@gentoo.org> | 2012-06-02 16:40:21 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2012-06-02 16:40:21 +0000 |
commit | 1ca4cd91d9ade5519bcbe365d5b658b9131d56f4 (patch) | |
tree | 0af3a1517faf7ca0948c5c718555430a5246a302 /games-action | |
parent | Leave the maintaining for games and perl. I can still contribute here if requ... (diff) | |
download | gentoo-2-1ca4cd91d9ade5519bcbe365d5b658b9131d56f4.tar.gz gentoo-2-1ca4cd91d9ade5519bcbe365d5b658b9131d56f4.tar.bz2 gentoo-2-1ca4cd91d9ade5519bcbe365d5b658b9131d56f4.zip |
bump to EAPI=4
(Portage version: 2.2.0_alpha109/cvs/Linux x86_64)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/openclonk/ChangeLog | 5 | ||||
-rw-r--r-- | games-action/openclonk/openclonk-5.2.2.ebuild | 13 |
2 files changed, 11 insertions, 7 deletions
diff --git a/games-action/openclonk/ChangeLog b/games-action/openclonk/ChangeLog index 21eb298db109..f4525b692183 100644 --- a/games-action/openclonk/ChangeLog +++ b/games-action/openclonk/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/openclonk # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v 1.2 2012/05/12 22:40:39 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v 1.3 2012/06/02 16:40:21 hasufell Exp $ + + 02 Jun 2012; Julian Ospald <hasufell@gentoo.org> openclonk-5.2.2.ebuild: + bump to EAPI=4 and fix doc destination 12 May 2012; Julian Ospald <hasufell@gentoo.org> openclonk-5.2.2.ebuild: fix licenses wrt #415645 diff --git a/games-action/openclonk/openclonk-5.2.2.ebuild b/games-action/openclonk/openclonk-5.2.2.ebuild index cc91d4cd8f5c..e81e32ac6ef7 100644 --- a/games-action/openclonk/openclonk-5.2.2.ebuild +++ b/games-action/openclonk/openclonk-5.2.2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/openclonk-5.2.2.ebuild,v 1.2 2012/05/12 22:40:39 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/openclonk-5.2.2.ebuild,v 1.3 2012/06/02 16:40:21 hasufell Exp $ -EAPI=3 +EAPI=4 inherit autotools eutils flag-o-matic python games @@ -78,6 +78,7 @@ src_configure() { append-flags -fno-strict-aliasing egamesconf \ + --docdir=/usr/share/doc/${PF} \ $(use_enable dedicated console) \ $(use_enable sound) \ $(use_enable mp3) \ @@ -87,18 +88,18 @@ src_configure() { } src_compile() { - emake || die + emake if use doc ; then - emake -C docs || die + emake -C docs fi } src_install() { - emake DESTDIR="${D}" install || die + emake DESTDIR="${D}" install if ! use dedicated; then - newgamesbin "${FILESDIR}"/${PN}-wrapper-script.sh ${PN} || die + newgamesbin "${FILESDIR}"/${PN}-wrapper-script.sh ${PN} doicon "${DISTDIR}"/${PN}.png make_desktop_entry ${PN} fi |