debian/0000775000000000000000000000000012243646722007200 5ustar debian/fonts-ipafont-gothic.preinst0000664000000000000000000000212512157157512014646 0ustar #!/bin/sh # set -e OTF_VERSION=00302-4 OTF_ALT_NAME=otf-japanese-gothic OTF_FONT_ENTRY=/usr/share/fonts/opentype/ipafont/ipag.otf CHECK_VERSION=00303-5 OLD_ALT_NAME=ttf-japanese-gothic FONT_ENTRY=$OTF_FONT_ENTRY OLD_FONT_ENTRY=/usr/share/fonts/opentype/ipafont/ipag.ttf case "$1" in install|upgrade) if dpkg --compare-versions "$2" lt-nl "$OTF_VERSION"; then # remove old alternative otf symlinks. update-alternatives --remove $OTF_ALT_NAME.otf $OTF_FONT_ENTRY fi if dpkg --compare-versions "$2" lt-nl "$CHECK_VERSION"; then if [ -d /usr/share/fonts/opentype/fonts-ipafont-gothic ]; then update-alternatives --remove $OLD_ALT_NAME.ttf /usr/share/fonts/opentype/fonts-ipafont-gothic/ipag.ttf else update-alternatives --remove $OLD_ALT_NAME.ttf $FONT_ENTRY fi fi # do this on new installations, too, as these could be "upgrades" # from otf-ipafont-gothic if dpkg --compare-versions "$2" lt "00303-10.1~" ; then update-alternatives --remove $OLD_ALT_NAME.ttf $OLD_FONT_ENTRY fi esac #DEBHELPER# exit 0 debian/fonts-ipafont-gothic.docs0000664000000000000000000000001412157157512014105 0ustar Readme*.txt debian/fonts-ipafont-mincho.install0000664000000000000000000000015412157157512014630 0ustar ipam*.ttf usr/share/fonts/opentype/ipafont-mincho/ debian/65-fonts-ipafont-mincho.conf etc/fonts/conf.avail debian/fonts-ipafont-mincho.preinst0000664000000000000000000000212512157157512014646 0ustar #!/bin/sh # set -e OTF_VERSION=00302-4 OTF_ALT_NAME=otf-japanese-mincho OTF_FONT_ENTRY=/usr/share/fonts/opentype/ipafont/ipam.otf CHECK_VERSION=00303-5 OLD_ALT_NAME=ttf-japanese-mincho FONT_ENTRY=$OTF_FONT_ENTRY OLD_FONT_ENTRY=/usr/share/fonts/opentype/ipafont/ipam.ttf case "$1" in install|upgrade) if dpkg --compare-versions "$2" lt-nl "$OTF_VERSION"; then # remove old alternative otf symlinks. update-alternatives --remove $OTF_ALT_NAME.otf $OTF_FONT_ENTRY fi if dpkg --compare-versions "$2" lt-nl "$CHECK_VERSION"; then if [ -d /usr/share/fonts/opentype/fonts-ipafont-mincho ]; then update-alternatives --remove $OLD_ALT_NAME.ttf /usr/share/fonts/opentype/fonts-ipafont-mincho/ipam.ttf else update-alternatives --remove $OLD_ALT_NAME.ttf $FONT_ENTRY fi fi # do this on new installations, too, as these could be "upgrades" # from otf-ipafont-mincho if dpkg --compare-versions "$2" lt "00303-10.1~" ; then update-alternatives --remove $OLD_ALT_NAME.ttf $OLD_FONT_ENTRY fi esac #DEBHELPER# exit 0 debian/compat0000664000000000000000000000000212157157512010374 0ustar 9 debian/fonts-ipafont-mincho.dirs0000777000000000000000000000000012157157512021043 2fonts-ipafont-gothic.dirsustar debian/fonts-ipafont.preinst0000664000000000000000000000261012157157512013372 0ustar #!/bin/sh # # stolen from ttf-dzongkha/debian/ttf-dzongkha.preinst :) # set -e VERSION=00301-3 PKG=otf-ipafont FILE=/etc/defoma/hints/${PKG}.hints VERSION_OTF=00302-1 # Remove a no-longer used conffile rm_conffile() { local PKGNAME="$1" local CONFFILE="$2" [ -e "$CONFFILE" ] || return 0 local md5sum="$(md5sum $CONFFILE | sed -e 's/ .*//')" local old_md5sum="$(dpkg-query -W -f='${Conffiles}' $PKGNAME | \ sed -n -e "\' $CONFFILE ' { s/ obsolete$//; s/.* //; p }")" if [ "$md5sum" != "$old_md5sum" ]; then echo "Obsolete conffile $CONFFILE has been modified by you." echo "Saving as $CONFFILE.dpkg-bak ..." mv -f "$CONFFILE" "$CONFFILE".dpkg-bak else echo "Removing obsolete conffile $CONFFILE ..." rm -f "$CONFFILE" fi } case "$1" in install|upgrade) if dpkg --compare-versions "$2" lt-nl "$VERSION"; then if [ -f $FILE ]; then if [ -x /usr/bin/defoma-font ]; then defoma-font purge-all $FILE || true fi fi rm_conffile $PKG $FILE fi if dpkg --compare-versions "$2" lt-nl "$VERSION_OTF"; then # remove old alternative otf symlinks. update-alternatives --remove otf-japanese-gothic.otf \ /usr/share/fonts/opentype/ipafont/ipag.otf update-alternatives --remove otf-japanese-mincho.otf \ /usr/share/fonts/opentype/ipafont/ipam.otf fi esac #DEBHELPER# debian/rules0000775000000000000000000000022712157157512010257 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ override_dh_builddeb: dh_builddeb -- -Zxz -Sextreme -z9 debian/otf-ipafont-mincho.preinst0000664000000000000000000000047012157157512014306 0ustar #!/bin/sh set -e OLD_ALT_NAME="ttf-japanese-mincho" OLD_FONT_ENTRY="/usr/share/fonts/opentype/ipafont/ipam.ttf" if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then if dpkg --compare-versions "$2" lt-nl "00303-10.1~"; then update-alternatives --remove $OLD_ALT_NAME.ttf $OLD_FONT_ENTRY fi fi #DEBHELPER# debian/fonts-ipafont-gothic.prerm0000664000000000000000000000212312157157512014305 0ustar #!/bin/sh # # see: dh_installdeb(1) set -e # font alternatives ALT_GOTHIC_NAME="fonts-japanese-gothic" GOTHIC_FONT_ENTRY="/usr/share/fonts/opentype/ipafont-gothic/ipag.ttf" # summary of how this script can be called: # * `remove' # * `upgrade' # * `failed-upgrade' # * `remove' `in-favour' # * `deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in upgrade|deconfigure) ;; remove) # alternative update-alternatives --remove $ALT_GOTHIC_NAME.ttf $GOTHIC_FONT_ENTRY ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/fonts-ipafont-gothic.lintian-overrides0000664000000000000000000000006712157157512016623 0ustar fonts-ipafont-gothic: package-contains-empty-directory debian/fonts-ipafont-gothic.dirs0000664000000000000000000000003212157157512014116 0ustar usr/share/fonts/truetype/ debian/source/0000775000000000000000000000000012157157512010476 5ustar debian/source/format0000664000000000000000000000001412157157512011704 0ustar 3.0 (quilt) debian/65-fonts-ipafont-gothic.conf0000664000000000000000000000432612100215655014333 0ustar IPAGothic monospace IPAGothic sans-serif IPAPGothic sans-serif ja sans-serif IPA Pゴシック GothicBBB IPA Pゴシック IPA Pゴシック 18 hintnone false ja monospace IPAゴシック IPAゴシック 18 hintnone false debian/fonts-ipafont-gothic.links0000664000000000000000000000014212077222124014270 0ustar /etc/fonts/conf.avail/65-fonts-ipafont-gothic.conf /etc/fonts/conf.d/65-fonts-ipafont-gothic.conf debian/fonts-ipafont-mincho.postinst0000664000000000000000000000251412157157512015047 0ustar #!/bin/sh # # see: dh_installdeb(1) set -e # font alternatives ALT_MINCHO_NAME="fonts-japanese-mincho" MINCHO_FONT_ENTRY="/usr/share/fonts/opentype/ipafont-mincho/ipam.ttf" FONT_PRIORITY=100 add_alternate_mincho_font_entry() { update-alternatives --install \ /usr/share/fonts/truetype/$ALT_MINCHO_NAME.ttf \ $ALT_MINCHO_NAME.ttf \ $MINCHO_FONT_ENTRY \ $FONT_PRIORITY } # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) # alternatives add_alternate_mincho_font_entry ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/watch0000664000000000000000000000033712157157512010232 0ustar # Compulsory line, this is a version 3 file version=3 opts="filenamemangle=s/\.php/\.zip/" \ http://ossipedia.ipa.go.jp/ipafont/download.html?ruleagreement=%E5%90%8C%E6%84%8F%E3%81%99%E3%82%8B%2FAccept \ IPAfont(.*)\.php debian/control0000664000000000000000000000630112157157512010601 0ustar Source: fonts-ipafont Section: fonts Priority: optional Maintainer: Debian Fonts Task Force Uploaders: Hideki Yamane Build-Depends: debhelper (>= 9.20120518~) Standards-Version: 3.9.4 Homepage: http://ossipedia.ipa.go.jp/ipafont/index.html Vcs-Git: git://anonscm.debian.org/pkg-fonts/fonts-ipafont/ Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-fonts/fonts-ipafont.git;a=summary Package: fonts-ipafont Architecture: all Multi-Arch: foreign Pre-Depends: dpkg (>= 1.15.6~), ${misc:Pre-Depends} Depends: ${misc:Depends}, fonts-ipafont-gothic, fonts-ipafont-mincho Breaks: ttf-ipafont (<= 00203-13), otf-ipafont (<< 00303-1) Replaces: otf-ipafont (<< 00303-1) Description: Japanese OpenType font set, IPAfont IPAfont is a Japanese OpenType, a scalable font which was developed to supersede both the TrueType and the Type 1 ("PostScript") font formats, font set that is provided by Information-technology Promotion Agency, Japan (IPA). . IPAfont is an outline font set suitable for both display and printing. . This is metapackage that depends on gothic and mincho font packages. Package: fonts-ipafont-gothic Architecture: all Multi-Arch: foreign Pre-Depends: dpkg (>= 1.15.6~), ${misc:Pre-Depends} Depends: ${misc:Depends} Recommends: fonts-ipafont-mincho Breaks: ttf-ipafont (<= 00203-13), otf-ipafont (<= 00301-4), otf-ipafont-gothic (<< 00303-1) Replaces: otf-ipafont-gothic (<< 00303-1) Provides: fonts-japanese-gothic Description: Japanese OpenType font set, IPA Gothic font IPAfont is a Japanese OpenType, a scalable font which was developed to supersede both the TrueType and the Type 1 ("PostScript") font formats, font set that is provided by Information-technology Promotion Agency, Japan (IPA). . IPAfont is an outline font set suitable for both display and printing. . It comes with 2 styles in it. Equal-width and propotional styles are provided for Gothic (san-serif) styles. It is known for its quality and formal style and consists of IPA Gothic and IPA P Gothic. . It covers practically every characters used in Japanese business environments, i.e. about 11,000 characters based on JIS X 0213:2004. Package: fonts-ipafont-mincho Architecture: all Multi-Arch: foreign Pre-Depends: dpkg (>= 1.15.6~), ${misc:Pre-Depends} Depends: ${misc:Depends} Recommends: fonts-ipafont-gothic Breaks: ttf-ipafont (<= 00203-13), otf-ipafont (<= 00301-4), otf-ipafont-mincho (<< 00303-1) Replaces: otf-ipafont-mincho (<< 00303-1) Provides: fonts-japanese-mincho Description: Japanese OpenType font set, IPA Mincho font IPAfont is a Japanese OpenType, a scalable font which was developed to supersede both the TrueType and the Type 1 ("PostScript") font formats, font set that is provided by Information-technology Promotion Agency, Japan (IPA). . IPAfont is an outline font set suitable for both display and printing. . It comes with 2 styles in it. Equal-width and propotional styles are provided for Mincho (serif) style. It is known for its quality and formal style and consists of IPA Mincho and IPA P Mincho. . It covers practically every characters used in Japanese business environments, i.e. about 11,000 characters based on JIS X 0213:2004. debian/fonts-ipafont-gothic.postinst0000664000000000000000000000251412157157512015047 0ustar #!/bin/sh # # see: dh_installdeb(1) set -e # font alternatives ALT_GOTHIC_NAME="fonts-japanese-gothic" GOTHIC_FONT_ENTRY="/usr/share/fonts/opentype/ipafont-gothic/ipag.ttf" FONT_PRIORITY=100 add_alternate_gothic_font_entry() { update-alternatives --install \ /usr/share/fonts/truetype/$ALT_GOTHIC_NAME.ttf \ $ALT_GOTHIC_NAME.ttf \ $GOTHIC_FONT_ENTRY \ $FONT_PRIORITY } # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) # alternatives add_alternate_gothic_font_entry ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/65-fonts-ipafont-mincho.conf0000664000000000000000000000334712104737116014342 0ustar IPAMincho serif IPAPMincho serif ja serif IPA P明朝 Ryumin IPA P明朝 IPA P明朝 18 hintnone false IPA明朝 18 hintnone false debian/copyright0000664000000000000000000005273712157157512011147 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: IPAfont Upstream-Contact: Information-technology Promotion Agency, Japan. Source: http://www.ipa.go.jp/osc/ipafont/ Files: *.ttf Copyright: 2007-2011 Information-technology Promotion Agency, Japan. License: IPA-1 Files: debian/* Copyright: 2009-2011 Hideki Yamane License: GPL-3+ License: IPA-1 IPAフォントライセンスv1.0 . 許諾者は、この使用許諾(以下「本契約」といいます。)に定める条件の 下で、許諾プログラム(1条に定義するところによります。)を提供します。 受領者(1条に定義するところによります。)が、許諾プログラムを使用し、 複製し、または頒布する行為、その他、本契約に定める権利の利用を行っ た場合、受領者は本契約に同意したものと見なします。 . 第1条 用語の定義 . 本契約において、次の各号に掲げる用語は、当該各号に定めるところによ ります。 . 1.「デジタル・フォント・プログラム」とは、フォントを含み、レンダリン グしまたは表示するために用いられるコンピュータ・プログラムをいい ます。 2.「許諾プログラム」とは、許諾者が本契約の下で許諾するデジタル・フォ ント・プログラムをいいます。 3.「派生プログラム」とは、許諾プログラムの一部または全部を、改変し、 加除修正等し、入れ替え、その他翻案したデジタル・フォント・プログラ ムをいい、許諾プログラムの一部もしくは全部から文字情報を取り出し、 またはデジタル・ドキュメント・ファイルからエンベッドされたフォント を取り出し、取り出された文字情報をそのまま、または改変をなして新 たなデジタル・フォント・プログラムとして製作されたものを含みます。 4.「デジタル・コンテンツ」とは、デジタル・データ形式によってエンド・ ユーザに提供される制作物のことをいい、動画・静止画等の映像コンテ ンツおよびテレビ番組等の放送コンテンツ、ならびに文字テキスト、画 像、図形等を含んで構成された制作物を含みます。 5.「デジタル・ドキュメント・ファイル」とは、PDFファイルその他、各種 ソフトウェア・プログラムによって製作されたデジタル・コンテンツで あって、その中にフォントを表示するために許諾プログラムの全部また は一部が埋め込まれた(エンベッドされた)ものをいいます。フォント が「エンベッドされた」とは、当該フォントが埋め込まれた特定の「デ ジタル・ドキュメント・ファイル」においてのみ表示されるために使用 されている状態を指し、その特定の「デジタル・ドキュメント・ファイ ル」以外でフォントを表示するために使用できるデジタル・フォント・ プログラムに含まれている場合と区別されます。 6.「コンピュータ」とは、本契約においては、サーバを含みます。 7.「複製その他の利用」とは、複製、譲渡、頒布、貸与、公衆送信、上映、 展示、翻案その他の利用をいいます。 8.「受領者」とは、許諾プログラムを本契約の下で受領した人をいい、受 領者から許諾プログラムを受領した人を含みます。 . 第2条 使用許諾の付与 . 許諾者は受領者に対し、本契約の条項に従い、すべての国で、許諾プログ ラムを使用することを許諾します。ただし、許諾プログラムに存在する一 切の権利はすべて許諾者が保有しています。本契約は、本契約で明示的に 定められている場合を除き、いかなる意味においても、許諾者が保有する 許諾プログラムに関する一切の権利および、いかなる商標、商号、もしく はサービス・マークに関する権利をも受領者に移転するものではありませ ん。 . 1.受領者は本契約に定める条件に従い、許諾プログラムを任意の数のコン ピュータにインストールし、当該コンピュータで使用することができま す。 2.受領者はコンピュータにインストールされた許諾プログラムをそのまま、 または改変を行ったうえで、印刷物およびデジタル・コンテンツにおい て、文字テキスト表現等として使用することができます。 3.受領者は前項の定めに従い作成した印刷物およびデジタル・コンテンツ につき、その商用・非商用の別、および放送、通信、各種記録メディア などの媒体の形式を問わず、複製その他の利用をすることができます。 4.受領者がデジタル・ドキュメント・ファイルからエンベッドされたフォ ントを取り出して派生プログラムを作成した場合には、かかる派生プロ グラムは本契約に定める条件に従う必要があります。 5.許諾プログラムのエンベッドされたフォントがデジタル・ドキュメント・ ファイル内のデジタル・コンテンツをレンダリングするためにのみ使用 される場合において、受領者が当該デジタル・ドキュメント・ファイル を複製その他の利用をする場合には、受領者はかかる行為に関しては本 契約の下ではいかなる義務をも負いません。 6.受領者は、3条2項の定めに従い、商用・非商用を問わず、許諾プログラ ムをそのままの状態で改変することなく複製して第三者への譲渡し、公 衆送信し、その他の方法で再配布することができます(以下、「再配布」 といいます。)。 7.受領者は、上記の許諾プログラムについて定められた条件と同様の条件 に従って、派生プログラムを作成し、使用し、複製し、再配布すること ができます。ただし、受領者が派生プログラムを再配布する場合には、 3条1項の定めに従うものとします。 . 第3条 制限 . 前条により付与された使用許諾は、以下の制限に服します。 . 1.派生プログラムが前条4項及び7項に基づき再配布される場合には、以下 の全ての条件を満たさなければなりません。 (1)派生プログラムを再配布する際には、下記もまた、当該派生プログラ ムと一緒に再配布され、オンラインで提供され、または、郵送費・媒 体及び取扱手数料の合計を超えない実費と引き換えに媒体を郵送する 方法により提供されなければなりません。 (a)派生プログラムの写し; および (b)派生プログラムを作成する過程でフォント開発プログラムによって 作成された追加のファイルであって派生プログラムをさらに加工す るにあたって利用できるファイルが存在すれば、当該ファイル (2)派生プログラムの受領者が、派生プログラムを、このライセンスの下 で最初にリリースされた許諾プログラム(以下、「オリジナル・プロ グラム」といいます。)に置き換えることができる方法を再配布する ものとします。かかる方法は、オリジナル・ファイルからの差分ファ イルの提供、または、派生プログラムをオリジナル・プログラムに置 き換える方法を示す指示の提供などが考えられます。 (3)派生プログラムを、本契約書に定められた条件の下でライセンスしな ければなりません。 (4)派生プログラムのプログラム名、フォント名またはファイル名として、 許諾プログラムが用いているのと同一の名称、またはこれを含む名称 を使用してはなりません。 (5)本項の要件を満たすためにオンラインで提供し、または媒体を郵送す る方法で提供されるものは、その提供を希望するいかなる者によって も提供が可能です。 2.受領者が前条6項に基づき許諾プログラムを再配布する場合には、以下の 全ての条件を満たさなければなりません。 (1)許諾プログラムの名称を変更してはなりません。 (2)許諾プログラムに加工その他の改変を加えてはなりません。 (3)本契約の写しを許諾プログラムに添付しなければなりません。 3.許諾プログラムは、現状有姿で提供されており、許諾プログラムまたは 派生プログラムについて、許諾者は一切の明示または黙示の保証(権利 の所在、非侵害、商品性、特定目的への適合性を含むがこれに限られま せん)を行いません。いかなる場合にも、その原因を問わず、契約上の 責任か厳格責任か過失その他の不法行為責任かにかかわらず、また事前 に通知されたか否かにかかわらず、許諾者は、許諾プログラムまたは派 生プログラムのインストール、使用、複製その他の利用または本契約上 の権利の行使によって生じた一切の損害(直接・間接・付随的・特別・ 拡大・懲罰的または結果的損害)(商品またはサービスの代替品の調達、 システム障害から生じた損害、現存するデータまたはプログラムの紛失 または破損、逸失利益を含むがこれに限られません)について責任を負 いません。4.許諾プログラムまたは派生プログラムのインストール、使 用、複製その他の利用に関して、許諾者は技術的な質問や問い合わせ等 に対する対応その他、いかなるユーザ・サポートをも行う義務を負いま せん。 . 第4条 契約の終了 . 1.本契約の有効期間は、受領者が許諾プログラムを受領した時に開始し、 受領者が許諾プログラムを何らかの方法で保持する限り続くものとしま す。 2.前項の定めにかかわらず、受領者が本契約に定める各条項に違反したと きは、本契約は、何らの催告を要することなく、自動的に終了し、当該 受領者はそれ以後、許諾プログラムおよび派生プログラムを一切使用し または複製その他の利用をすることができないものとします。ただし、 かかる契約の終了は、当該違反した受領者から許諾プログラムまたは派 生プログラムの配布を受けた受領者の権利に影響を及ぼすものではあり ません。 . 第5条 準拠法 . 1.IPAは、本契約の変更バージョンまたは新しいバージョンを公表すること ができます。その場合には、受領者は、許諾プログラムまたは派生プロ グラムの使用、複製その他の利用または再配布にあたり、本契約または 変更後の契約のいずれかを選択することができます。その他、上記に記 載されていない条項に関しては日本の著作権法および関連法規に従うも のとします。 2.本契約は、日本法に基づき解釈されます。 . . IPA Font License Agreement v1.0 . The Licensor provides the Licensed Program (as defined in Article 1 below) under the terms of this license agreement (“Agreement”). Any use, reproduction or distribution of the Licensed Program, or any exercise of rights under this Agreement by a Recipient (as defined in Article 1 below) constitutes the Recipient's acceptance of this Agreement. . Article 1 (Definitions) 1.“Digital Font Program” shall mean a computer program containing, or used to render or display fonts. 2.“Licensed Program” shall mean a Digital Font Program licensed by the Licensor under this Agreement. 3.“Derived Program” shall mean a Digital Font Program created as a result of a modification, addition, deletion, replacement or any other adaptation to or of a part or all of the Licensed Program, and includes a case where a Digital Font Program newly created by retrieving font information from a part or all of the Licensed Program or Embedded Fonts from a Digital Document File with or without modification of the retrieved font information. 4.“Digital Content” shall mean products provided to end users in the form of digital data, including video content, motion and/or still pictures, TV programs or other broadcasting content and products consisting of character text, pictures, photographic images, graphic symbols and/or the like. 5.“Digital Document File” shall mean a PDF file or other Digital Content created by various software programs in which a part or all of the Licensed Program becomes embedded or contained in the file for the display of the font (“Embedded Fonts”). Embedded Fonts are used only in the display of characters in the particular Digital Document File within which they are embedded, and shall be distinguished from those in any Digital Font Program, which may be used for display of characters outside that particular Digital Document File. 6.“Computer” shall include a server in this Agreement. 7.“Reproduction and Other Exploitation” shall mean reproduction, transfer, distribution, lease, public transmission, presentation, exhibition, adaptation and any other exploitation. 8.“Recipient” shall mean anyone who receives the Licensed Program under this Agreement, including one that receives the Licensed Program from a Recipient. . Article 2 (Grant of License) The Licensor grants to the Recipient a license to use the Licensed Program in any and all countries in accordance with each of the provisions set forth in this Agreement. However, any and all rights underlying in the Licensed Program shall be held by the Licensor. In no sense is this Agreement intended to transfer any right relating to the Licensed Program held by the Licensor except as specifically set forth herein or any right relating to any trademark, trade name, or service mark to the Recipient. . 1.The Recipient may install the Licensed Program on any number of Computers and use the same in accordance with the provisions set forth in this Agreement. 2.The Recipient may use the Licensed Program, with or without modification in printed materials or in Digital Content as an expression of character texts or the like. 3.The Recipient may conduct Reproduction and Other Exploitation of the printed materials and Digital Content created in accordance with the preceding Paragraph, for commercial or non-commercial purposes and in any form of media including but not limited to broadcasting, communication and various recording media. 4.If any Recipient extracts Embedded Fonts from a Digital Document File to create a Derived Program, such Derived Program shall be subject to the terms of this agreement. 5.If any Recipient performs Reproduction or Other Exploitation of a Digital Document File in which Embedded Fonts of the Licensed Program are used only for rendering the Digital Content within such Digital Document File then such Recipient shall have no further obligations under this Agreement in relation to such actions. 6.The Recipient may reproduce the Licensed Program as is without modification and transfer such copies, publicly transmit or otherwise redistribute the Licensed Program to a third party for commercial or non-commercial purposes (“Redistribute”), in accordance with the provisions set forth in Article 3 Paragraph 2. 7.The Recipient may create, use, reproduce and/or Redistribute a Derived Program under the terms stated above for the Licensed Program: provided, that the Recipient shall follow the provisions set forth in Article 3 Paragraph 1 when Redistributing the Derived Program. . Article 3 (Restriction) . The license granted in the preceding Article shall be subject to the following restrictions: . 1.If a Derived Program is Redistributed pursuant to Paragraph 4 and 7 of the preceding Article, the following conditions must be met : (1)The following must be also Redistributed together with the Derived Program, or be made available online or by means of mailing mechanisms in exchange for a cost which does not exceed the total costs of postage, storage medium and handling fees: (a)a copy of the Derived Program; and (b)any additional file created by the font developing program in the course of creating the Derived Program that can be used for further modification of the Derived Program, if any. (2)It is required to also Redistribute means to enable recipients of the Derived Program to replace the Derived Program with the Licensed Program first released under this License (the “Original Program”). Such means may be to provide a difference file from the Original Program, or instructions setting out a method to replace the Derived Program with the Original Program. (3)The Recipient must license the Derived Program under the terms and conditions of this Agreement. (4)No one may use or include the name of the Licensed Program as a program name, font name or file name of the Derived Program. (5)Any material to be made available online or by means of mailing a medium to satisfy the requirements of this paragraph may be provided, verbatim, by any party wishing to do so. 2.If the Recipient Redistributes the Licensed Program pursuant to Paragraph 6 of the preceding Article, the Recipient shall meet all of the following conditions: (1)The Recipient may not change the name of the Licensed Program. (2)The Recipient may not alter or otherwise modify the Licensed Program. (3)The Recipient must attach a copy of this Agreement to the Licensed Program. 3.THIS LICENSED PROGRAM IS PROVIDED BY THE LICENSOR "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTY AS TO THE LICENSED PROGRAM OR ANY DERIVED PROGRAM, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO EVENT SHALL THE LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXTENDED, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO; PROCUREMENT OF SUBSTITUTED GOODS OR SERVICE; DAMAGES ARISING FROM SYSTEM FAILURE; LOSS OR CORRUPTION OF EXISTING DATA OR PROGRAM; LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE INSTALLATION, USE, THE REPRODUCTION OR OTHER EXPLOITATION OF THE LICENSED PROGRAM OR ANY DERIVED PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 4.The Licensor is under no obligation to respond to any technical questions or inquiries, or provide any other user support in connection with the installation, use or the Reproduction and Other Exploitation of the Licensed Program or Derived Programs thereof. . Article 4 (Termination of Agreement) 1.The term of this Agreement shall begin from the time of receipt of the Licensed Program by the Recipient and shall continue as long as the Recipient retains any such Licensed Program in any way. 2.Notwithstanding the provision set forth in the preceding Paragraph, in the event of the breach of any of the provisions set forth in this Agreement by the Recipient, this Agreement shall automatically terminate without any notice. In the case of such termination, the Recipient may not use or conduct Reproduction and Other Exploitation of the Licensed Program or a Derived Program: provided that such termination shall not affect any rights of any other Recipient receiving the Licensed Program or the Derived Program from such Recipient who breached this Agreement. . Article 5 (Governing Law) 1.IPA may publish revised and/or new versions of this License. In such an event, the Recipient may select either this Agreement or any subsequent version of the Agreement in using, conducting the Reproduction and Other Exploitation of, or Redistributing the Licensed Program or a Derived Program. Other matters not specified above shall be subject to the Copyright Law of Japan and other related laws and regulations of Japan. 2.This Agreement shall be construed under the laws of Japan. License: GPL-3+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. . On Debian systems, the complete text of version 3 of the General Public License can be found in `/usr/share/common-licenses/GPL-3'. debian/fonts-ipafont-mincho.docs0000664000000000000000000000001412157157512014105 0ustar Readme*.txt debian/changelog0000664000000000000000000002352112243646722011055 0ustar fonts-ipafont (00303-12ubuntu1) trusty; urgency=low * Merge from Debian unstable. Remaining changes: + Remove 'strong' binding and re-add LANG guards. + Add fontconfig files. -- Iain Lane Fri, 22 Nov 2013 12:27:59 +0000 fonts-ipafont (00303-12) unstable; urgency=low * debian/control - drop obsolete otf- packages - use canonical URL for Vcs-* -- Hideki Yamane Sun, 16 Jun 2013 03:23:06 +0900 fonts-ipafont (00303-11) unstable; urgency=low * debian/control - set Standards-Version: 3.9.4 - update Vcs-* field, moved from svn to git - make it "Multi-Arch: foreign" -- Hideki Yamane Tue, 04 Jun 2013 17:32:55 +0900 fonts-ipafont (00303-10.1ubuntu1) saucy; urgency=low * Merge from Debian unstable. Remaining changes: + Remove 'strong' binding and re-add LANG guards. + Add fontconfig files. -- Iain Lane Tue, 07 May 2013 12:13:52 +0100 fonts-ipafont (00303-10.1) unstable; urgency=low * Non-maintainer upload. * otf-ipafont-*.preinst: Unregister the ttf-japanese-*.ttf alternatives. * fonts-ipafont-*.preinst: Clean up the ttf-japanese-*.ttf alternatives set up by otf-ipafont-* in squeeze. This needs to be done in fonts-ipafont-* as well since there is no guarantee that the transitional otf-ipafont-* packages were installed and did clean this up. Since new installations of fonts-ipafont-* cannot be distinguished from "upgrades" from otf-ipafont-* this needs to be run on new installations, too. (Closes: #700341) -- Andreas Beckmann Thu, 14 Feb 2013 18:51:13 +0100 fonts-ipafont (00303-10ubuntu2) raring; urgency=low * Fix syntax error -- Iain Lane Thu, 07 Feb 2013 14:40:57 +0000 fonts-ipafont (00303-10ubuntu1) raring; urgency=low * Remove 'strong' binding and re-add LANG guards. * Add fontconfig files, taken from language-selector-common. -- Iain Lane Wed, 06 Feb 2013 11:15:20 +0000 fonts-ipafont (00303-10) unstable; urgency=low * debian/lintian*, debian/fonts-ipafont*.install - remove those to not override "no-upstream-changelog" * debian/fonts-ipafont-{gothic,mincho}.lintian-overrides - override "package-contains-empty-directory" -- Hideki Yamane Sat, 16 Jun 2012 05:34:42 +0900 fonts-ipafont (00303-9) unstable; urgency=low * debian/control - Bump up debhelper version to 9.20120518~ to deal with xz option * debian/compat - set 9 -- Hideki Yamane Tue, 12 Jun 2012 17:20:42 +0900 fonts-ipafont (00303-8) unstable; urgency=low * debian/*.dirs - re-add it to avoid error with installing alternatives (Closes: #676308) Thanks to Andreas Beckmann -- Hideki Yamane Sun, 10 Jun 2012 22:50:52 +0900 fonts-ipafont (00303-7) unstable; urgency=low * debian/rules - compress with xz * debian/control - set "Pre-Depends: dpkg (>= 1.15.6~)" to use xz - replace s/Conflicts/Breaks/g * debian/copyright - update to "Machine-readable debian/copyright file 1.0" * debian/lintian/fonts-ipafont*,fonts-ipafont.install - override "no-upstream-changelog" - fix "unused-override" * debian/fonts-ipafont*.dirs - remove unnecessary files -- Hideki Yamane Tue, 05 Jun 2012 08:47:26 +0900 fonts-ipafont (00303-6) unstable; urgency=low * debian/control - set "Standards-Version: 3.9.3" - set "Priority: extra" to otf-ipafont{,-gothic,-mincho} -- Hideki Yamane Sat, 10 Mar 2012 04:05:13 +0900 fonts-ipafont (00303-5) unstable; urgency=low * debian/fonts-ipafont-{gothic,mincho}.install - revert install path * debian/fonts-ipafont-{gothic,mincho}.{preinst,postinst,prerm} - use fonts-japanese-{gothic,mincho}.ttf, instead of ttf-japanese-{gothic,mincho} * debian/copyright - fix "syntax-error-in-dep5-copyright" lintian warning -- Hideki Yamane Mon, 19 Sep 2011 11:34:03 +0900 fonts-ipafont (00303-4) unstable; urgency=low * debian/control - Fix "Please recommend fonts-ipafont-gothic instead of otf-ipafont- gothic" (Closes: #636138) -- Hideki Yamane Wed, 03 Aug 2011 00:05:58 +0900 fonts-ipafont (00303-3) unstable; urgency=low * debian/control - fix Vcs-Svn field - introduce otf-ipafont-{gothic,mincho} as transitional dummy package - drop Provides as well - specify version for Conflicts: and Replaces: -- Hideki Yamane Fri, 29 Jul 2011 13:54:00 +0200 fonts-ipafont (00303-2) unstable; urgency=low * debian/control - fix Vcs-* field -- Hideki Yamane Wed, 27 Jul 2011 21:08:27 +0200 fonts-ipafont (00303-1) unstable; urgency=low * New upstream release * update package naming schema * debian/watch - adjust to deal with upstream change * debian/fonts-ipafont-{mincho,gothic}.dirs - now it creates /usr/share/fonts/truetype to avoid broken symlink for ttf-japanege-{mincho,gothic} * add lintian overrides to ignore fonts-duplicates during transition. -- Hideki Yamane Sun, 24 Jul 2011 16:54:59 +0200 otf-ipafont (00302-10) unstable; urgency=medium * debian/otf-ipafont-gothic.prerm - fix mistaken about removing otf-ipafont-mincho alternatives. Thanks to Nobuhiro Iwamatsu for the patch (Closes: #604622) -- Hideki Yamane Tue, 23 Nov 2010 19:13:51 +0900 otf-ipafont (00302-9) unstable; urgency=low * debian/control - Fix "package description: missing space after comma" Thanks to Lionel Elie Mamane (Closes: #591664) -- Hideki Yamane Thu, 05 Aug 2010 08:26:02 -0400 otf-ipafont (00302-8) unstable; urgency=low * debian/watch - update it to deal with upstream change * debian/control - update "Homepage:" field - bump up "Standards-Version: 3.9.0" with no change. -- Hideki Yamane Sat, 24 Jul 2010 17:44:42 +0900 otf-ipafont (00302-7) unstable; urgency=low * debian/control - Fix "Typo in Virtual Package name" (Closes: #585956) -- Hideki Yamane Tue, 15 Jun 2010 21:29:18 +0900 otf-ipafont (00302-6) unstable; urgency=low * debian/control - add "Provides: ttf-japanese-{gothic,mincho}". Those are OpenType font, but are provided as ttf-japanese-{gothic,mincho} because ttf-japanese-* is a just mechanism to be able to provide Japanese font with flexibilities. Thanks to Youhei SASAKI * Fix "Typo in Virtual Package name" (Closes: #585956) -- Hideki Yamane Tue, 15 Jun 2010 21:29:08 +0900 otf-ipafont (00302-5) unstable; urgency=low * debian/control - update my address - set "Build-Depends: debhelper (>= 7.0.50~)" - set "Standards-Version: 3.8.4" - remove "DM-Upload-Allowed: yes" since I became DD. * debian/otf-ipafont-mincho.dirs - add /usr/share/fonts/truetype to prevent installation error in some cases -- Hideki Yamane Sat, 22 May 2010 00:58:14 +0900 otf-ipafont (00302-4) unstable; urgency=low * debian/control - fix typo in description (Closes: #573713) Thanks to TAKAHASHI Motonobu * debian/otf-ipafont-{gothic,mincho}.preinst - add it to remove symlink in /usr/share/fonts/opentype Thanks to Atsuhito Kohda -- Hideki Yamane (Debian-JP) Sun, 21 Mar 2010 15:53:42 +0900 otf-ipafont (00302-3) unstable; urgency=low * debian/control - set "Conflicts: ttf-ipafont (<= 00203-13) -- Hideki Yamane (Debian-JP) Sat, 13 Mar 2010 20:35:20 +0900 otf-ipafont (00302-2) unstable; urgency=low * debian/control - fix to otf-ipafont depends to gothic and mincho package Thanks to Hideo Oshima (Closes: #572731) -- Hideki Yamane (Debian-JP) Sat, 06 Mar 2010 13:00:41 +0900 otf-ipafont (00302-1) unstable; urgency=low * New upstream release - fix "isFixedPitch" as 0 - change its extension from .otf to .ttf to deal with MacOSX (Snow Leopard) behaivor. * debian/control: - devide to otf-ipafont-gothic and otf-ipafont-mincho as user's request. otf-ipafont becomes meta package (Closes: #570067). - add "Conflicts: otf-ipafont (<= 00301-4)" to otf-ipafont-{gothic,mincho} - improve its description, ":" is not able to show correctly in some environment. * debian/otf-ipafont-{gothic,mincho}.{postinst,prerm},otf-ipafont.preinst - change otf-japanese-{gothic,mincho}.otf to ttf-*.ttf. - remove old otf symlinks. - set alternatives priority from 120 to 100 since otf-ipaexfont will be set to 120. * debian/otf-ipafont-{gothic,mincho}.install - install *.ttf files * debian/otf-ipafont-{gothic,mincho}.docs - install Readme*.txt -- Hideki Yamane (Debian-JP) Sat, 27 Feb 2010 23:46:52 +0900 otf-ipafont (00301-4) unstable; urgency=low * Drop x-ttcidfont-conf, fontconfig et al. from Suggests -- Christian Perrier Sun, 20 Dec 2009 17:37:50 +0100 otf-ipafont (00301-3) unstable; urgency=low * use debhelper7 * switch to source format 3.0 (quilt) * drop defoma -- Hideki Yamane (Debian-JP) Sat, 12 Dec 2009 17:11:28 +0900 otf-ipafont (00301-2) unstable; urgency=low * debian/watch: update it. * debian/control: Bump up Standards-Version: 3.8.3 with no change -- Hideki Yamane (Debian-JP) Sat, 22 Aug 2009 09:05:38 +0900 otf-ipafont (00301-1) unstable; urgency=low * Initial release (Closes: #531190) -- Hideki Yamane (Debian-JP) Sat, 20 Jun 2009 18:13:49 +0900 debian/fonts-ipafont-mincho.lintian-overrides0000664000000000000000000000006712157157512016623 0ustar fonts-ipafont-mincho: package-contains-empty-directory debian/fonts-ipafont-mincho.prerm0000664000000000000000000000212312157157512014305 0ustar #!/bin/sh # # see: dh_installdeb(1) set -e # font alternatives ALT_MINCHO_NAME="fonts-japanese-mincho" MINCHO_FONT_ENTRY="/usr/share/fonts/opentype/ipafont-mincho/ipam.ttf" # summary of how this script can be called: # * `remove' # * `upgrade' # * `failed-upgrade' # * `remove' `in-favour' # * `deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in upgrade|deconfigure) ;; remove) # alternative update-alternatives --remove $ALT_MINCHO_NAME.ttf $MINCHO_FONT_ENTRY ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/fonts-ipafont-gothic.install0000664000000000000000000000015412157157512014630 0ustar ipag*.ttf usr/share/fonts/opentype/ipafont-gothic/ debian/65-fonts-ipafont-gothic.conf etc/fonts/conf.avail debian/fonts-ipafont-mincho.links0000664000000000000000000000014212077222136014273 0ustar /etc/fonts/conf.avail/65-fonts-ipafont-mincho.conf /etc/fonts/conf.d/65-fonts-ipafont-mincho.conf debian/otf-ipafont-gothic.preinst0000664000000000000000000000047012157157512014306 0ustar #!/bin/sh set -e OLD_ALT_NAME="ttf-japanese-gothic" OLD_FONT_ENTRY="/usr/share/fonts/opentype/ipafont/ipag.ttf" if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then if dpkg --compare-versions "$2" lt-nl "00303-10.1~"; then update-alternatives --remove $OLD_ALT_NAME.ttf $OLD_FONT_ENTRY fi fi #DEBHELPER#