41 lines
1,004 B
Makefile
41 lines
1,004 B
Makefile
# $NetBSD: Makefile,v 1.4 2009/08/20 17:59:10 joerg Exp $
|
|
#
|
|
|
|
DISTNAME= libXp-1.0.0
|
|
CATEGORIES= x11 print
|
|
MASTER_SITES= ${MASTER_SITE_XORG:=lib/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= http://xorg.freedesktop.org/
|
|
COMMENT= X Print Service Extension Library
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ENV+= LIB_MAN_SUFFIX=3
|
|
PKGCONFIG_OVERRIDE+= xp.pc.in
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "NetBSD"
|
|
CONFIGURE_ARGS+= --disable-malloc0returnsnull
|
|
.endif
|
|
|
|
.if ${X11_TYPE} == "native"
|
|
XPRINT_CFLAGS= -I${X11BASE}/include
|
|
XPRINT_LIBS= -Wl,-rpath,${X11BASE}/lib -L${X11BASE}/lib -lX11 -lXext -lXau
|
|
|
|
CONFIGURE_ARGS+= XPRINT_CFLAGS=${XPRINT_CFLAGS:Q} \
|
|
XPRINT_LIBS=${XPRINT_LIBS:Q}
|
|
.endif
|
|
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/printproto/buildlink3.mk"
|
|
.include "../../x11/xextproto/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|