diff options
author | heinz <heinz> | 2008-01-04 23:20:56 +0000 |
---|---|---|
committer | heinz <heinz> | 2008-01-04 23:20:56 +0000 |
commit | f5c61da95befa9bde0be2f9baa4e4f14c487fa65 (patch) | |
tree | eb08c91f24e305c481f675cf2f6bf018733991c5 /editors | |
parent | 7dcc5dd8c1fa89bb03a8a1ef4c36ccb7e2f68308 (diff) | |
download | pkgsrc-f5c61da95befa9bde0be2f9baa4e4f14c487fa65.tar.gz |
Added support for installation to DESTDIR.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/manedit/Makefile | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/editors/manedit/Makefile b/editors/manedit/Makefile index 5447ed425ff..6e4bee3a3e6 100644 --- a/editors/manedit/Makefile +++ b/editors/manedit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2007/12/10 01:14:41 obache Exp $ +# $NetBSD: Makefile,v 1.30 2008/01/04 23:20:56 heinz Exp $ # DISTNAME= manedit-0.8.1 @@ -11,6 +11,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://wolfpack.twu.net/ManEdit/ COMMENT= UNIX Manual (man, manpage) page editor, viewer, and browser for X11 +PKG_DESTDIR_SUPPORT= user-destdir + WRKSRC= ${WRKDIR}/${DISTNAME}/manedit USE_LANGUAGES= c c++ @@ -23,18 +25,20 @@ MAKE_FILE= Makefile.FreeBSD INSTALLATION_DIRS_FROM_PLIST= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/manedit ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/utils/manview.sh ${PREFIX}/bin/manview - ${INSTALL_SCRIPT} ${WRKSRC}/utils/manwrap.sh ${PREFIX}/bin/manwrap - ${INSTALL_MAN} ${WRKSRC}/manedit.1 ${PREFIX}/${PKGMANDIR}/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/manedit ${DESTDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/utils/manview.sh \ + ${DESTDIR}${PREFIX}/bin/manview + ${INSTALL_SCRIPT} ${WRKSRC}/utils/manwrap.sh \ + ${DESTDIR}${PREFIX}/bin/manwrap + ${INSTALL_MAN} ${WRKSRC}/manedit.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 ${INSTALL_MAN} ${WRKSRC}/help/manpage_writing_procedures \ - ${PREFIX}/${PKGMANDIR}/man7/manpage_writing_procedures.7 + ${DESTDIR}${PREFIX}/${PKGMANDIR}/man7/manpage_writing_procedures.7 ${INSTALL_MAN} ${WRKSRC}/help/manpage_xml_reference \ - ${PREFIX}/${PKGMANDIR}/man7/manpage_xml_reference.7 + ${DESTDIR}${PREFIX}/${PKGMANDIR}/man7/manpage_xml_reference.7 cd ${WRKSRC}/templates && ${INSTALL_DATA} *.mpt \ - ${PREFIX}/share/manedit/templates + ${DESTDIR}${PREFIX}/share/manedit/templates cd ${WRKSRC} && ${INSTALL_DATA} manedit.xpm \ - ${PREFIX}/share/manedit/icons + ${DESTDIR}${PREFIX}/share/manedit/icons .include "../../x11/gtk/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |