diff options
76 files changed, 622 insertions, 22 deletions
diff --git a/editors/ooodict-all/Makefile b/editors/ooodict-all/Makefile new file mode 100644 index 000000000000..76ea8e35a8bc --- /dev/null +++ b/editors/ooodict-all/Makefile @@ -0,0 +1,130 @@ +# New ports collection makefile for: OpenOffice Spell Checking Dictionaries +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= ooodict +PORTVERSION= 1.0 +CATEGORIES+= editors +MASTER_SITES+= http://dict.progbits.com/ +DISTFILES+= ${LANGDIST} + +.if !defined(LANGDIST) +DICTMETAPORT= yes +.endif +.if !defined(LANGDIST) +LANGDIST+= bg_BG.zip ca_ES.zip hr_HR.zip cs_CZ.zip \ + da_DK.zip nl_NL.zip en_CA.zip en_GB.zip \ + en_US.zip fr_FR.zip de_DE.zip de_CH.zip \ + hu_HU.zip it_IT.zip pl_PL.zip pt_PT.zip \ + pt_BR.zip es_ES.zip sk_SK.zip sv_SE.zip \ + el_GR-enhanced.zip +.endif + +SORT?= /usr/bin/sort +CUT?= /usr/bin/cut + +.include <bsd.port.pre.mk> + +INSTALLATION_BASEDIR= OpenOffice.org1.0 +DIST_SUBDIR= openoffice +DICT_DIR= ${INSTALLATION_BASEDIR}/share/dict/ooo + +.if defined(LANGPREFIX) +PKGNAMEPREFIX= ${LANGPREFIX}- +.endif +.if defined(LANGSUFFIX) +PKGNAMESUFFIX= -${LANGSUFFIX} +.endif + +.if exists(${.CURDIR}/pkg-comment) +COMMENT= ${.CURDIR}/pkg-comment +.endif + +.if exists(${.CURDIR}/pkg-descr) +DESCR= ${.CURDIR}/pkg-descr +.endif + +EXTRACT_ONLY= +WRKSRC= ${WRKDIR} +NO_BUILD= yes + +MAINTAINER= openoffice@FreeBSD.org + +.if defined(RDEP) +BUILD_DEPENDS= ${PREFIX}/${DICT_DIR}/dictionary.lst:${RDEP} +RUN_DEPENDS= ${PREFIX}/${DICT_DIR}/dictionary.lst:${RDEP} +.else +BUILD_DEPENDS= ${PREFIX}/${DICT_DIR}/dictionary.lst:${PORTSDIR}/editors/openoffice +RUN_DEPENDS= ${PREFIX}/${DICT_DIR}/dictionary.lst:${PORTSDIR}/editors/openoffice +.endif + +EXTRACT_CMD_L?= unzip +EXTRACT_BEFORE_ARGS_L?= -q -o +EXTRACT_AFTER_ARGS_L?= -d ${PREFIX}/${DICT_DIR} + +pre-install: +.if ! exists(${WRKDIR}/../pkg-plist) + @${TOUCH} ${WRKDIR}/../pkg-plist +.endif + +do-install: + +post-install: + @for file in ${LANGDIST}; do \ + ABRV=`${ECHO_CMD} $${file} | ${SED} -e 's|\.zip||'`; \ + LANGUAGE=`${ECHO_CMD} $${ABRV} | ${SED} -e 's|_.*||'`; \ + COUNTRY=`${ECHO_CMD} $${ABRV} | ${SED} -e 's|.*_||' | ${CUT} -c 1,2`; \ + if ! (cd ${PREFIX}/${DICT_DIR}/ && ${EXTRACT_CMD_L} \ + ${EXTRACT_BEFORE_ARGS_L} \ + ${_DISTDIR}/$${file} '*.aff' '*.dic' ${EXTRACT_AFTER_ARGS_L}) ; \ + then \ + ${ECHO} "Extracting of $${file} failed"; \ + exit 1; \ + fi ; \ + ${ECHO_MSG} "===> Register spelling dictionary $${LANGUAGE}_$${COUNTRY}"; \ + ${ECHO} "@exec ${ECHO} \"DICT $${LANGUAGE} $${COUNTRY} $${ABRV}\" \ + >> ${PREFIX}/${DICT_DIR}/dictionary.lst" \ + >> ${TMPPLIST} ; \ + ${ECHO_CMD} "DICT $${LANGUAGE} $${COUNTRY} $${ABRV}" >> \ + ${PREFIX}/${DICT_DIR}/dictionary.lst ; \ + cd ${PREFIX} && ${FIND} -s ${DICT_DIR} -type f | \ + ${GREP} $${LANGUAGE}_$${COUNTRY} >> ${TMPPLIST} ; \ + ${ECHO} "@unexec ${CP} ${PREFIX}/${DICT_DIR}/dictionary.lst \ + ${PREFIX}/${DICT_DIR}/dictionary.lst.$${LANGUAGE}_$${COUNTRY}" \ + >> ${TMPPLIST} ; \ + ${ECHO} "@unexec \ + if ! ( ${CAT} ${PREFIX}/${DICT_DIR}/dictionary.lst.$${LANGUAGE}_$${COUNTRY} | \ + ${GREP} -v -e '^DICT.*$${LANGUAGE}_$${COUNTRY}' > ${PREFIX}/${DICT_DIR}/dictionary.lst ) ; then \ + ${ECHO_MSG} '===> Notice: ${PREFIX}/${DICT_DIR}/dictionary.lst is empty' ; \ + fi" >> ${TMPPLIST} ; \ + ${ECHO} "@unexec ${RM} ${PREFIX}/${DICT_DIR}/dictionary.lst.$${LANGUAGE}_$${COUNTRY}" \ + >> ${TMPPLIST} ; \ + case $${ABRV} in \ + de_DE) \ + ${ECHO_MSG} "===> Cross-register spelling dictionary $${ABRV} to $${LANGUAGE}_AT"; \ + ${CP} ${PREFIX}/${DICT_DIR}/de_DE.aff ${PREFIX}/${DICT_DIR}/de_AT.aff; \ + ${ECHO} "@exec ${ECHO} \"DICT $${LANGUAGE} AT de_AT\" \ + >> ${PREFIX}/${DICT_DIR}/dictionary.lst" \ + >> ${TMPPLIST} ; \ + ${ECHO_CMD} "DICT $$LANGUAGE AT $${ABRV}" >> \ + ${PREFIX}/${DICT_DIR}/dictionary.lst ; \ + cd ${PREFIX} && ${FIND} -s ${DICT_DIR} -type f | \ + ${GREP} $${LANGUAGE}_AT >> ${TMPPLIST} ; \ + ${ECHO} "@unexec ${CP} ${PREFIX}/${DICT_DIR}/dictionary.lst \ + ${PREFIX}/${DICT_DIR}/dictionary.lst.$${LANGUAGE}_AT" \ + >> ${TMPPLIST} ; \ + ${ECHO} "@unexec \ + if ! ( ${CAT} ${PREFIX}/${DICT_DIR}/dictionary.lst.$${LANGUAGE}_AT | \ + ${GREP} -v -e '^DICT.*$${LANGUAGE}_AT' > ${PREFIX}/${DICT_DIR}/dictionary.lst ) ; then \ + ${ECHO_MSG} '===> Notice: ${PREFIX}/${DICT_DIR}/dictionary.lst is empty' ; \ + fi" >> ${TMPPLIST} ; \ + ${ECHO} "@unexec ${RM} ${PREFIX}/${DICT_DIR}/dictionary.lst.$${LANGUAGE}_AT" \ + >> ${TMPPLIST} ; \ + ;; \ + esac \ + done + +.include <bsd.port.post.mk> diff --git a/editors/ooodict-all/pkg-comment b/editors/ooodict-all/pkg-comment new file mode 100644 index 000000000000..78983902cd31 --- /dev/null +++ b/editors/ooodict-all/pkg-comment @@ -0,0 +1 @@ +MySpell dictionaries for OpenOffice.org diff --git a/editors/ooodict-all/pkg-descr b/editors/ooodict-all/pkg-descr new file mode 100644 index 000000000000..3e292c2f96bb --- /dev/null +++ b/editors/ooodict-all/pkg-descr @@ -0,0 +1,9 @@ +Ooodict-all does contain various spelling dictionaries. As format +MySpell is used. MySpell is based on Ispell, but uses a faster +format (modified to permit fast parsing, be case sensitive). + +As ISpell, MySpell is a fast screen-oriented spelling checker that +shows you your errors in the context of the original file, and +suggests possible corrections when it can figure them out. + +WWW: http://whiteboard.openoffice.org/lingucomponent/dictionary.html diff --git a/editors/ooodict-all/pkg-message b/editors/ooodict-all/pkg-message new file mode 100644 index 000000000000..430bd3eada5e --- /dev/null +++ b/editors/ooodict-all/pkg-message @@ -0,0 +1,7 @@ +Now, start up OpenOffice.org, and go to: + +Tools->Options->LanguageSettings->WritingAids + +Hit "Edit" and use the pull down menu to select your locale +and then make sure to check the MySpell Spell Checker for +that locale. diff --git a/editors/ooodict-bg_BG/Makefile b/editors/ooodict-bg_BG/Makefile new file mode 100644 index 000000000000..fb10baf5d942 --- /dev/null +++ b/editors/ooodict-bg_BG/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Bulgarian (Bulgaria) language +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= bg +LANGSUFFIX= BG +LANGDIST+= bg_BG.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-bg_BG/pkg-comment b/editors/ooodict-bg_BG/pkg-comment new file mode 100644 index 000000000000..f0c88b8eeb66 --- /dev/null +++ b/editors/ooodict-bg_BG/pkg-comment @@ -0,0 +1 @@ +Bulgarian (Bulgaria) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-ca_ES/Makefile b/editors/ooodict-ca_ES/Makefile new file mode 100644 index 000000000000..ab2e0f90ebc4 --- /dev/null +++ b/editors/ooodict-ca_ES/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Catalan language +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= ca +LANGSUFFIX= ES +LANGDIST+= ca_ES.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-es + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-ca_ES/pkg-comment b/editors/ooodict-ca_ES/pkg-comment new file mode 100644 index 000000000000..2c41ed8e6694 --- /dev/null +++ b/editors/ooodict-ca_ES/pkg-comment @@ -0,0 +1 @@ +Catalan MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-cs_CZ/Makefile b/editors/ooodict-cs_CZ/Makefile new file mode 100644 index 000000000000..d15e00586728 --- /dev/null +++ b/editors/ooodict-cs_CZ/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Czech (Czech Republic) language +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= cs +LANGSUFFIX= CZ +LANGDIST+= cs_CZ.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-cs_CZ/pkg-comment b/editors/ooodict-cs_CZ/pkg-comment new file mode 100644 index 000000000000..d8508704a2d5 --- /dev/null +++ b/editors/ooodict-cs_CZ/pkg-comment @@ -0,0 +1 @@ +Czech (Czech Republic) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-da_DK/Makefile b/editors/ooodict-da_DK/Makefile new file mode 100644 index 000000000000..c1456cbef34a --- /dev/null +++ b/editors/ooodict-da_DK/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Danish (Denmark) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= da +LANGSUFFIX= DK +LANGDIST+= da_DK.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-dk + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-da_DK/pkg-comment b/editors/ooodict-da_DK/pkg-comment new file mode 100644 index 000000000000..1ba4d5c3d644 --- /dev/null +++ b/editors/ooodict-da_DK/pkg-comment @@ -0,0 +1 @@ +Danish (Denmark) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-el_GR/Makefile b/editors/ooodict-el_GR/Makefile new file mode 100644 index 000000000000..fd9bf8a6e03b --- /dev/null +++ b/editors/ooodict-el_GR/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Greek (Greece) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= el +LANGSUFFIX= GR +LANGDIST+= el_GR-enhanced.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-gr + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-el_GR/pkg-comment b/editors/ooodict-el_GR/pkg-comment new file mode 100644 index 000000000000..51f0f9acd9f8 --- /dev/null +++ b/editors/ooodict-el_GR/pkg-comment @@ -0,0 +1 @@ +Greek (Greece) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-en_CA/Makefile b/editors/ooodict-en_CA/Makefile new file mode 100644 index 000000000000..f9d8eee6a48d --- /dev/null +++ b/editors/ooodict-en_CA/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for English (Canada) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= en +LANGSUFFIX= CA +LANGDIST+= en_CA.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-en_CA/pkg-comment b/editors/ooodict-en_CA/pkg-comment new file mode 100644 index 000000000000..9f65270028ea --- /dev/null +++ b/editors/ooodict-en_CA/pkg-comment @@ -0,0 +1 @@ +English (Canada) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-en_GB/Makefile b/editors/ooodict-en_GB/Makefile new file mode 100644 index 000000000000..4417033f8387 --- /dev/null +++ b/editors/ooodict-en_GB/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for English (United Kingdom) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= en +LANGSUFFIX= GB +LANGDIST+= en_GB.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-en_GB/pkg-comment b/editors/ooodict-en_GB/pkg-comment new file mode 100644 index 000000000000..812dcf99d913 --- /dev/null +++ b/editors/ooodict-en_GB/pkg-comment @@ -0,0 +1 @@ +English (United Kingdom) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-en_US/Makefile b/editors/ooodict-en_US/Makefile new file mode 100644 index 000000000000..20176cc5f02c --- /dev/null +++ b/editors/ooodict-en_US/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for English (United States) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= en +LANGSUFFIX= US +LANGDIST+= en_US.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-en_US/pkg-comment b/editors/ooodict-en_US/pkg-comment new file mode 100644 index 000000000000..e1affcc0b004 --- /dev/null +++ b/editors/ooodict-en_US/pkg-comment @@ -0,0 +1 @@ +English (United States) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-es_ES/Makefile b/editors/ooodict-es_ES/Makefile new file mode 100644 index 000000000000..ee7b4fa73e0b --- /dev/null +++ b/editors/ooodict-es_ES/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Spanish (Spain) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= es +LANGSUFFIX= ES +LANGDIST+= es_ES.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-es + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-es_ES/pkg-comment b/editors/ooodict-es_ES/pkg-comment new file mode 100644 index 000000000000..a394c1190a60 --- /dev/null +++ b/editors/ooodict-es_ES/pkg-comment @@ -0,0 +1 @@ +Spanish (Spain) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-hr_HR/Makefile b/editors/ooodict-hr_HR/Makefile new file mode 100644 index 000000000000..838c5a62a9fd --- /dev/null +++ b/editors/ooodict-hr_HR/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Croatian (Croatia) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= hr +LANGSUFFIX= HR +LANGDIST+= hr_HR.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-hr_HR/pkg-comment b/editors/ooodict-hr_HR/pkg-comment new file mode 100644 index 000000000000..324bbce05eef --- /dev/null +++ b/editors/ooodict-hr_HR/pkg-comment @@ -0,0 +1 @@ +Croatian (Croatia) Myspell dictionary for OpenOffice.org diff --git a/editors/ooodict-hu_HU/Makefile b/editors/ooodict-hu_HU/Makefile new file mode 100644 index 000000000000..2deb823a966b --- /dev/null +++ b/editors/ooodict-hu_HU/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Hungarian (Hungary) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= hu +LANGSUFFIX= HU +LANGDIST+= hu_HU.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-hu_HU/pkg-comment b/editors/ooodict-hu_HU/pkg-comment new file mode 100644 index 000000000000..bfc312afeb12 --- /dev/null +++ b/editors/ooodict-hu_HU/pkg-comment @@ -0,0 +1 @@ +Hungarian (Hungary) Myspell dictionary for OpenOffice.org diff --git a/editors/ooodict-it_IT/Makefile b/editors/ooodict-it_IT/Makefile new file mode 100644 index 000000000000..8f8a623ade19 --- /dev/null +++ b/editors/ooodict-it_IT/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Italian (Italy) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= it +LANGSUFFIX= IT +LANGDIST+= it_IT.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-it + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-it_IT/pkg-comment b/editors/ooodict-it_IT/pkg-comment new file mode 100644 index 000000000000..0c616a0eac80 --- /dev/null +++ b/editors/ooodict-it_IT/pkg-comment @@ -0,0 +1 @@ +Italian (Italy) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-nl_NL/Makefile b/editors/ooodict-nl_NL/Makefile new file mode 100644 index 000000000000..cf712ec9fc0e --- /dev/null +++ b/editors/ooodict-nl_NL/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Dutch (Netherland) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= nl +LANGSUFFIX= NL +LANGDIST+= nl_NL.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-nl + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-nl_NL/pkg-comment b/editors/ooodict-nl_NL/pkg-comment new file mode 100644 index 000000000000..f41498533c48 --- /dev/null +++ b/editors/ooodict-nl_NL/pkg-comment @@ -0,0 +1 @@ +Dutch (Netherland) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-pl_PL/Makefile b/editors/ooodict-pl_PL/Makefile new file mode 100644 index 000000000000..2944035f3b57 --- /dev/null +++ b/editors/ooodict-pl_PL/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Polish (Poland) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= pl +LANGSUFFIX= PL +LANGDIST+= pl_PL.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-pl + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-pl_PL/pkg-comment b/editors/ooodict-pl_PL/pkg-comment new file mode 100644 index 000000000000..b7383c0850d4 --- /dev/null +++ b/editors/ooodict-pl_PL/pkg-comment @@ -0,0 +1 @@ +Polish (Poland) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-pt_BR/Makefile b/editors/ooodict-pt_BR/Makefile new file mode 100644 index 000000000000..9a618dd9e5b4 --- /dev/null +++ b/editors/ooodict-pt_BR/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Portuguese (Brasil) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= pt +LANGSUFFIX= BR +LANGDIST+= pt_BR.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-pt + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-pt_BR/pkg-comment b/editors/ooodict-pt_BR/pkg-comment new file mode 100644 index 000000000000..afc8449a8804 --- /dev/null +++ b/editors/ooodict-pt_BR/pkg-comment @@ -0,0 +1 @@ +Portuguese (Brasil) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-pt_PT/Makefile b/editors/ooodict-pt_PT/Makefile new file mode 100644 index 000000000000..4c3046e83c7d --- /dev/null +++ b/editors/ooodict-pt_PT/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Portuguese (Portugal) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= pt +LANGSUFFIX= PT +LANGDIST+= pt_PT.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-pt + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-pt_PT/pkg-comment b/editors/ooodict-pt_PT/pkg-comment new file mode 100644 index 000000000000..ad928084a18d --- /dev/null +++ b/editors/ooodict-pt_PT/pkg-comment @@ -0,0 +1 @@ +Portuguese (Portugal) MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-sk_SK/Makefile b/editors/ooodict-sk_SK/Makefile new file mode 100644 index 000000000000..a109e9accb03 --- /dev/null +++ b/editors/ooodict-sk_SK/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Slovak +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= sk +LANGSUFFIX= SK +LANGDIST+= sk_SK.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-sk_SK/pkg-comment b/editors/ooodict-sk_SK/pkg-comment new file mode 100644 index 000000000000..d60b5b43cd22 --- /dev/null +++ b/editors/ooodict-sk_SK/pkg-comment @@ -0,0 +1 @@ +Slovak MySpell dictionary for OpenOffice.org diff --git a/editors/ooodict-sv_SE/Makefile b/editors/ooodict-sv_SE/Makefile new file mode 100644 index 000000000000..43521121dd8c --- /dev/null +++ b/editors/ooodict-sv_SE/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Swedish (Sweden) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= sv +LANGSUFFIX= SE +LANGDIST+= sv_SE.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-se + +.include "${MASTERDIR}/Makefile" diff --git a/editors/ooodict-sv_SE/pkg-comment b/editors/ooodict-sv_SE/pkg-comment new file mode 100644 index 000000000000..263320de64a8 --- /dev/null +++ b/editors/ooodict-sv_SE/pkg-comment @@ -0,0 +1 @@ +Swedish (Sweden) MySpell dictionary for OpenOffice.org diff --git a/editors/openoffice-1.0-dk/Makefile b/editors/openoffice-1.0-dk/Makefile index 80055ce7752f..979cfc7bfe23 100644 --- a/editors/openoffice-1.0-dk/Makefile +++ b/editors/openoffice-1.0-dk/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= dk LANG_EXT= 45 -EXTRACT_LANGDIST+= da_DK.zip LANG_CONFIGURE_ARG= DAN MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-1.0-es/Makefile b/editors/openoffice-1.0-es/Makefile index 34264c240516..92deeef5e9c7 100644 --- a/editors/openoffice-1.0-es/Makefile +++ b/editors/openoffice-1.0-es/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= es LANG_EXT= 34 -EXTRACT_LANGDIST+= es_ES.zip ca_ES.zip LANG_CONFIGURE_ARG= SPAN MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-1.0-gr/Makefile b/editors/openoffice-1.0-gr/Makefile index 9bc076e453b4..100cfb744e85 100644 --- a/editors/openoffice-1.0-gr/Makefile +++ b/editors/openoffice-1.0-gr/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= gr LANG_EXT= 30 -EXTRACT_LANGDIST+= el_GR-enhanced.zip LANG_CONFIGURE_ARG= GREEK MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-1.0-it/Makefile b/editors/openoffice-1.0-it/Makefile index b06c5ebf0c3f..458c71b71728 100644 --- a/editors/openoffice-1.0-it/Makefile +++ b/editors/openoffice-1.0-it/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= it LANG_EXT= 39 -EXTRACT_LANGDIST+= it_IT.zip LANG_CONFIGURE_ARG= ITAL MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-1.0-nl/Makefile b/editors/openoffice-1.0-nl/Makefile index 070d4e6f35ec..ffb2bb333844 100644 --- a/editors/openoffice-1.0-nl/Makefile +++ b/editors/openoffice-1.0-nl/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= nl LANG_EXT= 31 -EXTRACT_LANGDIST+= nl_NL.zip LANG_CONFIGURE_ARG= DTCH MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-1.0-se/Makefile b/editors/openoffice-1.0-se/Makefile index a0166164c7f4..72cd34ac7e02 100644 --- a/editors/openoffice-1.0-se/Makefile +++ b/editors/openoffice-1.0-se/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= se LANG_EXT= 46 -EXTRACT_LANGDIST+= sv_SE.zip LANG_CONFIGURE_ARG= SWED MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-dk/Makefile b/editors/openoffice-dk/Makefile index 80055ce7752f..979cfc7bfe23 100644 --- a/editors/openoffice-dk/Makefile +++ b/editors/openoffice-dk/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= dk LANG_EXT= 45 -EXTRACT_LANGDIST+= da_DK.zip LANG_CONFIGURE_ARG= DAN MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-es/Makefile b/editors/openoffice-es/Makefile index 34264c240516..92deeef5e9c7 100644 --- a/editors/openoffice-es/Makefile +++ b/editors/openoffice-es/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= es LANG_EXT= 34 -EXTRACT_LANGDIST+= es_ES.zip ca_ES.zip LANG_CONFIGURE_ARG= SPAN MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-gr/Makefile b/editors/openoffice-gr/Makefile index 9bc076e453b4..100cfb744e85 100644 --- a/editors/openoffice-gr/Makefile +++ b/editors/openoffice-gr/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= gr LANG_EXT= 30 -EXTRACT_LANGDIST+= el_GR-enhanced.zip LANG_CONFIGURE_ARG= GREEK MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-it/Makefile b/editors/openoffice-it/Makefile index b06c5ebf0c3f..458c71b71728 100644 --- a/editors/openoffice-it/Makefile +++ b/editors/openoffice-it/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= it LANG_EXT= 39 -EXTRACT_LANGDIST+= it_IT.zip LANG_CONFIGURE_ARG= ITAL MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-nl/Makefile b/editors/openoffice-nl/Makefile index 070d4e6f35ec..ffb2bb333844 100644 --- a/editors/openoffice-nl/Makefile +++ b/editors/openoffice-nl/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= nl LANG_EXT= 31 -EXTRACT_LANGDIST+= nl_NL.zip LANG_CONFIGURE_ARG= DTCH MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-pl/Makefile b/editors/openoffice-pl/Makefile index 99802dc96d92..b2edd5a2c423 100644 --- a/editors/openoffice-pl/Makefile +++ b/editors/openoffice-pl/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= pl LANG_EXT= 48 -EXTRACT_LANGDIST+= pl_PL.zip LANG_CONFIGURE_ARG= POL MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-pt/Makefile b/editors/openoffice-pt/Makefile index d50146c13bd2..afda31dcde23 100644 --- a/editors/openoffice-pt/Makefile +++ b/editors/openoffice-pt/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= pt LANG_EXT= 03 -EXTRACT_LANGDIST+= pt_PT.zip LANG_CONFIGURE_ARG= PORT MASTERDIR= ${.CURDIR}/../openoffice diff --git a/editors/openoffice-se/Makefile b/editors/openoffice-se/Makefile index a0166164c7f4..72cd34ac7e02 100644 --- a/editors/openoffice-se/Makefile +++ b/editors/openoffice-se/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= se LANG_EXT= 46 -EXTRACT_LANGDIST+= sv_SE.zip LANG_CONFIGURE_ARG= SWED MASTERDIR= ${.CURDIR}/../openoffice diff --git a/french/ooodict-fr_FR/Makefile b/french/ooodict-fr_FR/Makefile new file mode 100644 index 000000000000..301507bbb6c1 --- /dev/null +++ b/french/ooodict-fr_FR/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for French (France) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= fr +LANGSUFFIX= FR +LANGDIST+= fr_FR.zip +MASTERDIR= ${.CURDIR}/../../editors/ooodict-all +RDEP= ${PORTSDIR}/french/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/french/ooodict-fr_FR/pkg-comment b/french/ooodict-fr_FR/pkg-comment new file mode 100644 index 000000000000..12bba3257cf1 --- /dev/null +++ b/french/ooodict-fr_FR/pkg-comment @@ -0,0 +1 @@ +French (France) MySpell dictionary for OpenOffice.org diff --git a/french/openoffice-1.0/Makefile b/french/openoffice-1.0/Makefile index 7cffecae4b14..544ffdd04ae4 100644 --- a/french/openoffice-1.0/Makefile +++ b/french/openoffice-1.0/Makefile @@ -9,7 +9,6 @@ CATEGORIES= french editors LANG_PKGNAME= fr LANG_EXT= 33 -EXTRACT_LANGDIST+= fr_FR.zip LANG_CONFIGURE_ARG= FREN MASTERDIR= ${.CURDIR}/../../editors/openoffice diff --git a/french/openoffice/Makefile b/french/openoffice/Makefile index 7cffecae4b14..544ffdd04ae4 100644 --- a/french/openoffice/Makefile +++ b/french/openoffice/Makefile @@ -9,7 +9,6 @@ CATEGORIES= french editors LANG_PKGNAME= fr LANG_EXT= 33 -EXTRACT_LANGDIST+= fr_FR.zip LANG_CONFIGURE_ARG= FREN MASTERDIR= ${.CURDIR}/../../editors/openoffice diff --git a/german/ooodict-de_CH/Makefile b/german/ooodict-de_CH/Makefile new file mode 100644 index 000000000000..ea1ea389b0e6 --- /dev/null +++ b/german/ooodict-de_CH/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for German (Switzerland) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= de +LANGSUFFIX= CH +LANGDIST+= de_CH.zip +MASTERDIR= ${.CURDIR}/../../editors/ooodict-all +RDEP= ${PORTSDIR}/german/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/german/ooodict-de_CH/pkg-comment b/german/ooodict-de_CH/pkg-comment new file mode 100644 index 000000000000..55e132ded217 --- /dev/null +++ b/german/ooodict-de_CH/pkg-comment @@ -0,0 +1 @@ +German (Switzerland) MySpell dictionary for OpenOffice.org diff --git a/german/ooodict-de_DE/Makefile b/german/ooodict-de_DE/Makefile new file mode 100644 index 000000000000..2c00b47dd178 --- /dev/null +++ b/german/ooodict-de_DE/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for German (Germany) and German (Austria) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= de +LANGSUFFIX= DE +LANGDIST+= de_DE.zip +MASTERDIR= ${.CURDIR}/../../editors/ooodict-all +RDEP= ${PORTSDIR}/german/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/german/ooodict-de_DE/pkg-comment b/german/ooodict-de_DE/pkg-comment new file mode 100644 index 000000000000..3ee155226d4b --- /dev/null +++ b/german/ooodict-de_DE/pkg-comment @@ -0,0 +1 @@ +German (Germany) MySpell dictionary for OpenOffice.org diff --git a/german/openoffice-1.0/Makefile b/german/openoffice-1.0/Makefile index 71757bc70c38..111070b07445 100644 --- a/german/openoffice-1.0/Makefile +++ b/german/openoffice-1.0/Makefile @@ -9,7 +9,6 @@ CATEGORIES= german editors LANG_PKGNAME= de LANG_EXT= 49 -EXTRACT_LANGDIST+= de_DE.zip de_CH.zip # # Special case. We do not need LANG_CONFIGURE_ARG cause # the EN_US and DE_DE versions are always built. diff --git a/german/openoffice/Makefile b/german/openoffice/Makefile index 71757bc70c38..111070b07445 100644 --- a/german/openoffice/Makefile +++ b/german/openoffice/Makefile @@ -9,7 +9,6 @@ CATEGORIES= german editors LANG_PKGNAME= de LANG_EXT= 49 -EXTRACT_LANGDIST+= de_DE.zip de_CH.zip # # Special case. We do not need LANG_CONFIGURE_ARG cause # the EN_US and DE_DE versions are always built. diff --git a/hungarian/ooodict/Makefile b/hungarian/ooodict/Makefile new file mode 100644 index 000000000000..2deb823a966b --- /dev/null +++ b/hungarian/ooodict/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Hungarian (Hungary) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= hu +LANGSUFFIX= HU +LANGDIST+= hu_HU.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice + +.include "${MASTERDIR}/Makefile" diff --git a/hungarian/ooodict/pkg-comment b/hungarian/ooodict/pkg-comment new file mode 100644 index 000000000000..bfc312afeb12 --- /dev/null +++ b/hungarian/ooodict/pkg-comment @@ -0,0 +1 @@ +Hungarian (Hungary) Myspell dictionary for OpenOffice.org diff --git a/polish/ooodict_PL/Makefile b/polish/ooodict_PL/Makefile new file mode 100644 index 000000000000..2944035f3b57 --- /dev/null +++ b/polish/ooodict_PL/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Polish (Poland) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= pl +LANGSUFFIX= PL +LANGDIST+= pl_PL.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-pl + +.include "${MASTERDIR}/Makefile" diff --git a/polish/ooodict_PL/pkg-comment b/polish/ooodict_PL/pkg-comment new file mode 100644 index 000000000000..b7383c0850d4 --- /dev/null +++ b/polish/ooodict_PL/pkg-comment @@ -0,0 +1 @@ +Polish (Poland) MySpell dictionary for OpenOffice.org diff --git a/polish/openoffice-1.0/Makefile b/polish/openoffice-1.0/Makefile index 99802dc96d92..b2edd5a2c423 100644 --- a/polish/openoffice-1.0/Makefile +++ b/polish/openoffice-1.0/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= pl LANG_EXT= 48 -EXTRACT_LANGDIST+= pl_PL.zip LANG_CONFIGURE_ARG= POL MASTERDIR= ${.CURDIR}/../openoffice diff --git a/polish/openoffice/Makefile b/polish/openoffice/Makefile index 99802dc96d92..b2edd5a2c423 100644 --- a/polish/openoffice/Makefile +++ b/polish/openoffice/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= pl LANG_EXT= 48 -EXTRACT_LANGDIST+= pl_PL.zip LANG_CONFIGURE_ARG= POL MASTERDIR= ${.CURDIR}/../openoffice diff --git a/portuguese/ooodict-pt_BR/Makefile b/portuguese/ooodict-pt_BR/Makefile new file mode 100644 index 000000000000..9a618dd9e5b4 --- /dev/null +++ b/portuguese/ooodict-pt_BR/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Portuguese (Brasil) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= pt +LANGSUFFIX= BR +LANGDIST+= pt_BR.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-pt + +.include "${MASTERDIR}/Makefile" diff --git a/portuguese/ooodict-pt_BR/pkg-comment b/portuguese/ooodict-pt_BR/pkg-comment new file mode 100644 index 000000000000..afc8449a8804 --- /dev/null +++ b/portuguese/ooodict-pt_BR/pkg-comment @@ -0,0 +1 @@ +Portuguese (Brasil) MySpell dictionary for OpenOffice.org diff --git a/portuguese/ooodict-pt_PT/Makefile b/portuguese/ooodict-pt_PT/Makefile new file mode 100644 index 000000000000..4c3046e83c7d --- /dev/null +++ b/portuguese/ooodict-pt_PT/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: +# OpenOffice Spell Checking Dictionary +# for Portuguese (Portugal) +# Date created: Tue Aug 10 24:00:00 UTC 2002 +# Whom: Martin Blapp <mbr@FreeBSD.org> +# +# $FreeBSD$ +# + +CATEGORIES= editors + +LANGPREFIX= pt +LANGSUFFIX= PT +LANGDIST+= pt_PT.zip +MASTERDIR= ${.CURDIR}/../ooodict-all +RDEP= ${PORTSDIR}/editors/openoffice-pt + +.include "${MASTERDIR}/Makefile" diff --git a/portuguese/ooodict-pt_PT/pkg-comment b/portuguese/ooodict-pt_PT/pkg-comment new file mode 100644 index 000000000000..ad928084a18d --- /dev/null +++ b/portuguese/ooodict-pt_PT/pkg-comment @@ -0,0 +1 @@ +Portuguese (Portugal) MySpell dictionary for OpenOffice.org diff --git a/portuguese/openoffice-1.0/Makefile b/portuguese/openoffice-1.0/Makefile index d50146c13bd2..afda31dcde23 100644 --- a/portuguese/openoffice-1.0/Makefile +++ b/portuguese/openoffice-1.0/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= pt LANG_EXT= 03 -EXTRACT_LANGDIST+= pt_PT.zip LANG_CONFIGURE_ARG= PORT MASTERDIR= ${.CURDIR}/../openoffice diff --git a/portuguese/openoffice/Makefile b/portuguese/openoffice/Makefile index d50146c13bd2..afda31dcde23 100644 --- a/portuguese/openoffice/Makefile +++ b/portuguese/openoffice/Makefile @@ -9,7 +9,6 @@ CATEGORIES= editors LANG_PKGNAME= pt LANG_EXT= 03 -EXTRACT_LANGDIST+= pt_PT.zip LANG_CONFIGURE_ARG= PORT MASTERDIR= ${.CURDIR}/../openoffice |