Since SUNOS has presented slab allocation theroy, many OSs have changed their own memory allocator into slab. But it requires kernel-layer interfaces such as page supply etc. So this library improves slab's algorithm and brings the interfaces of slab into application layer:
30 lines
884 B
Makefile
30 lines
884 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/05/03 14:57:45 jihbed Exp $
|
|
#
|
|
|
|
DISTNAME= libslab-2.30.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.gnome.org/pub/gnome/sources/libslab/2.30/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= kamel.derouiche@gmail.com
|
|
HOMEPAGE= http://code.google.com/p/libslab/
|
|
COMMENT= Slab memory allocator in application layer
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config intltool
|
|
|
|
PKGCONFIG_OVERRIDE+= libslab.pc.in
|
|
|
|
.include "../../devel/GConf/schemas.mk"
|
|
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.18.0
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../graphics/librsvg/buildlink3.mk"
|
|
.include "../../sysutils/gnome-menus/buildlink3.mk"
|
|
.include "../../x11/gnome-desktop/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.gtk2+= gtk2+>=2.14.0
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|