1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- %define exec_texhash [ -x %{_bindir}/texhash ] && %{_bindir}/env - %{_bindir}/texhash 2> /dev/null
- %define texmf %{_datadir}/texmf
- %define build_texmf %{buildroot}%{texmf}
- %define altplatex platex --kanji=euc
- %define makepdf(%1) %altplatex %1 && %altplatex %1 && %altplatex %1 && dvipdfmx %1;
- Summary: teTeX macro packages of writing manuscript for the Transaction of The Institute of Electrical Engineers of Japan
- Summary(ja): teTeX で使うマクロパッケージ 電気学会論文誌 原稿作成用
- Name: texmacro-ieej
- Version: 2.7
- Release: 1%{?_dist_release}
- BuildArch: noarch
- Source0: http://www2.iee.or.jp/ver2/honbu/32-doc-kenq/latex2e.zip
- URL: http://www.iee.or.jp/
- License: distributable
- Group: Applications/Publishing
- BuildRequires: tetex
- Buildroot: %{_tmppath}/%{name}-%{version}-root
- Distribution: Vine Linux
- Vendor: Project Vine
- %description
- teTeX macro packages of writing manuscript for the
- Transaction of The Institute of Electrical Engineers of Japan.
- Users can use this macro specifying "ieej" class.
- Including
- ieej.cls
- %description -l ja
- 電気学会論文誌 原稿作成用の teTeX で用いる追加マクロパッケージです。
- ieej クラスを指定して使用します。
- 以下のマクロが含まれています
- ieej.cls
- %define ieejsrcdir ieej%{version}/UNIXEUC
- %prep
- %setup -q -c -n %{name}-%{version}/
- %build
- (cd %ieejsrcdir
- %makepdf readme
- )
- %install
- %__rm -rf %{buildroot}
- %__mkdir_p %{build_texmf}/ptex/platex/ieej
- %__cp -a %ieejsrcdir/*.cls %{build_texmf}/ptex/platex/ieej
- %post
- %{exec_texhash}
- exit 0
- %postun
- %{exec_texhash}
- exit 0
- %clean
- %__rm -rf %{buildroot}
- %files
- %defattr(-,root,root)
- %doc %ieejsrcdir/*.{tex,pdf,1st}
- %{texmf}/ptex/platex/ieej
- %changelog
- * Sun Mar 29 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 2.7-1
- - initial build
|