|
Hi Jan, Firstly, note I'm not the guy from the original posting. Some time ago I've got to the same problem, then with help from Joshua Rubin and Markus Kotilainen I've successfully built a PKGBUILD for mozilla-thunderbird with rss support. Bellow is the original post. Armando Hi, Excuse me for so long delay in replying, I was really very very busy lately. I've got it to work using the directions from Joshua Rubin and Markus Kotilainen (with just a small modification). Summarizing: from the package mozilla-thunderbird-1.0-1 you have to: - modify the file mozconfig to include xmlextras and webservices to ac_add_options: ac_add_options --enable-extensions=wallet,spellcheck,xmlextras,webservices - modify PKGBUILD to reflect the change in md5sum of the file above: md5sums=('232ffe434fd65f5f0284a760d6e4ba2a' 'e79634ee1e611182b6c227daa362b20d'\ 'aaaa941f1a25075d65c60180fb608955' '904bcfd107d5ead431e976d7ec925140'\ '04115f0e204444eac76a092a63c89027' 'db60d6f5059e10d8b1a54a97c0675563'\ 'd889e999601f3145b2a7403e2636d156') <- just the last md5sum - modify PKGBUILD to include RSS and movemail support: ### Include RSS and movemail support cp -Lr $startdir/src/mozilla/dist/bin/defaults/isp $startdir/pkg/opt/mozilla/lib/thunderbird-$pkgver/defaults (here I've had to change .../opt/$pkgname/lib/... sugested by Markus to .../opt/mozilla/lib/...) It worked fine for me. Now I have the "Movemail" and "RSS News & Blogs" options in the "Account Wizard" when I create a new account and I was able to set up some RSS subscriptions (I've not tried the Movemail stuff). Attached are PKGBUILD and mozconfig files. Again, thank you a lot, Armando Markus Kotilainen wrote: (about PKGBUILD for Thunderbird)
build() {
cd $startdir/src/mozilla
patch -Np0 -i $startdir/src/mozilla-1.7.3-ft2.patch
patch -Np0 -i $startdir/src/launcher.patch
sed "[EMAIL PROTECTED]@[EMAIL PROTECTED]" $startdir/src/mozconfig >.mozconfig
export MOZ_THUNDERBIRD=1
# fix typo (mozilla bug 258177)
sed -i "[EMAIL PROTECTED]@DESTDIR@" $startdir/src/mozilla/mail/app/Makefile.in || return 1
./configure
make || return 1
make DESTDIR=$startdir/pkg install || return 1
cd $startdir/pkg/opt/mozilla/lib && ln -s thunderbird-$pkgver thunderbird
# initialize some data so that thunderbird will run as a non-root user
cd $startdir/pkg/opt/mozilla/lib/thunderbird-$pkgver/
tar zxf $startdir/src/$pkgname-nonroot.tar.gz || return 1
### Include RSS and movemail support
cp -Lr $startdir/src/mozilla/dist/bin/defaults/isp $startdir/pkg/opt/mozilla/lib/thunderbird-$pkgver/defaults
# Remove common mozilla aclocal stuff
rm -rf $startdir/pkg/opt/mozilla/share
rm -rf $startdir/pkg/opt/mozilla/include
rm -rf $startdir/pkg/opt/mozilla/lib/pkgconfig
# Remove useless default profile setup
rm -rf $startdir/pkg/opt/mozilla/bin/defaults
install -m755 -dD $startdir/pkg/usr/share/applications
install -m755 -dD $startdir/pkg/usr/share/pixmaps
install -m644 $startdir/src/mozilla-thunderbird.desktop $startdir/pkg/usr/share/applications/
install -m644 $startdir/src/mozilla-thunderbird.png $startdir/pkg/usr/share/pixmaps/
}
Jan de Groot wrote: On Tue, 2005-03-22 at 13:33 +0100, gyula wrote:hello i've installed via pacman the mozilla-thunderbird package,and i cannot find the rss feed in it. why is it missing? i had to compile it from source,and it's works since that.Is it really missing or it's just missing for me somehow? sorry for the stupid question. Bye Gy. _______________________________________________ arch mailing list [email protected] http://www.archlinux.org/mailman/listinfo/archPlease tell what steps you took to add the missing rss reader to thunderbird. 1.0.2 is coming soon, so I can take that in the package then. _______________________________________________ arch mailing list [email protected] http://www.archlinux.org/mailman/listinfo/arch |
_______________________________________________ arch mailing list [email protected] http://www.archlinux.org/mailman/listinfo/arch
