diff options
author | joerg <joerg@pkgsrc.org> | 2009-07-07 21:43:58 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-07-07 21:43:58 +0000 |
commit | 73d56ac6e5eb79cd164f3eb593a4b97276edc5e6 (patch) | |
tree | c89239bbb65cd7408ac2258f19267e6539ddf34b /textproc | |
parent | d9ae356e5240390120a33ab8d2f7c273f0710a5a (diff) | |
download | pkgsrc-73d56ac6e5eb79cd164f3eb593a4b97276edc5e6.tar.gz |
user-destdir support
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/itex2MML/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/textproc/itex2MML/Makefile b/textproc/itex2MML/Makefile index c46c0fe3050..493362f509e 100644 --- a/textproc/itex2MML/Makefile +++ b/textproc/itex2MML/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2007/06/29 23:08:12 minskim Exp $ +# $NetBSD: Makefile,v 1.4 2009/07/07 21:43:58 joerg Exp $ DISTNAME= itexToMML PKGNAME= itex2MML-1.2.3 @@ -9,6 +9,8 @@ MAINTAINER= minskim@NetBSD.org HOMEPAGE= http://golem.ph.utexas.edu/~distler/blog/itex2MML.html COMMENT= Converts itex equations to MathML +PKG_DESTDIR_SUPPORT= user-destdir + USE_LANGUAGES= c c++ USE_TOOLS+= bison flex WRKSRC= ${WRKDIR}/${DISTNAME}/itex-src @@ -18,6 +20,6 @@ DIST_SUBDIR= ${PKGNAME_NOREV} INSTALLATION_DIRS= bin do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/itex2MML ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/itex2MML ${DESTDIR}${PREFIX}/bin .include "../../mk/bsd.pkg.mk" |