[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / pkgsrc / x11 / pixman

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /pkgsrc/x11/pixman/Makefile between version 1.17 and 1.18

version 1.17, 2008/07/18 19:03:32 version 1.18, 2008/09/06 20:09:15
Line 1 
Line 1 
 # $NetBSD$  # $NetBSD$
 #  #
   
 DISTNAME=       pixman-0.11.8  DISTNAME=       pixman-0.11.10
 PKGREVISION=    1  
 CATEGORIES=     x11  CATEGORIES=     x11
 MASTER_SITES=   ${MASTER_SITE_XORG:=lib/}  MASTER_SITES=   ${MASTER_SITE_XORG:=lib/}
 EXTRACT_SUFX=   .tar.bz2  EXTRACT_SUFX=   .tar.bz2
Line 15  PKG_DESTDIR_SUPPORT= user-destdir
Line 14  PKG_DESTDIR_SUPPORT= user-destdir
   
 GNU_CONFIGURE=  yes  GNU_CONFIGURE=  yes
 USE_LIBTOOL=    yes  USE_LIBTOOL=    yes
 USE_TOOLS+=     pkg-config perl  USE_TOOLS+=     pkg-config perl diff awk
   ###
 CONFIGURE_ENV+= AUTOMAKE=${TRUE:Q}      # XXX quiet!  ### XXX Quiet, please!
   ###
   .if empty(USE_TOOLS:Mauto*)
   CONFIGURE_ENV+= AUTOCONF=true
   CONFIGURE_ENV+= AUTOHEADER=true
   CONFIGURE_ENV+= ACLOCAL=true
   CONFIGURE_ENV+= AUTOMAKE=${TRUE:Q}
   .endif
   
 PKGCONFIG_OVERRIDE+=    pixman-1.pc.in  PKGCONFIG_OVERRIDE+=    pixman-1.pc.in
 PKGCONFIG_OVERRIDE+=    pixman-1-uninstalled.pc.in  PKGCONFIG_OVERRIDE+=    pixman-1-uninstalled.pc.in
Line 27  PKGCONFIG_OVERRIDE+= pixman-1-uninstalle
Line 33  PKGCONFIG_OVERRIDE+= pixman-1-uninstalle
 ###     tradition of portability, we'll opt to use libtool to export  ###     tradition of portability, we'll opt to use libtool to export
 ###     the desired symbols, hiding the rest.  ###     the desired symbols, hiding the rest.
 ###  ###
 ###     I have verified the list of visible symbols is unchanged from  ###     To regenerate the libtool symfile, invoke the 'gen-symfile'
 ###     the "factory" build.  ###     target, making sure to define PKG_DEVELOPER.  This target
   ###     requires nm, awk, and tee.  The new symfile will be in
   ###     ${WRKDIR}.
 ###  ###
 MAKE_ENV+=      PIXMAN_SYMFILE=${PIXMAN_SYMFILE:Q}  MAKE_ENV+=      PIXMAN_SYMFILE=${PIXMAN_SYMFILE:Q}
 PIXMAN_SYMFILE= ${WRKDIR}/pixman.sym  PIXMAN_SYMFILE= ${WRKDIR}/pixman.sym
   
 .include "../../mk/compiler.mk"  
   
 .if !empty(PKGSRC_COMPILER:Msunpro) || empty(CC_VERSION:Mgcc-4.1*)  
 CONFIGURE_ARGS+=        --disable-sse2  
 .endif  
   
 post-extract:  post-extract:
         ${CP} ${FILESDIR}/pixman.sym ${WRKDIR}          ${CP} ${FILESDIR}/pixman.sym ${WRKDIR}
   
   .if defined(NM) && defined(PKG_DEVELOPER)
   gen-symfile: build
           ${NM} -DP ${WRKSRC}/pixman/.libs/libpixman-1.so |       \
           ${AWK} '/^pixman/ { print $$1 }' |                      \
           ${TOOLS_PLATFORM.tee} > ${WRKDIR}/pixman.sym &&         \
           ${DIFF} ${FILESDIR}/pixman.sym ${WRKDIR}/pixman.sym
   .endif
   
 .include "../../mk/bsd.pkg.mk"  .include "../../mk/bsd.pkg.mk"

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

CVSweb <webmaster@jp.NetBSD.org>