diff options
author | Mike Gardiner <obz@gentoo.org> | 2004-12-19 05:49:30 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2004-12-19 05:49:30 +0000 |
commit | 9d21673438a956bb1457b6aa1418cb4b2491f44f (patch) | |
tree | 268c7a5ecc48036cdb7e4f135afc058c1c3cb335 /dev-libs | |
parent | Stable amd64, sparc, x86. (Manifest recommit) (diff) | |
download | gentoo-2-9d21673438a956bb1457b6aa1418cb4b2491f44f.tar.gz gentoo-2-9d21673438a956bb1457b6aa1418cb4b2491f44f.tar.bz2 gentoo-2-9d21673438a956bb1457b6aa1418cb4b2491f44f.zip |
Bringing 2.4.2 back from the dead - for ppc64
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/glib/files/digest-glib-2.4.2 | 1 | ||||
-rw-r--r-- | dev-libs/glib/glib-2.4.2.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/dev-libs/glib/files/digest-glib-2.4.2 b/dev-libs/glib/files/digest-glib-2.4.2 new file mode 100644 index 000000000000..6133e96d61fb --- /dev/null +++ b/dev-libs/glib/files/digest-glib-2.4.2 @@ -0,0 +1 @@ +MD5 038b7cf535cbe016c6bb6033dbcf9acf glib-2.4.2.tar.bz2 2043583 diff --git a/dev-libs/glib/glib-2.4.2.ebuild b/dev-libs/glib/glib-2.4.2.ebuild new file mode 100644 index 000000000000..2398e028d5a6 --- /dev/null +++ b/dev-libs/glib/glib-2.4.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.4.2.ebuild,v 1.6 2004/12/19 05:49:30 obz Exp $ + +inherit libtool + +DESCRIPTION="The GLib library of C routines" +HOMEPAGE="http://www.gtk.org/" +SRC_URI="ftp://ftp.gtk.org/pub/gtk/v2.4/${P}.tar.bz2" + +LICENSE="LGPL-2" +SLOT="2" +KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64 ppc64 ~s390" +IUSE="doc" + +DEPEND=">=dev-util/pkgconfig-0.14 + >=sys-devel/gettext-0.11 + doc? ( !s390? ( >=dev-util/gtk-doc-1 ) )" + +RDEPEND="virtual/libc" + +src_compile() { + + elibtoolize + + econf \ + --with-threads=posix \ + `use_enable doc gtk-doc` \ + || die + + emake || die + +} + +src_install() { + + # einstall || die + make DESTDIR=${D} install || die + + # Consider invalid UTF-8 filenames as locale-specific. + # FIXME : we should probably move to suggesting G_FILENAME_ENC + dodir /etc/env.d + echo "G_BROKEN_FILENAMES=1" > ${D}/etc/env.d/50glib2 + + dodoc AUTHORS ChangeLog* README* INSTALL NEWS* + +} |