You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
67 lines
1.8 KiB
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-1.2.10-r5.ebuild,v 1.57 2013/04/30 14:29:12 tetromino Exp $
|
|
|
|
EAPI="4"
|
|
|
|
inherit autotools libtool flag-o-matic eutils portability
|
|
|
|
DESCRIPTION="The GLib library of C routines"
|
|
HOMEPAGE="http://www.gtk.org/"
|
|
SRC_URI="ftp://ftp.gtk.org/pub/gtk/v1.2/${P}.tar.gz
|
|
ftp://ftp.gnome.org/pub/GNOME/stable/sources/glib/${P}.tar.gz
|
|
mirror://gentoo/glib-1.2.10-r1-as-needed.patch.bz2"
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="1"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
|
|
IUSE="hardened"
|
|
|
|
DEPEND=""
|
|
RDEPEND=""
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-automake.patch
|
|
epatch "${FILESDIR}"/${P}-m4.patch
|
|
epatch "${FILESDIR}"/${P}-configure-LANG.patch #133679
|
|
|
|
# Allow glib to build with gcc-3.4.x #47047
|
|
epatch "${FILESDIR}"/${P}-gcc34-fix.patch
|
|
|
|
# Fix for -Wl,--as-needed (bug #133818)
|
|
epatch "${DISTDIR}"/glib-1.2.10-r1-as-needed.patch.bz2
|
|
|
|
# build failure with automake-1.13
|
|
epatch "${FILESDIR}/${P}-automake-1.13.patch"
|
|
|
|
use ppc64 && use hardened && replace-flags -O[2-3] -O1
|
|
append-ldflags $(dlopen_lib)
|
|
|
|
rm -f acinclude.m4 #168198
|
|
eautoreconf
|
|
elibtoolize
|
|
}
|
|
|
|
src_configure() {
|
|
# Bug 48839: pam fails to build on ia64
|
|
# The problem is that it attempts to link a shared object against
|
|
# libglib.a; this library needs to be built with -fPIC. Since
|
|
# this package doesn't contain any significant binaries, build the
|
|
# whole thing with -fPIC (23 Apr 2004 agriffis)
|
|
append-flags -fPIC
|
|
|
|
econf \
|
|
--with-threads=posix \
|
|
--enable-debug=yes
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
dodoc AUTHORS ChangeLog README* INSTALL NEWS
|
|
dohtml -r docs
|
|
|
|
cd "${D}"/usr/$(get_libdir) || die
|
|
chmod 755 libgmodule-1.2.so.*
|
|
}
|