From: Chris Larson Date: Fri, 2 Jul 2004 23:10:57 +0000 (+0000) Subject: BUGFIX: current xext cvs includes man pages, so we need to set mandir in the staging... X-Git-Tag: Release-2010-05/1~18411 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d74eddec1aa1361e2e86d7f3ca5eb02d4e0e2cb3;p=openembedded.git BUGFIX: current xext cvs includes man pages, so we need to set mandir in the staging population. BKrev: 40e5eb81TkNuHw1Mj2mP2qqXLoCH3Q --- diff --git a/xext/xext_cvs.oe b/xext/xext_cvs.oe index e69de29bb2..c2fc7e7332 100644 --- a/xext/xext_cvs.oe +++ b/xext/xext_cvs.oe @@ -0,0 +1,19 @@ +PV = "0.0cvs${CVSDATE}" +DESCRIPTION = "X Server Extension library" +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "xproto x11 xextensions" + +SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=Xext" +S = "${WORKDIR}/Xext" + +inherit autotools pkgconfig + +do_stage() { + oe_runmake install prefix=${STAGING_DIR} \ + bindir=${STAGING_BINDIR} \ + includedir=${STAGING_INCDIR} \ + libdir=${STAGING_LIBDIR} \ + datadir=${STAGING_DATADIR} \ + mandir=${STAGING_DATADIR}/man +}