Convert thunderbird-i18n to use subdirs/Makefile.inc instead of abusing
multipackages, allows to parallelize builds in dpb. This way they also share PLIST and DESCR.. while here take maintainership (agreed by previous) and set @pkgpath for seamless updates. prodded by/based on an initial work by espie@
This commit is contained in:
parent
da8423ce34
commit
7441780c52
@ -1,64 +1,55 @@
|
||||
# $OpenBSD: Makefile,v 1.53 2012/01/11 01:10:24 nigel Exp $
|
||||
# $OpenBSD: Makefile,v 1.54 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
# keep in sync with www/mozilla/mozilla.port.mk
|
||||
ONLY_FOR_ARCHS= amd64 i386 powerpc
|
||||
SUBDIR = ar
|
||||
SUBDIR += be
|
||||
SUBDIR += bg
|
||||
SUBDIR += bn-BD
|
||||
SUBDIR += br
|
||||
SUBDIR += ca
|
||||
SUBDIR += cs
|
||||
SUBDIR += da
|
||||
SUBDIR += de
|
||||
SUBDIR += el
|
||||
SUBDIR += en-GB
|
||||
SUBDIR += en-US
|
||||
SUBDIR += es-AR
|
||||
SUBDIR += es-ES
|
||||
SUBDIR += et
|
||||
SUBDIR += eu
|
||||
SUBDIR += fi
|
||||
SUBDIR += fr
|
||||
SUBDIR += fy-NL
|
||||
SUBDIR += ga-IE
|
||||
SUBDIR += gd
|
||||
SUBDIR += gl
|
||||
SUBDIR += he
|
||||
SUBDIR += hu
|
||||
SUBDIR += id
|
||||
SUBDIR += is
|
||||
SUBDIR += it
|
||||
SUBDIR += ja
|
||||
SUBDIR += ko
|
||||
SUBDIR += lt
|
||||
SUBDIR += nb-NO
|
||||
SUBDIR += nl
|
||||
SUBDIR += nn-NO
|
||||
SUBDIR += pa-IN
|
||||
SUBDIR += pl
|
||||
SUBDIR += pt-BR
|
||||
SUBDIR += pt-PT
|
||||
SUBDIR += rm
|
||||
SUBDIR += ro
|
||||
SUBDIR += ru
|
||||
SUBDIR += si
|
||||
SUBDIR += sk
|
||||
SUBDIR += sl
|
||||
SUBDIR += sq
|
||||
SUBDIR += sv-SE
|
||||
SUBDIR += ta-LK
|
||||
SUBDIR += tr
|
||||
SUBDIR += uk
|
||||
SUBDIR += vi
|
||||
SUBDIR += zh-CN
|
||||
SUBDIR += zh-TW
|
||||
|
||||
PKG_ARCH= *
|
||||
|
||||
FV= 9.0.1
|
||||
V= ${FV:C/b.$//}
|
||||
NAME= thunderbird-i18n
|
||||
PKGNAME= ${NAME}-${FV}
|
||||
|
||||
CATEGORIES= mail
|
||||
|
||||
HOMEPAGE= http://www.mozilla.org/projects/l10n/
|
||||
|
||||
MAINTAINER= Martynas Venckus <martynas@openbsd.org>
|
||||
|
||||
# Mozilla public license
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MASTER_SITES= https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/${FV}/linux-i686/xpi/ \
|
||||
http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/${FV}/linux-i686/xpi/ \
|
||||
ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/${FV}/linux-i686/xpi/
|
||||
|
||||
LANGUAGES= ar be bg bn-BD br ca cs da de el en-GB en-US es-AR es-ES et eu \
|
||||
fi fr fy-NL ga-IE gd gl he hu id is it ja ko lt nb-NO nl nn-NO \
|
||||
pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sv-SE ta-LK tr uk vi \
|
||||
zh-CN zh-TW
|
||||
|
||||
BUILD_DEPENDS= archivers/unzip
|
||||
RUN_DEPENDS= thunderbird-${FV}:mail/mozilla-thunderbird
|
||||
|
||||
DIST_SUBDIR= mozilla/${NAME}-${FV}
|
||||
NO_BUILD= Yes
|
||||
NO_REGRESS= Yes
|
||||
EXTRACT_ONLY=
|
||||
|
||||
# define one language for the main package
|
||||
SUBPACKAGE?= -en-GB
|
||||
|
||||
.for i in ${LANGUAGES}
|
||||
MULTI_PACKAGES+=-$i
|
||||
DISTFILES+= $i.xpi
|
||||
PKGNAME-$i= ${NAME}-$i-${FV}
|
||||
COMMENT-$i= $i language pack for Thunderbird
|
||||
LPACKDIR-$i= ${PREFIX}/mozilla-thunderbird/extensions/langpack-$i@thunderbird.mozilla.org
|
||||
.endfor
|
||||
PKGNAME-en-GB= ${NAME}-en-GB-${FV}
|
||||
|
||||
# use the same for all subpackages
|
||||
MESSAGE= ${PKGDIR}/MESSAGE
|
||||
SUBST_VARS= V
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/lib/thunderbird-$V/extensions
|
||||
.for i in ${LANGUAGES}
|
||||
${INSTALL_DATA} ${FULLDISTDIR}/$i.xpi ${PREFIX}/lib/thunderbird-$V/extensions/langpack-$i@thunderbird.mozilla.org.xpi
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.subdir.mk>
|
||||
|
60
mail/thunderbird-i18n/Makefile.inc
Normal file
60
mail/thunderbird-i18n/Makefile.inc
Normal file
@ -0,0 +1,60 @@
|
||||
# $OpenBSD: Makefile.inc,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
# keep in sync with www/mozilla/mozilla.port.mk
|
||||
ONLY_FOR_ARCHS = amd64 i386 powerpc
|
||||
|
||||
PKG_ARCH = *
|
||||
|
||||
FV = 9.0.1
|
||||
V = ${FV:C/b.$//}
|
||||
NAME = thunderbird-i18n
|
||||
|
||||
CATEGORIES = mail
|
||||
|
||||
HOMEPAGE = https://wiki.mozilla.org/L10n:Home_Page
|
||||
|
||||
MAINTAINER = Landry Breuil <landry@openbsd.org>
|
||||
|
||||
# Mozilla public license
|
||||
PERMIT_PACKAGE_CDROM = Yes
|
||||
PERMIT_PACKAGE_FTP = Yes
|
||||
PERMIT_DISTFILES_CDROM = Yes
|
||||
PERMIT_DISTFILES_FTP = Yes
|
||||
|
||||
MASTER_SITES = https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/${FV}/linux-i686/xpi/ \
|
||||
http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/${FV}/linux-i686/xpi/ \
|
||||
ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/${FV}/linux-i686/xpi/
|
||||
|
||||
LANGUAGES = ar be bg bn-BD br ca cs da de el en-GB en-US es-AR es-ES et eu \
|
||||
fi fr fy-NL ga-IE gd gl he hu id is it ja ko lt nb-NO nl nn-NO \
|
||||
pa-IN pl pt-BR pt-PT rm ro ru si sk sl sq sv-SE ta-LK tr uk vi \
|
||||
zh-CN zh-TW
|
||||
|
||||
BUILD_DEPENDS = archivers/unzip
|
||||
RUN_DEPENDS = thunderbird-${FV:S/b/beta/}:mail/mozilla-thunderbird
|
||||
|
||||
DIST_SUBDIR = mozilla/${NAME}-${FV}
|
||||
NO_BUILD = Yes
|
||||
NO_REGRESS = Yes
|
||||
EXTRACT_ONLY =
|
||||
|
||||
.for i in ${LANGUAGES}
|
||||
SUPDISTFILES += $i.xpi
|
||||
.endfor
|
||||
|
||||
PKGNAME = ${NAME}-$L-${FV:S/b/beta/}
|
||||
REVISION = 0
|
||||
COMMENT = $L language pack for Thunderbird
|
||||
DISTFILES = $L.xpi
|
||||
|
||||
# use the same for all subpackages
|
||||
PKGDIR = ${.CURDIR}/../pkg
|
||||
PLIST = ${PKGDIR}/PLIST
|
||||
DESCR = ${PKGDIR}/DESCR
|
||||
CHECKSUM_FILE = ${.CURDIR}/../distinfo
|
||||
MESSAGE= ${PKGDIR}/MESSAGE
|
||||
SUBST_VARS = V L
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/lib/thunderbird-$V/extensions
|
||||
${INSTALL_DATA} ${FULLDISTDIR}/$L.xpi ${PREFIX}/lib/thunderbird-$V/extensions/langpack-$L@thunderbird.mozilla.org.xpi
|
5
mail/thunderbird-i18n/ar/Makefile
Normal file
5
mail/thunderbird-i18n/ar/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
L = ar
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/be/Makefile
Normal file
5
mail/thunderbird-i18n/be/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
L = be
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/bg/Makefile
Normal file
5
mail/thunderbird-i18n/bg/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
L = bg
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/bn-BD/Makefile
Normal file
5
mail/thunderbird-i18n/bn-BD/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
L = bn-BD
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/br/Makefile
Normal file
5
mail/thunderbird-i18n/br/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
L = br
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/ca/Makefile
Normal file
5
mail/thunderbird-i18n/ca/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
L = ca
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/cs/Makefile
Normal file
5
mail/thunderbird-i18n/cs/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
L = cs
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/da/Makefile
Normal file
5
mail/thunderbird-i18n/da/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
L = da
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/de/Makefile
Normal file
5
mail/thunderbird-i18n/de/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
L = de
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/el/Makefile
Normal file
5
mail/thunderbird-i18n/el/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:57 landry Exp $
|
||||
|
||||
L = el
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/en-GB/Makefile
Normal file
5
mail/thunderbird-i18n/en-GB/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = en-GB
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/en-US/Makefile
Normal file
5
mail/thunderbird-i18n/en-US/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = en-US
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/es-AR/Makefile
Normal file
5
mail/thunderbird-i18n/es-AR/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = es-AR
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/es-ES/Makefile
Normal file
5
mail/thunderbird-i18n/es-ES/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = es-ES
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/et/Makefile
Normal file
5
mail/thunderbird-i18n/et/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = et
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/eu/Makefile
Normal file
5
mail/thunderbird-i18n/eu/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = eu
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/fi/Makefile
Normal file
5
mail/thunderbird-i18n/fi/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = fi
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/fr/Makefile
Normal file
5
mail/thunderbird-i18n/fr/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = fr
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/fy-NL/Makefile
Normal file
5
mail/thunderbird-i18n/fy-NL/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = fy-NL
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/ga-IE/Makefile
Normal file
5
mail/thunderbird-i18n/ga-IE/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = ga-IE
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/gd/Makefile
Normal file
5
mail/thunderbird-i18n/gd/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = gd
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/gl/Makefile
Normal file
5
mail/thunderbird-i18n/gl/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = gl
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/he/Makefile
Normal file
5
mail/thunderbird-i18n/he/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = he
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/hu/Makefile
Normal file
5
mail/thunderbird-i18n/hu/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = hu
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/id/Makefile
Normal file
5
mail/thunderbird-i18n/id/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = id
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/is/Makefile
Normal file
5
mail/thunderbird-i18n/is/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = is
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/it/Makefile
Normal file
5
mail/thunderbird-i18n/it/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = it
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/ja/Makefile
Normal file
5
mail/thunderbird-i18n/ja/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = ja
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/ko/Makefile
Normal file
5
mail/thunderbird-i18n/ko/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = ko
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/lt/Makefile
Normal file
5
mail/thunderbird-i18n/lt/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = lt
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/nb-NO/Makefile
Normal file
5
mail/thunderbird-i18n/nb-NO/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = nb-NO
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/nl/Makefile
Normal file
5
mail/thunderbird-i18n/nl/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = nl
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/nn-NO/Makefile
Normal file
5
mail/thunderbird-i18n/nn-NO/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = nn-NO
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/thunderbird-i18n/pa-IN/Makefile
Normal file
5
mail/thunderbird-i18n/pa-IN/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
# $OpenBSD: Makefile,v 1.1 2012/01/22 17:11:58 landry Exp $
|
||||
|
||||
L = pa-IN
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,4 +1,4 @@
|
||||
Language pack (ar)
|
||||
Language pack (${L})
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (be)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (bg)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (bn-BD)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (br)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (ca) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (cs) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (da) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (de) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (el)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (en-GB) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (en-US)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (es-AR) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (es-ES) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (et)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (eu) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (fi) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (fr) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (fy-NL)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (ga-IE) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (gd)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (gl)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (he) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (hu) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (id)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (is)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (it) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (ja) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (ko) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (lt) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (nb-NO) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (nl) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (nn-NO) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (pa-IN)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (pl) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (pt-BR) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (pt-PT) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (rm)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (ro)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (ru) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (si)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (sk) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (sl) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (sq)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (sv-SE) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (ta-LK)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (tr) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (uk) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (vi)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (zh-CN)
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
@ -1,4 +0,0 @@
|
||||
Language pack (zh-TW) for Thunderbird by MLP.
|
||||
Mozilla Localization Project, abbreviated as MLP, tries to help and ease
|
||||
the availability of mozilla.org products toward different world cultures
|
||||
and languages through the support of the open source community.
|
3
mail/thunderbird-i18n/pkg/PLIST
Normal file
3
mail/thunderbird-i18n/pkg/PLIST
Normal file
@ -0,0 +1,3 @@
|
||||
@comment $OpenBSD: PLIST,v 1.3 2012/01/22 17:11:58 landry Exp $
|
||||
@pkgpath mail/thunderbird-i18n,-${L}
|
||||
lib/thunderbird-${V}/extensions/langpack-${L}@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-ar,v 1.3 2011/07/24 07:13:01 landry Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-ar@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-be,v 1.4 2011/12/08 02:18:36 nigel Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-be@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-bg,v 1.5 2011/12/08 02:18:36 nigel Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-bg@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-bn-BD,v 1.1 2011/12/08 02:18:36 nigel Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-bn-BD@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-br,v 1.1 2011/07/24 07:13:01 landry Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-br@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-ca,v 1.3 2011/07/24 07:13:01 landry Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-ca@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-cs,v 1.3 2011/07/24 07:13:01 landry Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-cs@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-da,v 1.3 2011/07/24 07:13:01 landry Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-da@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-de,v 1.3 2011/07/24 07:13:01 landry Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-de@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-el,v 1.4 2011/12/08 02:18:36 nigel Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-el@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-en-GB,v 1.4 2011/07/24 07:13:01 landry Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-en-GB@thunderbird.mozilla.org.xpi
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-en-US,v 1.1 2011/07/24 07:13:01 landry Exp $
|
||||
lib/thunderbird-${V}/extensions/langpack-en-US@thunderbird.mozilla.org.xpi
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user