diff options
author | hrs <hrs@FreeBSD.org> | 2015-09-13 07:21:50 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2015-09-13 07:21:50 +0800 |
commit | 310b80cf0de223fd85d9c911d8ed3c65dc4e2662 (patch) | |
tree | 34274b4e3d511eb36c050d9b6459e386c2b9ec23 /japanese | |
parent | 4d05272d92b8160243427ff014225a1fa237e354 (diff) | |
download | freebsd-ports-graphics-310b80cf0de223fd85d9c911d8ed3c65dc4e2662.tar.gz freebsd-ports-graphics-310b80cf0de223fd85d9c911d8ed3c65dc4e2662.tar.zst freebsd-ports-graphics-310b80cf0de223fd85d9c911d8ed3c65dc4e2662.zip |
- Use post-install-DOCS-on.
- Use %%FONTSDIR%% directly.
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/font-ipamjm/Makefile | 2 | ||||
-rw-r--r-- | japanese/font-ipamjm/files/pkg-install.in | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/japanese/font-ipamjm/Makefile b/japanese/font-ipamjm/Makefile index d5d2cd0d951..abdbdda8186 100644 --- a/japanese/font-ipamjm/Makefile +++ b/japanese/font-ipamjm/Makefile @@ -42,6 +42,8 @@ do-install: ${STAGEDIR}${PREFIX}/etc/fonts/conf.d/20-unhint-${PORTNAME}.conf ${LN} -s -f ../conf.avail/62-fonts-${PORTNAME}.conf \ ${STAGEDIR}${PREFIX}/etc/fonts/conf.d/62-fonts-${PORTNAME}.conf + +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} diff --git a/japanese/font-ipamjm/files/pkg-install.in b/japanese/font-ipamjm/files/pkg-install.in index f3125bbbb3d..2cbc4fb8de4 100644 --- a/japanese/font-ipamjm/files/pkg-install.in +++ b/japanese/font-ipamjm/files/pkg-install.in @@ -1,8 +1,6 @@ #!/bin/sh # $FreeBSD$ -FONTSDIR=%%FONTSDIR%% - catfontsdir () { while read _IN @@ -73,7 +71,7 @@ nfonts () case "$2" in POST-INSTALL) - cd ${FONTSDIR} + cd %%FONTSDIR%% touch fonts.dir (catfontsdir < fonts.dir; addentries) > fonts.dir.tmp nfonts < fonts.dir.tmp > fonts.dir @@ -81,7 +79,7 @@ POST-INSTALL) rm -f fonts.dir.tmp ;; POST-DEINSTALL) - cd ${FONTSDIR} + cd %%FONTSDIR%% catfontsdir < fonts.dir > fonts.dir.tmp nfonts < fonts.dir.tmp > fonts.dir cat fonts.dir.tmp >> fonts.dir |