diff options
author | 2004-10-23 14:00:16 +0000 | |
---|---|---|
committer | 2004-10-23 14:00:16 +0000 | |
commit | 800a4454bc01049834816d7e6c03e61a65556a30 (patch) | |
tree | f3e04ee6e46e12386a79fe32af992b7cbc49ed1f /games-puzzle/atomix | |
parent | Added ~sparc keyword. (diff) | |
download | historical-800a4454bc01049834816d7e6c03e61a65556a30.tar.gz historical-800a4454bc01049834816d7e6c03e61a65556a30.tar.bz2 historical-800a4454bc01049834816d7e6c03e61a65556a30.zip |
add workaround for intltool-0.31.3 for INTLTOOL_ICONV
Diffstat (limited to 'games-puzzle/atomix')
-rw-r--r-- | games-puzzle/atomix/ChangeLog | 5 | ||||
-rw-r--r-- | games-puzzle/atomix/Manifest | 14 | ||||
-rw-r--r-- | games-puzzle/atomix/atomix-1.0.1.ebuild | 9 |
3 files changed, 20 insertions, 8 deletions
diff --git a/games-puzzle/atomix/ChangeLog b/games-puzzle/atomix/ChangeLog index 3a26348c719d..c9f0d645541e 100644 --- a/games-puzzle/atomix/ChangeLog +++ b/games-puzzle/atomix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-puzzle/atomix # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/ChangeLog,v 1.7 2004/10/06 05:33:21 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/ChangeLog,v 1.8 2004/10/23 14:00:16 liquidx Exp $ + + 23 Oct 2004; Alastair Tse <liquidx@gentoo.org> atomix-1.0.1.ebuild: + add workaround for intltool-0.31.3 for INTLTOOL_ICONV 05 Oct 2004; Michael Sterrett <mr_bones_@gentoo.org> atomix-1.0.1.ebuild: fix compile error with gcc34 (bug #66142) (again) diff --git a/games-puzzle/atomix/Manifest b/games-puzzle/atomix/Manifest index 07f7bc230858..1c30623e2f8d 100644 --- a/games-puzzle/atomix/Manifest +++ b/games-puzzle/atomix/Manifest @@ -1,4 +1,14 @@ -MD5 a43b385e48a3833f7c70589b8d8d7d2f ChangeLog 887 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 217337920de56d05d2856aa4c4530371 ChangeLog 1012 +MD5 d1b422366baec3b320aa30cce1f3d4c2 atomix-1.0.1.ebuild 1320 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 814f92801392a9737981714ecf7301aa atomix-1.0.1.ebuild 1286 MD5 856b6bd13d4c9efac37f882d6eef9425 files/digest-atomix-1.0.1 64 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.6 (GNU/Linux) + +iD8DBQFBemQMRkyva5PS18kRAoIMAJ9LY/hE6QEh/0fqvzua77gIF4caCgCfbS8C +EmmVxwEv+A+pfqRU/Cks6bg= +=r7Et +-----END PGP SIGNATURE----- diff --git a/games-puzzle/atomix/atomix-1.0.1.ebuild b/games-puzzle/atomix/atomix-1.0.1.ebuild index 96f2d19be129..be7acc4628c4 100644 --- a/games-puzzle/atomix/atomix-1.0.1.ebuild +++ b/games-puzzle/atomix/atomix-1.0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/atomix-1.0.1.ebuild,v 1.7 2004/10/06 05:33:21 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/atomix-1.0.1.ebuild,v 1.8 2004/10/23 14:00:16 liquidx Exp $ inherit gnome2 @@ -44,10 +44,9 @@ src_unpack() { sed -i \ -e 's/games.games/games:games/' Makefile.in \ || die "sed failed" -} -src_compile() { # Seems to fix the infamous "OrigTree module" bug - intltoolize -c -f - gnome2_src_compile + cd ${S}; intltoolize -c -f || die + sed -i -e 's/@INTLTOOL_ICONV@/iconv/' intltool-merge.in } + |