diff options
author | joerg <joerg@pkgsrc.org> | 2006-10-09 12:52:34 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-10-09 12:52:34 +0000 |
commit | 9cd6e22331a6f233c5162012777ffeb82a685274 (patch) | |
tree | 394404a5282788a08d7e1183cc0f35c1b517e24d /graphics/Mesa | |
parent | 0ac48ab1020b11885d226658a380f69aa3367aa4 (diff) | |
download | pkgsrc-9cd6e22331a6f233c5162012777ffeb82a685274.tar.gz |
Flag a number of packages I use as supporting (user-)destdir.
apg is a bit special as it has some hardcoded ownership, so
mark that as "destdir".
Diffstat (limited to 'graphics/Mesa')
-rw-r--r-- | graphics/Mesa/Makefile.common | 4 | ||||
-rw-r--r-- | graphics/Mesa/Makefile.lib | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/graphics/Mesa/Makefile.common b/graphics/Mesa/Makefile.common index 33d1b0f2d7d..35e6c9530ed 100644 --- a/graphics/Mesa/Makefile.common +++ b/graphics/Mesa/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.52 2006/08/01 21:40:19 jlam Exp $ +# $NetBSD: Makefile.common,v 1.53 2006/10/09 12:52:35 joerg Exp $ # # This Makefile fragment is included either directly or indirectly (through # Makefile.lib) by all packages that are built from the Mesa sources. @@ -21,6 +21,8 @@ MESA_VERSION= 6.4.2 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.mesa3d.org/ +PKG_DESTDIR_SUPPORT= user-destdir + WRKSRC= ${WRKDIR}/Mesa-${MESA_VERSION} BUILDING_MESA= yes NO_CONFIGURE= yes diff --git a/graphics/Mesa/Makefile.lib b/graphics/Mesa/Makefile.lib index 4aeb06e573a..10ab059b885 100644 --- a/graphics/Mesa/Makefile.lib +++ b/graphics/Mesa/Makefile.lib @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.lib,v 1.1 2006/08/01 21:40:19 jlam Exp $ +# $NetBSD: Makefile.lib,v 1.2 2006/10/09 12:52:35 joerg Exp $ # # This Makefile fragment is included by all packages that build libraries # from the Mesa sources. @@ -48,5 +48,5 @@ Mesa-install-libs: @for lib in "" ${INSTLIBS}; do \ ${TEST} -n "$$lib" || continue; \ ${LIBTOOL} --mode=install ${INSTALL_LIB} \ - $$lib ${PREFIX}/lib; \ + $$lib ${DESTDIR}${PREFIX}/lib; \ done |