diff options
author | jlam <jlam@pkgsrc.org> | 2008-03-03 19:21:37 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2008-03-03 19:21:37 +0000 |
commit | 06d9c7dce41f5c7499b62388c5645696eb42c1a4 (patch) | |
tree | c5e0c30c0b353fd2092305665ed106c2ef4ca346 /emulators/uae | |
parent | d21f8cb7ef167c68991b38b87d2a2d12b1189509 (diff) | |
download | pkgsrc-06d9c7dce41f5c7499b62388c5645696eb42c1a4.tar.gz |
Mechanical changes to add DESTDIR support to packages that install
their files via a custom do-install target.
Diffstat (limited to 'emulators/uae')
-rw-r--r-- | emulators/uae/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/emulators/uae/Makefile b/emulators/uae/Makefile index 319a29e2505..d4c33798e38 100644 --- a/emulators/uae/Makefile +++ b/emulators/uae/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2007/04/06 06:03:08 wiz Exp $ +# $NetBSD: Makefile,v 1.48 2008/03/03 19:21:38 jlam Exp $ DISTNAME= uae-0.8.25 PKGREVISION= 3 @@ -12,6 +12,8 @@ COMMENT= The UAE Amiga Emulator DEPENDS+= unzip>=5.40:../../archivers/unzip +PKG_DESTDIR_SUPPORT= user-destdir + USE_TOOLS+= gmake pkg-config GNU_CONFIGURE= yes @@ -26,10 +28,10 @@ CONFIGURE_ENV+= cv_func_getmntinfo=yes fu_cv_sys_mounted_getmntinfo=yes INSTALLATION_DIRS= bin do-install: - cd ${WRKSRC} && ${INSTALL_PROGRAM} readdisk uae ${PREFIX}/bin - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/uae + cd ${WRKSRC} && ${INSTALL_PROGRAM} readdisk uae ${DESTDIR}${PREFIX}/bin + ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/uae cd ${WRKSRC}/docs && ${INSTALL_DATA} FAQ README \ - ${PREFIX}/share/doc/uae + ${DESTDIR}${PREFIX}/share/doc/uae BUILDLINK_DEPMETHOD.libXt?= build |