diff options
author | Malcolm Lashley <malc@gentoo.org> | 2006-08-15 21:34:13 +0000 |
---|---|---|
committer | Malcolm Lashley <malc@gentoo.org> | 2006-08-15 21:34:13 +0000 |
commit | 82590c17842ece2fa0e092606a2c4e63f5aac59e (patch) | |
tree | 0e62910d5879a18b148a18e93597f67d461f517f /dev-db/mysql-super-smack/mysql-super-smack-1.3.ebuild | |
parent | mark ~ppc (Bug #143609) (diff) | |
download | gentoo-2-82590c17842ece2fa0e092606a2c4e63f5aac59e.tar.gz gentoo-2-82590c17842ece2fa0e092606a2c4e63f5aac59e.tar.bz2 gentoo-2-82590c17842ece2fa0e092606a2c4e63f5aac59e.zip |
Little patch of pointer->int casting which makes gcc4.x barf on 64bit systems and voila ~amd64 - bug #141984
(Portage version: 2.1.1_pre5-r1)
Diffstat (limited to 'dev-db/mysql-super-smack/mysql-super-smack-1.3.ebuild')
-rw-r--r-- | dev-db/mysql-super-smack/mysql-super-smack-1.3.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dev-db/mysql-super-smack/mysql-super-smack-1.3.ebuild b/dev-db/mysql-super-smack/mysql-super-smack-1.3.ebuild index 4d7b3ad67889..9af197490f44 100644 --- a/dev-db/mysql-super-smack/mysql-super-smack-1.3.ebuild +++ b/dev-db/mysql-super-smack/mysql-super-smack-1.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3.ebuild,v 1.2 2006/01/15 15:11:59 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3.ebuild,v 1.3 2006/08/15 21:34:13 malc Exp $ inherit eutils @@ -12,7 +12,7 @@ SRC_URI="http://vegan.net/tony/supersmack/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~ppc ~x86" +KEYWORDS="~amd64 ~ppc ~x86" IUSE="mysql postgres" DEPEND="mysql? ( dev-db/mysql ) @@ -28,6 +28,7 @@ src_unpack() { unpack ${A} EPATCH_OPTS="-p1 -d ${S}" epatch ${FILESDIR}/${PN}-1.2.destdir.patch cd ${S} + epatch ${FILESDIR}/${PN}-1.3.amd64.patch automake } |