summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2007-01-23 19:46:08 +0000
committerFabian Groffen <grobian@gentoo.org>2007-01-23 19:46:08 +0000
commit1db23a8a647a1dbaef60e4a621d420d2b3a7b1b3 (patch)
treeb7f6550961120fd6632acd291ff6efe9ef4f6693 /sys-devel/gettext
parentCleanup (diff)
downloadgentoo-2-1db23a8a647a1dbaef60e4a621d420d2b3a7b1b3.tar.gz
gentoo-2-1db23a8a647a1dbaef60e4a621d420d2b3a7b1b3.tar.bz2
gentoo-2-1db23a8a647a1dbaef60e4a621d420d2b3a7b1b3.zip
Dropped ppc-macos keyword, see you in prefix
(Portage version: 2.1.1-r2)
Diffstat (limited to 'sys-devel/gettext')
-rw-r--r--sys-devel/gettext/ChangeLog8
-rw-r--r--sys-devel/gettext/gettext-0.12.1-r2.ebuild16
-rw-r--r--sys-devel/gettext/gettext-0.14.1-r1.ebuild31
-rw-r--r--sys-devel/gettext/gettext-0.14.2.ebuild37
-rw-r--r--sys-devel/gettext/gettext-0.14.4.ebuild25
-rw-r--r--sys-devel/gettext/gettext-0.14.5.ebuild24
-rw-r--r--sys-devel/gettext/gettext-0.14.6.ebuild36
-rw-r--r--sys-devel/gettext/gettext-0.15-r1.ebuild6
-rw-r--r--sys-devel/gettext/gettext-0.15.ebuild6
-rw-r--r--sys-devel/gettext/gettext-0.16.1.ebuild4
10 files changed, 62 insertions, 131 deletions
diff --git a/sys-devel/gettext/ChangeLog b/sys-devel/gettext/ChangeLog
index 1c3d51517caa..21a26edb3f1a 100644
--- a/sys-devel/gettext/ChangeLog
+++ b/sys-devel/gettext/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-devel/gettext
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/ChangeLog,v 1.137 2007/01/23 12:45:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/ChangeLog,v 1.138 2007/01/23 19:46:08 grobian Exp $
+
+ 23 Jan 2007; Fabian Groffen <grobian@gentoo.org> gettext-0.12.1-r2.ebuild,
+ gettext-0.14.1-r1.ebuild, gettext-0.14.2.ebuild, gettext-0.14.4.ebuild,
+ gettext-0.14.5.ebuild, gettext-0.14.6.ebuild, gettext-0.15.ebuild,
+ gettext-0.15-r1.ebuild, gettext-0.16.1.ebuild:
+ Dropped ppc-macos keyword, see you in prefix
23 Jan 2007; Jeroen Roovers <jer@gentoo.org> gettext-0.16.1.ebuild:
Stable for HPPA (bug #163178).
diff --git a/sys-devel/gettext/gettext-0.12.1-r2.ebuild b/sys-devel/gettext/gettext-0.12.1-r2.ebuild
index e6f7d0500f3c..c1baa777ca15 100644
--- a/sys-devel/gettext/gettext-0.12.1-r2.ebuild
+++ b/sys-devel/gettext/gettext-0.12.1-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.12.1-r2.ebuild,v 1.20 2007/01/05 09:15:35 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.12.1-r2.ebuild,v 1.21 2007/01/23 19:46:08 grobian Exp $
inherit eutils toolchain-funcs libtool
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 ppc-macos s390 sh sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
IUSE="emacs nls"
DEPEND="virtual/libc"
@@ -20,12 +20,11 @@ src_unpack() {
cd ${S}
epunt_cxx
epatch ${FILESDIR}/${P}-tempfile.patch #66355
- use ppc-macos || elibtoolize --reverse-deps
}
src_compile() {
local myconf=""
- use ppc-macos && myconf="--enable-nls" || myconf="`use_enable nls`"
+ myconf="`use_enable nls`"
# Compaq Java segfaults trying to build gettext stuff, and there's
# no good way to tell gettext to refrain from building the java
@@ -65,14 +64,9 @@ src_install() {
doexe gettext-tools/misc/gettextize || die "doexe"
# remove stuff that glibc handles
- if ! use ppc-macos; then
- # these files are not provided on Mac OS X
- rm -f ${D}/usr/include/libintl.h
- rm -f ${D}/usr/$(get_libdir)/libintl.*
- fi
+ rm -f ${D}/usr/include/libintl.h
+ rm -f ${D}/usr/$(get_libdir)/libintl.*
rm -rf ${D}/usr/share/locale/locale.alias
- # /usr/lib/charset.alias is provided by Mac OS X
- use ppc-macos && rm -f ${D}/usr/lib/charset.alias
if [ -d ${D}/usr/doc/gettext ]
then
diff --git a/sys-devel/gettext/gettext-0.14.1-r1.ebuild b/sys-devel/gettext/gettext-0.14.1-r1.ebuild
index e1be30709a0d..0cb2fc9b141d 100644
--- a/sys-devel/gettext/gettext-0.14.1-r1.ebuild
+++ b/sys-devel/gettext/gettext-0.14.1-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.1-r1.ebuild,v 1.5 2007/01/05 09:15:35 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.1-r1.ebuild,v 1.6 2007/01/23 19:46:08 grobian Exp $
inherit eutils toolchain-funcs mono libtool
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc-macos ppc64 s390 sh sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE="emacs nls"
DEPEND=""
@@ -27,11 +27,7 @@ src_unpack() {
epatch "${FILESDIR}"/${P}-without_java.patch
epatch "${FILESDIR}"/${P}-no-java-tests.patch
- if use ppc-macos ; then
- elibtoolize
- else
- elibtoolize --reverse-deps
- fi
+ elibtoolize --reverse-deps
}
src_compile() {
@@ -60,27 +56,16 @@ src_install() {
doexe gettext-tools/misc/gettextize || die "doexe"
# remove stuff that glibc handles
- if ! use ppc-macos; then
- # Mac OS X does not provide these files.
- rm -f ${D}/usr/include/libintl.h
- rm -f ${D}/usr/$(get_libdir)/libintl.*
- fi
+ rm -f ${D}/usr/include/libintl.h
+ rm -f ${D}/usr/$(get_libdir)/libintl.*
rm -rf ${D}/usr/share/locale/locale.alias
# older gettext's sometimes installed libintl ...
# need to keep the linked version or the system
# could die (things like sed link against it :/)
- if use ppc-macos; then
- rm -f ${D}/usr/lib/charset.alias
- if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.2.dylib ] ; then
- cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.2.dylib ${D}/usr/$(get_libdir)/
- touch ${D}/usr/$(get_libdir)/libintl.2.dylib
- fi
- else
- if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.so.2 ] ; then
- cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.so.2* ${D}/usr/$(get_libdir)/
- touch ${D}/usr/$(get_libdir)/libintl.so.2*
- fi
+ if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.so.2 ] ; then
+ cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.so.2* ${D}/usr/$(get_libdir)/
+ touch ${D}/usr/$(get_libdir)/libintl.so.2*
fi
if [ -d ${D}/usr/doc/gettext ]
diff --git a/sys-devel/gettext/gettext-0.14.2.ebuild b/sys-devel/gettext/gettext-0.14.2.ebuild
index f52a0019bdbe..5427fa4cc672 100644
--- a/sys-devel/gettext/gettext-0.14.2.ebuild
+++ b/sys-devel/gettext/gettext-0.14.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.2.ebuild,v 1.8 2006/03/09 23:49:18 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.2.ebuild,v 1.9 2007/01/23 19:46:08 grobian Exp $
inherit flag-o-matic eutils toolchain-funcs mono libtool elisp-common
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="emacs nls"
DEPEND=""
@@ -42,12 +42,7 @@ src_unpack() {
gettext-tools/examples/installpaths.in \
|| die "sed docdir"
- if use ppc-macos ; then
- glibtoolize
- append-flags -bind_at_load
- else
- elibtoolize --reverse-deps
- fi
+ elibtoolize --reverse-deps
}
src_compile() {
@@ -73,31 +68,19 @@ src_install() {
doexe gettext-tools/misc/gettextize || die "doexe"
# remove stuff that glibc handles
- if ! use ppc-macos; then
- # Mac OS X does not provide these files.
- rm -f ${D}/usr/include/libintl.h
- rm -f ${D}/usr/$(get_libdir)/libintl.*
- fi
+ rm -f ${D}/usr/include/libintl.h
+ rm -f ${D}/usr/$(get_libdir)/libintl.*
rm -rf ${D}/usr/share/locale/locale.alias
# older gettext's sometimes installed libintl ...
# need to keep the linked version or the system
# could die (things like sed link against it :/)
- if use ppc-macos; then
- rm -f ${D}/usr/lib/charset.alias
- if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.2.dylib ] ; then
- cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.2.dylib ${D}/usr/$(get_libdir)/
- touch ${D}/usr/$(get_libdir)/libintl.2.dylib
- fi
- else
- if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.so.2 ] ; then
- cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.so.2* ${D}/usr/$(get_libdir)/
- touch ${D}/usr/$(get_libdir)/libintl.so.2*
- fi
+ if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.so.2 ] ; then
+ cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.so.2* ${D}/usr/$(get_libdir)/
+ touch ${D}/usr/$(get_libdir)/libintl.so.2*
fi
- if [ -d ${D}/usr/doc/gettext ]
- then
+ if [ -d ${D}/usr/doc/gettext ] ; then
mv ${D}/usr/doc/gettext ${D}/usr/share/doc/${PF}/html
rm -rf ${D}/usr/doc
fi
diff --git a/sys-devel/gettext/gettext-0.14.4.ebuild b/sys-devel/gettext/gettext-0.14.4.ebuild
index a45290cbe022..87a355f718ad 100644
--- a/sys-devel/gettext/gettext-0.14.4.ebuild
+++ b/sys-devel/gettext/gettext-0.14.4.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.4.ebuild,v 1.15 2006/03/09 23:49:18 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.4.ebuild,v 1.16 2007/01/23 19:46:08 grobian Exp $
inherit flag-o-matic eutils toolchain-funcs mono libtool elisp-common
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc-macos ppc64 s390 sh sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
IUSE="emacs nls doc"
DEPEND="|| ( sys-libs/glibc dev-libs/libiconv )"
@@ -41,11 +41,6 @@ src_unpack() {
gettext-tools/configure \
gettext-tools/examples/installpaths.in \
|| die "sed docdir"
-
- if use ppc-macos ; then
- glibtoolize
- append-flags -bind_at_load
- fi
}
src_compile() {
@@ -81,17 +76,9 @@ src_install() {
# older gettext's sometimes installed libintl ...
# need to keep the linked version or the system
# could die (things like sed link against it :/)
- if use ppc-macos; then
- rm -f "${D}"/usr/lib/charset.alias
- if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.2.dylib ] ; then
- cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.2.dylib ${D}/usr/$(get_libdir)/
- touch ${D}/usr/$(get_libdir)/libintl.2.dylib
- fi
- else
- if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.so.2 ] ; then
- cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.so.2* ${D}/usr/$(get_libdir)/
- touch ${D}/usr/$(get_libdir)/libintl.so.2*
- fi
+ if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.so.2 ] ; then
+ cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.so.2* ${D}/usr/$(get_libdir)/
+ touch ${D}/usr/$(get_libdir)/libintl.so.2*
fi
if ! use doc ; then
diff --git a/sys-devel/gettext/gettext-0.14.5.ebuild b/sys-devel/gettext/gettext-0.14.5.ebuild
index 89d0940de9dc..537593732514 100644
--- a/sys-devel/gettext/gettext-0.14.5.ebuild
+++ b/sys-devel/gettext/gettext-0.14.5.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.5.ebuild,v 1.18 2006/09/04 05:59:29 kumba Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.5.ebuild,v 1.19 2007/01/23 19:46:08 grobian Exp $
inherit flag-o-matic eutils toolchain-funcs mono libtool elisp-common
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc-macos ppc64 s390 sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="emacs nls doc nocxx"
DEPEND="virtual/libiconv"
@@ -42,11 +42,6 @@ src_unpack() {
gettext-tools/examples/installpaths.in \
|| die "sed docdir"
- if use ppc-macos ; then
- glibtoolize
- append-flags -bind_at_load
- fi
-
# sanity check for Bug 105304
if [[ -z ${USERLAND} ]] ; then
eerror "You just hit Bug 105304, please post your 'emerge info' here:"
@@ -88,16 +83,9 @@ src_install() {
# older gettext's sometimes installed libintl ...
# need to keep the linked version or the system
# could die (things like sed link against it :/)
- if use ppc-macos; then
- if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.2.dylib ] ; then
- cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.2.dylib ${D}/usr/$(get_libdir)/
- touch "${D}"/usr/$(get_libdir)/libintl.2.dylib
- fi
- else
- if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.so.2 ] ; then
- cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.so.2* ${D}/usr/$(get_libdir)/
- touch "${D}"/usr/$(get_libdir)/libintl.so.2*
- fi
+ if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.so.2 ] ; then
+ cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.so.2* ${D}/usr/$(get_libdir)/
+ touch "${D}"/usr/$(get_libdir)/libintl.so.2*
fi
if ! use doc ; then
diff --git a/sys-devel/gettext/gettext-0.14.6.ebuild b/sys-devel/gettext/gettext-0.14.6.ebuild
index 588e976b5f46..c8f5966aa148 100644
--- a/sys-devel/gettext/gettext-0.14.6.ebuild
+++ b/sys-devel/gettext/gettext-0.14.6.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.6.ebuild,v 1.3 2006/07/21 18:38:09 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.6.ebuild,v 1.4 2007/01/23 19:46:08 grobian Exp $
inherit flag-o-matic eutils toolchain-funcs mono libtool elisp-common
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="emacs nls doc nocxx"
DEPEND="virtual/libiconv"
@@ -42,11 +42,6 @@ src_unpack() {
gettext-tools/examples/installpaths.in \
|| die "sed docdir"
- if use ppc-macos ; then
- glibtoolize
- append-flags -bind_at_load
- fi
-
# sanity check for Bug 105304
if [[ -z ${USERLAND} ]] ; then
eerror "You just hit Bug 105304, please post your 'emerge info' here:"
@@ -88,22 +83,15 @@ src_install() {
# older gettext's sometimes installed libintl ...
# need to keep the linked version or the system
# could die (things like sed link against it :/)
- if use ppc-macos; then
- if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.2.dylib ] ; then
- cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.2.dylib ${D}/usr/$(get_libdir)/
- touch "${D}"/usr/$(get_libdir)/libintl.2.dylib
- fi
- else
- if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.so.2 ] ; then
- cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.so.2* ${D}/usr/$(get_libdir)/
- touch "${D}"/usr/$(get_libdir)/libintl.so.2*
- fi
- if ! use elibc_glibc; then
- # Move dynamic libs and creates ldscripts into /usr/lib
- dodir /$(get_libdir)
- mv "${D}"/usr/$(get_libdir)/libintl.so* "${D}/$(get_libdir)"
- gen_usr_ldscript libintl.so
- fi
+ if [ -e "${ROOT}"/usr/$(get_libdir)/libintl.so.2 ] ; then
+ cp -pPR ${ROOT}/usr/$(get_libdir)/libintl.so.2* ${D}/usr/$(get_libdir)/
+ touch "${D}"/usr/$(get_libdir)/libintl.so.2*
+ fi
+ if ! use elibc_glibc; then
+ # Move dynamic libs and creates ldscripts into /usr/lib
+ dodir /$(get_libdir)
+ mv "${D}"/usr/$(get_libdir)/libintl.so* "${D}/$(get_libdir)"
+ gen_usr_ldscript libintl.so
fi
if ! use doc ; then
diff --git a/sys-devel/gettext/gettext-0.15-r1.ebuild b/sys-devel/gettext/gettext-0.15-r1.ebuild
index eb2f7d6f65d7..009f946d5fb9 100644
--- a/sys-devel/gettext/gettext-0.15-r1.ebuild
+++ b/sys-devel/gettext/gettext-0.15-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.15-r1.ebuild,v 1.4 2006/12/30 00:58:40 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.15-r1.ebuild,v 1.5 2007/01/23 19:46:08 grobian Exp $
inherit flag-o-matic eutils multilib toolchain-funcs mono libtool elisp-common
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="emacs nls doc nocxx"
DEPEND="virtual/libiconv
diff --git a/sys-devel/gettext/gettext-0.15.ebuild b/sys-devel/gettext/gettext-0.15.ebuild
index cb89105212ae..026f6fb6b213 100644
--- a/sys-devel/gettext/gettext-0.15.ebuild
+++ b/sys-devel/gettext/gettext-0.15.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.15.ebuild,v 1.19 2006/12/30 00:58:40 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.15.ebuild,v 1.20 2007/01/23 19:46:08 grobian Exp $
inherit flag-o-matic eutils multilib toolchain-funcs mono libtool elisp-common
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc-macos ppc64 s390 sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="emacs nls doc nocxx"
DEPEND="virtual/libiconv"
diff --git a/sys-devel/gettext/gettext-0.16.1.ebuild b/sys-devel/gettext/gettext-0.16.1.ebuild
index 6e9a90e0eba3..817437f3b1c8 100644
--- a/sys-devel/gettext/gettext-0.16.1.ebuild
+++ b/sys-devel/gettext/gettext-0.16.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.16.1.ebuild,v 1.6 2007/01/23 12:45:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.16.1.ebuild,v 1.7 2007/01/23 19:46:08 grobian Exp $
inherit flag-o-matic eutils multilib toolchain-funcs mono libtool elisp-common
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc-macos ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="emacs nls doc nocxx"
DEPEND="virtual/libiconv