aboutsummaryrefslogtreecommitdiff
path: root/japanese/font-mplus
diff options
context:
space:
mode:
authorFUJISHIMA Satsuki <sf@FreeBSD.org>2004-11-09 22:20:56 +0000
committerFUJISHIMA Satsuki <sf@FreeBSD.org>2004-11-09 22:20:56 +0000
commitcb6ac0edad665d2b0fb742ae689535755c3c5ffa (patch)
tree2b2924cdeefff222e82e23f423efec42526f4380 /japanese/font-mplus
parentb000f92b14566ced1f44d527e39115e350171cdd (diff)
downloadports-cb6ac0edad665d2b0fb742ae689535755c3c5ffa.tar.gz
ports-cb6ac0edad665d2b0fb742ae689535755c3c5ffa.zip
Notes
Diffstat (limited to 'japanese/font-mplus')
-rw-r--r--japanese/font-mplus/pkg-req6
1 files changed, 5 insertions, 1 deletions
diff --git a/japanese/font-mplus/pkg-req b/japanese/font-mplus/pkg-req
index 955584858ec3..db7c015cbf8b 100644
--- a/japanese/font-mplus/pkg-req
+++ b/japanese/font-mplus/pkg-req
@@ -19,6 +19,10 @@ if [ "$2x" = "INSTALLx" -a ! -d ${FONTDIR} ]; then
mkdir ${FONTDIR}
fi
+grepv() {
+ awk -v SRC=$1 'BEGIN{while (getline < SRC) {ENTRY[$0]=1}} (ENTRY[$0] != 1) {print}' $2
+}
+
if [ "$2" = "DEINSTALL" ] ; then
# font alias entry here!
TMPFILE=/tmp/install-fonts-alias-$$
@@ -29,7 +33,7 @@ if [ "$2" = "DEINSTALL" ] ; then
cd ${FONTDIR}
touch fonts.alias
cp fonts.alias fonts.alias.orig
- grep -v -e "`cat ${TMPFILE}`" fonts.alias.orig > fonts.alias
+ grepv ${TMPFILE} fonts.alias.orig > fonts.alias
rm -f fonts.alias.orig ${TMPFILE}
fi