summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2015-03-31 19:03:28 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2015-03-31 19:03:28 +0000
commitfb2469feafbb0f1bcf7584c38cf63d9fce26fa74 (patch)
tree770a9c783ed137f65c2759336d89cb4d4c29cd9b /dev-games
parentUpdate dependency after package move of eselect modules to app-eselect. (diff)
downloadgentoo-2-fb2469feafbb0f1bcf7584c38cf63d9fce26fa74.tar.gz
gentoo-2-fb2469feafbb0f1bcf7584c38cf63d9fce26fa74.tar.bz2
gentoo-2-fb2469feafbb0f1bcf7584c38cf63d9fce26fa74.zip
EAPI=5
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-games')
-rw-r--r--dev-games/guichan/ChangeLog7
-rw-r--r--dev-games/guichan/guichan-0.8.2.ebuild19
2 files changed, 13 insertions, 13 deletions
diff --git a/dev-games/guichan/ChangeLog b/dev-games/guichan/ChangeLog
index 25ba4ae7197b..61448dde8324 100644
--- a/dev-games/guichan/ChangeLog
+++ b/dev-games/guichan/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-games/guichan
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/ChangeLog,v 1.26 2013/04/27 23:10:19 hasufell Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/ChangeLog,v 1.27 2015/03/31 19:03:28 mr_bones_ Exp $
+
+ 31 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org> guichan-0.8.2.ebuild:
+ EAPI=5
27 Apr 2013; Julian Ospald <hasufell@gentoo.org> guichan-0.8.2.ebuild,
+files/guichan-0.8.2-automake-1.13.patch:
diff --git a/dev-games/guichan/guichan-0.8.2.ebuild b/dev-games/guichan/guichan-0.8.2.ebuild
index 09bf462b253a..efaf70feba26 100644
--- a/dev-games/guichan/guichan-0.8.2.ebuild
+++ b/dev-games/guichan/guichan-0.8.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/guichan-0.8.2.ebuild,v 1.7 2013/04/27 23:10:19 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/guichan-0.8.2.ebuild,v 1.8 2015/03/31 19:03:28 mr_bones_ Exp $
-EAPI=2
+EAPI=5
inherit eutils autotools
DESCRIPTION="a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL"
@@ -20,9 +20,11 @@ DEPEND="allegro? ( <media-libs/allegro-5 )
media-libs/libsdl
media-libs/sdl-image
)"
+RDEPEND=${DEPEND}
src_prepare() {
- epatch "${FILESDIR}"/${P}-as-needed.patch \
+ epatch \
+ "${FILESDIR}"/${P}-as-needed.patch \
"${FILESDIR}"/${P}-automake-1.13.patch
mv configure.in configure.ac || die
eautoreconf
@@ -30,7 +32,6 @@ src_prepare() {
src_configure() {
econf \
- --disable-dependency-tracking \
$(use_enable allegro) \
$(use_enable opengl) \
$(use_enable sdl) \
@@ -39,10 +40,6 @@ src_configure() {
}
src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS README TODO
- if ! use static-libs ; then
- find "${D}" -type f -name '*.la' -exec rm {} + \
- || die "la removal failed"
- fi
+ default
+ prune_libtool_files
}