diff options
author | 2006-06-28 03:43:41 +0000 | |
---|---|---|
committer | 2006-06-28 03:43:41 +0000 | |
commit | 0fa15c08b5e07830150c51dc82622d07767ece82 (patch) | |
tree | b0ec443820cfc20b4bfb479df2b80f783b02a79e /app-text/glosung | |
parent | bug 130943, address build problems for ppc64 and linking against static glibc (diff) | |
download | gentoo-2-0fa15c08b5e07830150c51dc82622d07767ece82.tar.gz gentoo-2-0fa15c08b5e07830150c51dc82622d07767ece82.tar.bz2 gentoo-2-0fa15c08b5e07830150c51dc82622d07767ece82.zip |
Stable on amd64, allow compiling with newer libraries.
(Portage version: 2.1.1_pre1-r1)
Diffstat (limited to 'app-text/glosung')
-rw-r--r-- | app-text/glosung/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/glosung/glosung-2.1.3.ebuild | 13 |
2 files changed, 15 insertions, 3 deletions
diff --git a/app-text/glosung/ChangeLog b/app-text/glosung/ChangeLog index b0e3381d1d1f..8318a9914557 100644 --- a/app-text/glosung/ChangeLog +++ b/app-text/glosung/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/glosung # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/ChangeLog,v 1.1 2006/04/27 14:37:56 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/ChangeLog,v 1.2 2006/06/28 03:43:41 squinky86 Exp $ + + 28 Jun 2006; Jon Hood <squinky86@gentoo.org> glosung-2.1.3.ebuild: + Stable on amd64, allow compiling with newer libraries. *glosung-2.1.3 (27 Apr 2006) diff --git a/app-text/glosung/glosung-2.1.3.ebuild b/app-text/glosung/glosung-2.1.3.ebuild index ab237e514c60..8456a3d45061 100644 --- a/app-text/glosung/glosung-2.1.3.ebuild +++ b/app-text/glosung/glosung-2.1.3.ebuild @@ -1,14 +1,15 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-2.1.3.ebuild,v 1.1 2006/04/27 14:37:56 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-2.1.3.ebuild,v 1.2 2006/06/28 03:43:41 squinky86 Exp $ DESCRIPTION="watch word program for the GNOME2 desktop (watch word (german): losung)" HOMEPAGE="http://www.godehardt.org/losung.html" SRC_URI="http://www.godehardt.org/download/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" +IUSE="" -KEYWORDS="~x86 ~amd64" +KEYWORDS="amd64 ~x86" RDEPEND=">=gnome-base/gconf-2.0 >=x11-libs/gtk+-2.4 @@ -18,8 +19,16 @@ DEPEND=">=dev-util/scons-0.93 dev-util/pkgconfig >=dev-util/intltool-0.22 >=sys-devel/gettext-0.10 + >=sys-apps/sed-4 ${RDEPEND}" +src_unpack() { + unpack ${A} + cd ${S} + #remove -Werror for updated glibc and gcc + sed -i -e 's:-Werror ::g' SConstruct +} + src_compile() { scons ${MAKEOPTS} || die } |