blob: 3a5609a19776834eeb01f05ec67a5d137992496d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# $NetBSD: Makefile,v 1.16 2008/04/11 16:58:47 drochner Exp $
#
DISTNAME= liboil-0.3.14
CATEGORIES= devel
MASTER_SITES= http://liboil.freedesktop.org/download/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://liboil.freedesktop.org/wiki/
COMMENT= Library of simple, CPU-optimized functions
GNU_CONFIGURE= yes
USE_FEATURES= asprintf
USE_LIBTOOL= yes
CONFIGURE_ARGS+= --disable-glib # Only used by examples.
#CONFIGURE_ARGS+= --enable-debug
PKGCONFIG_OVERRIDE+= liboil-uninstalled.pc.in
PKGCONFIG_OVERRIDE+= liboil.pc.in
TEST_TARGET= check
.include "../../mk/bsd.prefs.mk"
.if !empty(MACHINE_PLATFORM:MSunOS-5.8-*)
SUBST_CLASSES+= solaris
SUBST_STAGE.solaris= pre-configure
SUBST_MESSAGE.solaris= Replacing <stdint.h> with <inttypes.h>
SUBST_FILES.solaris= liboil/*.h
SUBST_SED.solaris= -e 's,<stdint\.h>,<inttypes.h>,'
.endif
.include "../../mk/bsd.pkg.mk"
|