mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-20 10:40:05 +02:00
38 lines
911 B
Plaintext
38 lines
911 B
Plaintext
DESCRIPTION="glib"
|
|
HOMEPAGE="http://www.gtk.org/"
|
|
SRC_URI="http://ftp.gnome.org/pub/gnome/sources/glib/2.26/glib-2.26.1.tar.gz"
|
|
CHECKSUM_MD5="2634337609e747fc7946517e3008d53c"
|
|
REVISION="1"
|
|
STATUS_HAIKU="broken"
|
|
DEPEND="dev-libs/pkgconfig >= 0.23
|
|
sys-devel/gettext >= 0.17"
|
|
BUILD()
|
|
{
|
|
cd glib-2.26.1
|
|
rm -rf aclocal.m4
|
|
mkdir -p m4
|
|
cp ../../gtk-doc.m4 m4
|
|
libtoolize --force --copy --install
|
|
aclocal --install -I m4
|
|
autoconf
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd glib-2.26.1
|
|
make install
|
|
}
|
|
|
|
LICENSE="GNU LGPL v2"
|
|
COPYRIGHT="1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
1991-2003 Free Software Foundation, Inc.
|
|
1997-2006 University of Cambridge.
|
|
1998-2001, 2003-2010 Red Hat, Inc.
|
|
2007-2009 Nokia Corporation
|
|
2008, 2010 Oracle and/or its affiliates, Inc. All rights
|
|
2008-2010 Codethink Limited
|
|
2008-2010 Collabora Ltd.
|
|
1995-2010 Several others"
|