diff options
author | marcus <marcus@FreeBSD.org> | 2004-06-25 02:15:44 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-06-25 02:15:44 +0800 |
commit | 3db81da34bc6dcbab9b509563cf76280365af0a4 (patch) | |
tree | 6f262882127fbd324a600f483712ef7ad289ab5d /mail/thunderbird/files | |
parent | c02a4c7b317f851ded81d61d97149ff4196ca468 (diff) | |
download | freebsd-ports-gnome-3db81da34bc6dcbab9b509563cf76280365af0a4.tar.gz freebsd-ports-gnome-3db81da34bc6dcbab9b509563cf76280365af0a4.tar.zst freebsd-ports-gnome-3db81da34bc6dcbab9b509563cf76280365af0a4.zip |
Update to 0.7. A list of what's new can be found at
http://www.mozilla.org/products/thunderbird/releases.
This has the same limitation that Firefox 0.9 had where it needs to be run as
root first. I applied the same hacks to workaround that; however, some users
may need to run thunderbird twice before it starts correctly.
Diffstat (limited to 'mail/thunderbird/files')
-rw-r--r-- | mail/thunderbird/files/Extensions.rdf | 24 | ||||
-rw-r--r-- | mail/thunderbird/files/mozconfig.in | 12 |
2 files changed, 30 insertions, 6 deletions
diff --git a/mail/thunderbird/files/Extensions.rdf b/mail/thunderbird/files/Extensions.rdf new file mode 100644 index 000000000000..79d0e46db2b3 --- /dev/null +++ b/mail/thunderbird/files/Extensions.rdf @@ -0,0 +1,24 @@ +<?xml version="1.0"?> +<RDF:RDF xmlns:em="http://www.mozilla.org/2004/em-rdf#" + xmlns:NC="http://home.netscape.com/NC-rdf#" + xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <RDF:Seq RDF:about="urn:mozilla:theme:root"> + <RDF:li RDF:resource="urn:mozilla:theme:{972ce4c6-7e08-4474-a285-3208198ce6fd}"/> + </RDF:Seq> + <RDF:Seq RDF:about="urn:mozilla:extension:root"> + </RDF:Seq> + <RDF:Description RDF:about="rdf:#$eyU.+1" + em:id="{3550f703-e582-4d05-9a08-453d09bdfdc6}" + em:minVersion="0.7" + em:maxVersion="0.7" /> + <RDF:Description RDF:about="urn:mozilla:theme:{972ce4c6-7e08-4474-a285-3208198ce6fd}" + em:version="2.0" + em:name="Thunderbird (default)" + em:description="The default theme" + em:creator="Arvid Axelsson" + em:internalName="classic/1.0" + em:locked="true" + em:contributor="Mozilla Contributors"> + <em:targetApplication RDF:resource="rdf:#$eyU.+1"/> + </RDF:Description> +</RDF:RDF> diff --git a/mail/thunderbird/files/mozconfig.in b/mail/thunderbird/files/mozconfig.in index 2f7b3be42684..b40d330133ff 100644 --- a/mail/thunderbird/files/mozconfig.in +++ b/mail/thunderbird/files/mozconfig.in @@ -41,17 +41,17 @@ ac_add_options --with-system-mng=@LOCALBASE@ ac_add_options --with-pthreads ###################################################################### # conditional from port Makefile -if test -n "$WITH_REORDER"; then - ac_add_options --enable-reorder -else - ac_add_options --disable-reorder -fi # test -n "$WITH_REORDER" +#if test -n "$WITH_REORDER"; then +# ac_add_options --enable-reorder +#else +# ac_add_options --disable-reorder +#fi # test -n "$WITH_REORDER" if test -n "$WITH_DEBUG"; then ac_add_options --enable-debug ac_add_options --disable-strip else ac_add_options --disable-debug - ac_add_options --enable-optimize + ac_add_options --enable-optimize=${WITH_OPTIMIZE} ac_add_options --enable-strip export BUILD_OFFICIAL=1 export MOZILLA_OFFICIAL=1 |