diff options
author | John Marino <marino@FreeBSD.org> | 2014-07-20 09:02:14 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-07-20 09:02:14 +0000 |
commit | 8ecbb368fb54661f08561e9b9032282c344da99a (patch) | |
tree | 5db0a0f77af5fa9e35921c97814d913e78c45985 /chinese/fireflyttf/Makefile | |
parent | 8ab384908893d4afa81c11190ace722732ed6686 (diff) | |
download | ports-8ecbb368fb54661f08561e9b9032282c344da99a.tar.gz ports-8ecbb368fb54661f08561e9b9032282c344da99a.zip |
Convert 6 chinese font ponts to include with .CURDIR
These ports were including chinese/ttfm/Makefile.ttf using an absolute
path using PORTSDIR instead of a relative one using .CURDIR. In
specific use cases, PORTSDIR will fail but .CURDIR always works. As
a bonus, this allows <pre> & <post> inclusions to be removed as well.
Covered by an old blanket permission (bapt) but only two of these ports
have maintainers anyway.
Notes
Notes:
svn path=/head/; revision=362305
Diffstat (limited to 'chinese/fireflyttf/Makefile')
-rw-r--r-- | chinese/fireflyttf/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chinese/fireflyttf/Makefile b/chinese/fireflyttf/Makefile index 638bd58fc6fd..e3140563e76b 100644 --- a/chinese/fireflyttf/Makefile +++ b/chinese/fireflyttf/Makefile @@ -22,8 +22,7 @@ PLIST_FILES= ${FONTSDIR_REL}/local.conf-sung OPTIONS_DEFAULT+=LGJ_FONT -.include <bsd.port.pre.mk> -.include "${PORTSDIR}/chinese/ttfm/Makefile.ttf" +.include "${.CURDIR}/../ttfm/Makefile.ttf" OPTIONS_DEFINE+=LGJ_FONT LGJ_FONT_DESC= Patch for Taiwan horn @@ -49,4 +48,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${TTF} ${STAGEDIR}${FONTSDIR} ${INSTALL_DATA} ${FILESDIR}/local.conf-sung ${STAGEDIR}${FONTSDIR} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |