blob: 8d650acdc9efe8e88ca33a63a15c566523ff3cf6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# New ports collection makefile for: mozc-additions
# Date created: 26 June 2010
# Whom: Daichi GOTO <daichi@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= mozc-additions
PORTVERSION= 0.11.383.102
PORTREVISION= 1
CATEGORIES= japanese
MASTER_SITES= http://people.freebsd.org/~daichi/distfiles/
MAINTAINER= daichi@freebsd.org
COMMENT= Additional tools and images for Mozc Japanese Input Method
NO_BUILD= yes
REPLACE_FILES= ${WRKSRC}/Makefile
post-patch:
@for FILE in ${REPLACE_FILES}; \
do \
${SED} -i .bak -e "s/@@LOCALBASE@@/${LOCALBASE:S/\//\\\//g}/g" \
$${FILE}; \
done;
.include <bsd.port.mk>
|