diff options
author | Chin-San Huang <chinsan@FreeBSD.org> | 2008-11-26 05:05:02 +0000 |
---|---|---|
committer | Chin-San Huang <chinsan@FreeBSD.org> | 2008-11-26 05:05:02 +0000 |
commit | 8ad2a367a33cdb99b74be7301a9ff4a24b9c0315 (patch) | |
tree | 117236797d0f6d2f9d9d5db24e9141b5da80be88 /chinese/gcin-devel/Makefile | |
parent | bf5bb50d1d98198cd538f7ac530334605fefa1e4 (diff) |
Notes
Diffstat (limited to 'chinese/gcin-devel/Makefile')
-rw-r--r-- | chinese/gcin-devel/Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/chinese/gcin-devel/Makefile b/chinese/gcin-devel/Makefile index bfaa914677ee..278ccb390ab1 100644 --- a/chinese/gcin-devel/Makefile +++ b/chinese/gcin-devel/Makefile @@ -6,8 +6,7 @@ # PORTNAME= gcin -PORTVERSION= 1.4.3.pre8 -PORTREVISION= 1 +PORTVERSION= 1.4.3.pre9 CATEGORIES= chinese textproc gnome MASTER_SITES= http://www.csie.nctu.edu.tw/~cp76/gcin/download/:main \ http://cle.linux.org.tw/gcin/download/:main \ @@ -112,10 +111,20 @@ PLIST_SUB+= QT_IM_MODULE="" PLIST_SUB+= QT_IM_MODULE="@comment " .endif +post-build: +.if !defined(DEBUG_FLAGS) + @${FIND} ${WRKSRC} -name "*.so*" | ${XARGS} strip +.endif + post-install: +.if !defined(DEBUG_FLAGS) +.for f in gcin* gtab-merge juyin-learn phoa2* sim2trad trad2sim ts* + @strip ${PREFIX}/bin/${f} +.endfor +.endif .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} -.for file in Changelog README.html +.for file in Changelog.html README.html ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif |