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/aliados | |
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/aliados')
-rw-r--r-- | emulators/aliados/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emulators/aliados/Makefile b/emulators/aliados/Makefile index 464cc69c69b..09cc603a88b 100644 --- a/emulators/aliados/Makefile +++ b/emulators/aliados/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2005/04/11 21:45:42 tv Exp $ +# $NetBSD: Makefile,v 1.3 2008/03/03 19:21:37 jlam Exp $ # DISTNAME= aliados-0.1.1 @@ -11,6 +11,7 @@ HOMEPAGE= http://www.arrakis.es/~ninsesabe/aliados/ COMMENT= CP/M 80 emulator PKG_INSTALLATION_TYPES= overwrite pkgviews +PKG_DESTDIR_SUPPORT= user-destdir NO_CONFIGURE= YES USE_LANGUAGES= c++ @@ -19,7 +20,7 @@ USE_NCURSES= # tigetstr tparm setupterm INSTALLATION_DIRS= bin do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/aliados ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/aliados ${DESTDIR}${PREFIX}/bin .include "../../devel/ncurses/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |