diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-04-27 23:15:41 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-04-27 23:15:41 +0000 |
commit | b6f09f5ea1f3aef41225a8aa1fddc6ce444051c5 (patch) | |
tree | 4f2259f4fc156d1e3aae4056462c150a179503d2 /dev-games/ois | |
parent | adjust subslot deps for auto-rebuild on libbtbb or libubertooth changes (diff) | |
download | gentoo-2-b6f09f5ea1f3aef41225a8aa1fddc6ce444051c5.tar.gz gentoo-2-b6f09f5ea1f3aef41225a8aa1fddc6ce444051c5.tar.bz2 gentoo-2-b6f09f5ea1f3aef41225a8aa1fddc6ce444051c5.zip |
fix build with automake-1.13
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'dev-games/ois')
-rw-r--r-- | dev-games/ois/ChangeLog | 6 | ||||
-rw-r--r-- | dev-games/ois/files/ois-1.3-automake-1.13.patch | 11 | ||||
-rw-r--r-- | dev-games/ois/ois-1.3.ebuild | 5 |
3 files changed, 19 insertions, 3 deletions
diff --git a/dev-games/ois/ChangeLog b/dev-games/ois/ChangeLog index 780e2064d7e8..438e83c4a52e 100644 --- a/dev-games/ois/ChangeLog +++ b/dev-games/ois/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-games/ois # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/ois/ChangeLog,v 1.12 2013/01/30 23:04:23 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/ois/ChangeLog,v 1.13 2013/04/27 23:15:41 hasufell Exp $ + + 27 Apr 2013; Julian Ospald <hasufell@gentoo.org> ois-1.3.ebuild, + +files/ois-1.3-automake-1.13.patch: + fix build with automake-1.13 30 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> -ois-1.2.0.ebuild: old diff --git a/dev-games/ois/files/ois-1.3-automake-1.13.patch b/dev-games/ois/files/ois-1.3-automake-1.13.patch new file mode 100644 index 000000000000..fb103e40335a --- /dev/null +++ b/dev-games/ois/files/ois-1.3-automake-1.13.patch @@ -0,0 +1,11 @@ +--- ois-v1-3/configure.ac ++++ ois-v1-3/configure.ac +@@ -5,7 +5,7 @@ + + AC_CANONICAL_TARGET + AM_INIT_AUTOMAKE( [OIS], 1.3.0 ) +-AM_CONFIG_HEADER([includes/config.h]) ++AC_CONFIG_HEADERS([includes/config.h]) + + dnl Check for programs + AC_PROG_CC diff --git a/dev-games/ois/ois-1.3.ebuild b/dev-games/ois/ois-1.3.ebuild index b405f3801884..fc9fdb15de14 100644 --- a/dev-games/ois/ois-1.3.ebuild +++ b/dev-games/ois/ois-1.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/ois/ois-1.3.ebuild,v 1.5 2013/01/30 23:01:02 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/ois/ois-1.3.ebuild,v 1.6 2013/04/27 23:15:41 hasufell Exp $ EAPI=4 inherit autotools autotools-utils @@ -21,7 +21,8 @@ DEPEND="x11-libs/libXaw S=${WORKDIR}/${MY_P} src_prepare() { - epatch "${FILESDIR}"/${P}-gcc47.patch + epatch "${FILESDIR}"/${P}-gcc47.patch \ + "${FILESDIR}"/${P}-automake-1.13.patch eautoreconf } |