diff options
author | obache <obache@pkgsrc.org> | 2011-03-21 08:56:40 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-03-21 08:56:40 +0000 |
commit | 507b57855ea312ade30bdf62c552c02d21804425 (patch) | |
tree | 687bc7665d86e3aacc4ea85e03cfefb171b84b74 /devel | |
parent | 4b805b787293d0dd33d57909036e2d4eef3b6e8f (diff) | |
download | pkgsrc-507b57855ea312ade30bdf62c552c02d21804425.tar.gz |
Add user-destdir installation support.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/ruby-eet/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/devel/ruby-eet/Makefile b/devel/ruby-eet/Makefile index b4eeebeecbd..6bb44fb871f 100644 --- a/devel/ruby-eet/Makefile +++ b/devel/ruby-eet/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2011/02/21 16:01:13 taca Exp $ +# $NetBSD: Makefile,v 1.9 2011/03/21 08:56:40 obache Exp $ DISTNAME= ruby-eet-0.1.4 PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/ruby-//} @@ -11,6 +11,8 @@ HOMEPAGE= http://code-monkey.de/pages/ruby-eet COMMENT= Ruby module to read and write EET files LICENSE= mit +PKG_DESTDIR_SUPPORT= user-destdir + RUBY_VERSION_SUPPORTED= 18 USE_RAKE= YES @@ -20,9 +22,9 @@ USE_TOOLS+= pkg-config .include "../../lang/ruby/modules.mk" do-build: - cd ${WRKSRC} && ${RAKE} + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${RAKE} do-install: - cd ${WRKSRC} && ${RAKE} install + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${INSTALL_ENV} ${RAKE} install .include "../../mk/bsd.pkg.mk" |