diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2012-10-26 20:24:07 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2012-10-26 20:24:07 +0000 |
commit | 32c77e89ce9033301d0321983f39a7e5ac2b6dad (patch) | |
tree | 6a0bc2a81122fa952742eb9a7c6180d3d05cf299 /editors/libreoffice-i18n | |
parent | 6ce712d6f616dd16b649c4377589647b1628919f (diff) | |
download | ports-32c77e89ce9033301d0321983f39a7e5ac2b6dad.tar.gz ports-32c77e89ce9033301d0321983f39a7e5ac2b6dad.zip |
Notes
Diffstat (limited to 'editors/libreoffice-i18n')
-rw-r--r-- | editors/libreoffice-i18n/Makefile | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/editors/libreoffice-i18n/Makefile b/editors/libreoffice-i18n/Makefile index 657d272b296e..6644179c982c 100644 --- a/editors/libreoffice-i18n/Makefile +++ b/editors/libreoffice-i18n/Makefile @@ -1,9 +1,4 @@ -# New ports collection makefile for: libreoffice-i18n -# Date created: 2012-03-01 -# Whom: Baptiste Daroussin <bapt@FreeBSD.org> -# # $FreeBSD$ -# .include "${.CURDIR}/../libreoffice/Makefile.common" UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} @@ -62,4 +57,21 @@ RUN_DEPENDS+= ${${lang}_DETECT}:${PORTSDIR}/${${lang}_PORT} do-install: @${DO_NADA} +all-lang-list: +.for lang in ${LO_LANG_ALL} + @${ECHO} ${lang} +.endfor + +all-help-list: +.for lang in ${LO_LANG_ALL} + @${EGREP} -q '^[:blank:]*LO_HAS_HELPPACK[:blank:]*=' \ + ${.CURDIR}/../../${${lang}_PORT}/Makefile && ${ECHO} "${lang}" \ + || true +.endfor + +all-makesum: +.for lang in ${LO_LANG_ALL} + @cd ${.CURDIR}/../../${${lang}_PORT} && ${MAKE} makesum +.endfor + .include <bsd.port.mk> |