2003-11-21(金) 曇のち晴 この日を編集
_ ニセ
外注の為に courier-imap, SquirrelMail のインストールをしました。メモ(courier-imap, SquirrelMail)が役に立ちました。もちろん otsune さんの最新の port を利用させていただきました。
_ FreeStyleWiki 野良 port 作成の検討(2)
www/tdiary のやり方を大いに参考にさせていただいてこの間の続きをやりました。何とか Makefile が作れたといった感じです。fswiki-FreeBSD.sh.in は未着手です。
_ portupgrade editors/xemacs-mule-packages devel/portlint lang/python editors/xemacs-packages www/mod_php4 japanese/kappa20
ports/58280 が commit されたので 念の為 /usr/local/etc/pkgtools.conf を
ALT_PKGDEP = { 'databases/grass' => 'local/grass', - 'mail/squirrelmail' => 'local/squirrelmail', + 'mail/squirrelmail' => 'japanese/squirrelmail', }
と修正しました。あまり意味はないと思いますが。。。
ja-k20fonts-0.395 < needs updating (port has 0.396) mod_php4-4.3.4_1,1 < needs updating (port has 4.3.4_2,1) portlint-2.5.0 < needs updating (port has 2.5.1) python-2.3.2_2 < needs updating (port has 2.3.2_3) xemacs-mule-packages-3.6 < needs updating (port has 3.7) xemacs-packages-9.0 < needs updating (port has 10.0)
2004-11-21(日) 晴 19:45 頃から大雨 安静時心拍数 56 この日を編集
_ portupgrade textproc/aspell multimedia/mplayer-skins misc/porteasy
aspell-0.60.1 < needs updating (port has 0.60.1.1) mplayer-skins-1.1.0_2 < needs updating (port has 1.1.0_3) porteasy-2.8.1 < needs updating (port has 2.8.2)
_ ドラえもんの声が交代へ 来春、大山のぶ代さん降板
そういえばカツオの声優さんが代わってからサザエさんを見ていないなぁ。違和感がありましたし。
2005-11-21(月) 晴 安静時心拍数 52 この日を編集
_ クリーンルーム x 2
午前、午後ともクリーンルームに篭もり実機でのデバッグ作業の手伝いをしました。立ちっぱなしの作業なので結構体力が要ります。しかし、クリーンルームに居ると時間が過ぎるのが早く感じるのはなぜでしょうか。逆「精神と時の部屋」です。
2006-11-21(火) 晴 安静時心拍数 62 この日を編集
_ 落札商品の発送
先日、出品したかっぱ寿司株主優待御食事券が先週の土曜日に売れたのですが、入金があったので発送してきました。郵便局に出かける前にFreeBSD 6-Stableを最新のソースに同期してmake worldを掛けておきました。それにしてもゆうゆう窓口は便利です。
_ ニンテンドーDS Lite クリスタルホワイト【メーカー生産終了】
なかなか手に入らないニンテンドーDS Liteですが、今週中盤はちょっとした祭りになりそうです。
- 11月22日18時00分
- 11月23日21時00分
- 11月23日22時00分
2007-11-21(水) 晴 安静時心拍数 63 この日を編集
_ 徹底攻略UMLモデリング技能認定試験問題集―L1(T1/T2)対応 (ITプロ/ITエンジニアのための徹底攻略)(竹政 昭利/ソキウスジャパン)
[改訂版] UMLモデリング技能認定試験<入門レベル(L1)>問題集 -UML2.0対応(竹政 昭利)を買ってしまったのでこれは買いませんが、出版社が別で著者が同じってどういうことよ。
それよりも安全のためにL2用の本を出して欲しいなぁ。
2008-11-21(金) 晴 安静時心拍数 54 この日を編集
_ FreeBSDでGoogle Tags (GTags)を動かそうとしてみたが
粘り強く?コード解析の続きをやっているのですが、Google Tagsはどうだろうかと思い、試してみることにしました。例によってまずは野良portを作ってみました。
# New ports collection makefile for: google-gtags # Date created: 2008-11-21 # Whom: TAKATSU Tomonari# # $FreeBSD$ # PORTNAME= google-gtags PORTVERSION= 2.0.0 CATEGORIES= devel MASTER_SITES= http://google-gtags.googlecode.com/files/ DISTFILES= gtags-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= tota@rtfm.jp COMMENT= Server-based tags serving for large codebases BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash USE_PYTHON= yes HAS_CONFIGURE= yes pre-configure: ${REINPLACE_CMD} -e 's|#!/bin/bash|#!${LOCALBASE}/bin/bash|' ${WRKSRC}/configure .include <bsd.port.mk>
ここまではあっさりと書けましたが、試しにbuildしてみると
g++ -c -o gtagsmixermain.o gtagsmixermain.cc In file included from filewatcher.h:29, from gtagsmixermain.cc:27: inotify.h:10:25: error: linux/types.h: No such file or directory In file included from filewatcher.h:29, from gtagsmixermain.cc:27: inotify.h:19: error: '__s32' does not name a type inotify.h:20: error: '__u32' does not name a type inotify.h:21: error: '__u32' does not name a type inotify.h:22: error: '__u32' does not name a type In file included from filewatcher.h:30, from gtagsmixermain.cc:27: inotify-syscalls.h:51: error: '__u32' has not been declared inotify-syscalls.h:56: error: '__u32' has not been declared In file included from gtagsmixermain.cc:27: filewatcher.h: In member function 'virtual bool DirectoryEventFilter::DoFilter(const inotify_event*)': filewatcher.h:234: error: 'const struct inotify_event' has no member named 'mask' filewatcher.h: In member function 'virtual bool FileExtensionEventFilter::DoFilter(const inotify_event*)': filewatcher.h:257: error: 'const struct inotify_event' has no member named 'len' scons: *** [gtagsmixermain.o] Error 1 *** Error code 2 Stop in /root/ports.local/google-gtags/work/google-gtags-2.0.0. *** Error code 1 Stop in /root/ports.local/google-gtags.
プラットフォーム依存ですねぇ。めんどくせー。
2009-11-21(土) 晴 安静時心拍数 57 この日を編集
_ VirtualBox 3.0.12
更新
_ 死亡中
- 月曜
- 終日: 自社
- 火曜
- 午前: 自社
- 午後: 客先
- 夜: 自社
- 水曜
- 日中: 客先(取手!!)
- 夜: 自社
- 木曜
- 午前: 自社
- 午後: 客先
- 夜: 自社
- 金曜
- 日中: 客先
- 夜: 自社
_ 歯石除去(1)
予定通り歯石除去に行ってきました。どうやら奥歯はうまく磨けてたみたいですが前歯の裏側に歯石が溜まっていたようです。4分割の左上しか終わっていないので長期戦になるのは必至。次回は1月9日です。
_ Mail: jfkimura@yahoo.co.jp [臂香il/ja-squirrelmail . Date: 20031121 Name: otsune Mail: ..]