mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-13 23:30:04 +02:00
30 lines
784 B
Plaintext
30 lines
784 B
Plaintext
DESCRIPTION="libsigc++ is a typesafe callback system for standard C++"
|
|
HOMEPAGE="http://libsigc.sourceforge.net/stable.shtml"
|
|
SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/libsigc++/1.2/libsigc++-1.2.7.tar.gz"
|
|
REVISION="2"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND="dev-cpp/mm-common >= 0.9.2"
|
|
CHECKSUM_MD5="b939751dff0db9652c5dbfc9de685efa"
|
|
BUILD()
|
|
{
|
|
cd libsigc++-1.2.7
|
|
libtoolize --force --copy --install
|
|
aclocal -I scripts
|
|
autoconf
|
|
automake
|
|
./autogen.sh
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make -i
|
|
# There's name make file for tests and examples directories so just ignore (-i)
|
|
# those errors and we really don't need either one
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd libsigc++-1.2.7
|
|
make -i install
|
|
}
|
|
|
|
LICENSE="GNU LGPL v2.1"
|
|
COPYRIGHT="2002, 2003, 2005 The libsigc++ Development Team"
|