diff options
Diffstat (limited to 'chinese/autoconvert/Makefile')
-rw-r--r-- | chinese/autoconvert/Makefile | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/chinese/autoconvert/Makefile b/chinese/autoconvert/Makefile index 8e4df97a05ac..9cc13870a0ee 100644 --- a/chinese/autoconvert/Makefile +++ b/chinese/autoconvert/Makefile @@ -7,27 +7,35 @@ PORTNAME= autoconvert PORTVERSION= 0.3.16 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= chinese MASTER_SITES= GOOGLE_CODE -PROJECTHOST= libhz -DISTFILES= zh-${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} +DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Intelligent Chinese encoding converter +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +OPTIONS_DEFINE= DOCS + MAKE_ENV= CFLAG="${CPPFLAGS}" LIBS="${LDFLAGS}" -USE_LDCONFIG= yes MAKE_JOBS_UNSAFE= yes +USE_LDCONFIG= yes +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +PROJECTHOST= libhz + +.include <bsd.port.options.mk> post-patch: - @${REINPLACE_CMD} -e "s|^CFLAGS|#CFLAGS|" \ - ${WRKSRC}/contrib/xchat-plugins/Makefile - -pre-install: - @${MKDIR} ${DATADIR} -.for i in ChangeLog LICENSE Readme TODO Thanks Version - @${INSTALL_DATA} ${WRKSRC}/$i ${DATADIR} -.endfor + @${REINPLACE_CMD} -e "s|^CFLAGS|#CFLAGS|" ${WRKSRC}/contrib/xchat-plugins/Makefile + +post-install: +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} ChangeLog Readme TODO Thanks Version ${DOCSDIR}/ +.endif .include <bsd.port.mk> |