Index: head/editors/AbiWord2/Makefile =================================================================== --- head/editors/AbiWord2/Makefile (revision 84749) +++ head/editors/AbiWord2/Makefile (revision 84750) @@ -1,95 +1,95 @@ # New ports collection makefile for: AbiWord2 # Date created: 22 February 2003 # Whom: Joe Marcus Clarke # # $FreeBSD$ # PORTNAME= AbiWord2 -PORTVERSION= 1.99.1 +PORTVERSION= 1.99.2 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://www.abisource.com/downloads/Version-${PORTVERSION}/lf/ MASTER_SITE_SUBDIR= abiword DISTNAME= abiword-${PORTVERSION} MAINTAINER= gnome@FreeBSD.org COMMENT= An open-source, cross-platform WYSIWYG word processor # unzip is needed during the installation process BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ iconv.3:${PORTSDIR}/converters/libiconv \ fribidi.0:${PORTSDIR}/converters/fribidi \ popt.0:${PORTSDIR}/devel/popt \ aspell.15:${PORTSDIR}/textproc/aspell DIST_SUBDIR= AbiWord WRKSRC= ${WRKDIR}/abiword-${PORTVERSION}/abi USE_X_PREFIX= yes USE_AUTOMAKE= yes USE_AUTOMAKE_VER=14 USE_AUTOCONF_VER=213 USE_GMAKE= yes USE_REINPLACE= yes USE_GNOME= gnomehier libglade2 libxml2 WANT_GNOME= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib -liconv" CONFIGURE_ARGS= --enable-xft MAKEFILE= GNUmakefile .include .if exists(${LOCALBASE}/include/wv.h) BROKEN= "This port cannot be built when textproc/wv is installed because of a header conflict. Please remove textproc/wv, and resume the build. If textproc/wv is no longer installed, please remove ${LOCALBASE}/include/wv.h, and resume the AbiWord2 build" .endif -.if ${HAVE_GNOME:Mnautilus2}!="" && ${HAVE_GNOME:Mgal2}!="" -USE_GNOME+= nautilus2 gal2 +.if ${HAVE_GNOME:Mnautilus2}!="" +USE_GNOME+= nautilus2 CONFIGURE_ARGS+= --enable-gnome PKGNAMESUFFIX= -gnome GNOME_ENABLED= yes .endif .if defined(WITH_GUCHARMAP) || exists(${X11BASE}/libdata/pkgconfig/gucharmap.pc) LIB_DEPENDS+= gucharmap.3:${PORTSDIR}/misc/gucharmap .else CONFIGURE_ARGS+= --enable-cmap=no .endif pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "AbiWord2 has the following tunable option(s):" @${ECHO_MSG} " WITH_GUCHARMAP=yes Enable use of Gucharmap as the symbol insertion tool (default: auto)" @${ECHO_MSG} "" post-patch: @${REINPLACE_CMD} -e 's|%%AUTOMAKE%%|${AUTOMAKE}|g ; \ s|%%ACLOCAL%%|${ACLOCAL}|g ; \ s|%%AUTOCONF%%|${AUTOCONF}|g' ${WRKSRC}/autogen.sh pre-configure: @cd ${WRKSRC} && ${TOUCH} NEWS README AUTHORS ChangeLog INSTALL @cd ${WRKSRC}/ac-helpers && ${RM} -f install-sh mkinstalldirs missing @${RM} -f ${WRKSRC}/configure.ac @cd ${WRKSRC} && ./autogen.sh && ${TRUE} @${FIND} ${WRKSRC} -name GNUmakefile.in | xargs ${REINPLACE_CMD} -e \ 's|[(]libdir[)]/@PACKAGE@|(datadir)/@PACKAGE@|g ; \ s|@DEFS@|-I${WRKSRC}/../libiconv/include @DEFS@|g' && ${TRUE} post-install: @${INSTALL_DATA} ${WRKSRC}/src/pkg/linux/rpm/data/abiword.desktop \ ${PREFIX}/share/gnome/apps/Applications/abiword.desktop @${LN} -sf ${PREFIX}/share/AbiSuite-2.0/icons/abiword_48.png \ ${PREFIX}/share/gnome/pixmaps/abiword_48.png .if defined(GNOME_ENABLED) @${LN} -sf ${PREFIX}/share/AbiSuite-2.0/GNOME_AbiWord_Control_2_0.server\ ${PREFIX}/libdata/bonobo/servers/GNOME_AbiWord_Control_2_0.server @${LN} -sf ${PREFIX}/share/AbiSuite-2.0/abi-nautilus-view-file.xml \ ${PREFIX}/share/gnome/gnome-2.0/ui/abi-nautilus-view-file.xml .endif .include Property changes on: head/editors/AbiWord2/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.63 \ No newline at end of property +1.64 \ No newline at end of property Index: head/editors/AbiWord2/distinfo =================================================================== --- head/editors/AbiWord2/distinfo (revision 84749) +++ head/editors/AbiWord2/distinfo (revision 84750) @@ -1 +1 @@ -MD5 (AbiWord/abiword-1.99.1.tar.gz) = e96b50aea36ebf935d001b436b2bc582 +MD5 (AbiWord/abiword-1.99.2.tar.gz) = 6319519f6f8b3eb70b0370bf694350d4 Property changes on: head/editors/AbiWord2/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property Index: head/editors/AbiWord2/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp =================================================================== --- head/editors/AbiWord2/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp (nonexistent) +++ head/editors/AbiWord2/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp (revision 84750) @@ -0,0 +1,79 @@ +--- src/text/ptbl/xp/pp_AttrProp.cpp.orig Sat Jul 12 02:57:05 2003 ++++ src/text/ptbl/xp/pp_AttrProp.cpp Sat Jul 12 03:04:49 2003 +@@ -82,7 +82,7 @@ + void* tmp = const_cast (entry->first()); + FREEP(tmp); + if (entry->second()) +- delete static_cast(entry->second()); ++ delete (const PP_PropertyType*)entry->second(); + delete entry; + } + } +@@ -336,7 +336,7 @@ + + FREEP(tmp); + if (p->second()) +- delete static_cast(p->second()); ++ delete (const PP_PropertyType *)p->second(); + delete p; + + if(bRemove) +@@ -406,7 +406,7 @@ + if ( (i == ndx) && c.is_valid()) + { + szName = static_cast(c.key().c_str()); +- szValue = static_cast(static_cast(val)->first()); ++ szValue = (const XML_Char*)(static_cast(val)->first()); + return true; + } + return false; +@@ -421,7 +421,7 @@ + if (!pEntry) + return false; + +- szValue = static_cast(static_cast(pEntry)->first()); ++ szValue = (const XML_Char *)(static_cast(pEntry)->first()); + + return true; + } +@@ -440,12 +440,12 @@ + m_pProperties->set(szName, new UT_Pair + (pEntry->first(), + PP_PropertyType::createPropertyType(Type, +- static_cast(pEntry->first())))); ++ (const XML_Char *)(pEntry->first())))); + delete pEntry; + pEntry = static_cast(m_pProperties->pick(szName)); + } + +- return static_cast(pEntry->second()); ++ return (const PP_PropertyType *)(pEntry->second()); + } + bool PP_AttrProp::getAttribute(const XML_Char * szName, const XML_Char *& szValue) const + { +@@ -750,14 +750,14 @@ + { + const UT_Pair* p = static_cast(pEntry); + +- if(*(static_cast(p->first())) == 0) ++ if(*((const XML_Char *)(p->first())) == 0) + { + + void* tmp = const_cast (p->first()); + UT_ASSERT(!m_bIsReadOnly); + FREEP(tmp); + if (p->second()) +- delete static_cast(p->second()); ++ delete (const PP_PropertyType *)(p->second()); + delete p; + + m_pProperties->remove(_hc1.key(),pEntry); +@@ -985,7 +985,7 @@ + while (val != NULL) + { + s1 = static_cast(c2.key().c_str()); +- s2 = static_cast(static_cast(val)->first()); ++ s2 = (const XML_Char *)(static_cast(val)->first()); + + m_checkSum += UT_XML_strlen(s1); + m_checkSum += UT_XML_strlen(s2); Property changes on: head/editors/AbiWord2/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/editors/AbiWord2/pkg-plist =================================================================== --- head/editors/AbiWord2/pkg-plist (revision 84749) +++ head/editors/AbiWord2/pkg-plist (revision 84750) @@ -1,257 +1,259 @@ bin/AbiWord-2.0 bin/abiword bin/ttfadmin.sh bin/ttftool %%GNOME:%%libdata/bonobo/servers/GNOME_AbiWord_Control_2_0.server share/AbiSuite-2.0/AbiWord.exe.MANIFEST share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Break.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Field.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_FormatFootnotes.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_FormatTable.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_HdrFtr.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_InsertTable.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Insert_DateTime.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_MailMerge.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_New.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_PageNumbers.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Replace.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_WordCount.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_About.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Encoding.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Image.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Language.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Password.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_PluginManager.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_WindowMore.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Zoom.glade share/AbiSuite-2.0/AbiWord/readme.txt share/AbiSuite-2.0/AbiWord/scripts/abw2html.pl share/AbiSuite-2.0/AbiWord/strings/am-ET.strings share/AbiSuite-2.0/AbiWord/strings/art-lojban.strings share/AbiSuite-2.0/AbiWord/strings/bg-BG.strings share/AbiSuite-2.0/AbiWord/strings/ca-ES.strings share/AbiSuite-2.0/AbiWord/strings/cs-CZ.strings share/AbiSuite-2.0/AbiWord/strings/cy-GB.strings share/AbiSuite-2.0/AbiWord/strings/da-DK.strings share/AbiSuite-2.0/AbiWord/strings/de-CH.strings share/AbiSuite-2.0/AbiWord/strings/de-DE.strings share/AbiSuite-2.0/AbiWord/strings/el-GR.strings share/AbiSuite-2.0/AbiWord/strings/en-AU.strings share/AbiSuite-2.0/AbiWord/strings/en-GB.strings share/AbiSuite-2.0/AbiWord/strings/en-IE.strings share/AbiSuite-2.0/AbiWord/strings/es-ES.strings share/AbiSuite-2.0/AbiWord/strings/es-MX.strings share/AbiSuite-2.0/AbiWord/strings/eu-ES.strings share/AbiSuite-2.0/AbiWord/strings/fi-FI.strings share/AbiSuite-2.0/AbiWord/strings/fr-FR.strings share/AbiSuite-2.0/AbiWord/strings/ga-IE.strings share/AbiSuite-2.0/AbiWord/strings/gl-ES.strings share/AbiSuite-2.0/AbiWord/strings/he-IL.strings share/AbiSuite-2.0/AbiWord/strings/hu-HU.strings share/AbiSuite-2.0/AbiWord/strings/id-ID.strings share/AbiSuite-2.0/AbiWord/strings/it-IT.strings share/AbiSuite-2.0/AbiWord/strings/ja-JP.strings share/AbiSuite-2.0/AbiWord/strings/lt-LT.strings share/AbiSuite-2.0/AbiWord/strings/mh-MH.strings share/AbiSuite-2.0/AbiWord/strings/ms-MY.strings share/AbiSuite-2.0/AbiWord/strings/nb-NO.strings share/AbiSuite-2.0/AbiWord/strings/nl-NL.strings share/AbiSuite-2.0/AbiWord/strings/nn-NO.strings share/AbiSuite-2.0/AbiWord/strings/pl-PL.strings share/AbiSuite-2.0/AbiWord/strings/pt-BR.strings share/AbiSuite-2.0/AbiWord/strings/pt-PT.strings share/AbiSuite-2.0/AbiWord/strings/ro-RO.strings share/AbiSuite-2.0/AbiWord/strings/ru-RU.strings share/AbiSuite-2.0/AbiWord/strings/sc-IT.strings share/AbiSuite-2.0/AbiWord/strings/sk-SK.strings share/AbiSuite-2.0/AbiWord/strings/sl-SI.strings share/AbiSuite-2.0/AbiWord/strings/sq-AL.strings share/AbiSuite-2.0/AbiWord/strings/sr-SR.strings share/AbiSuite-2.0/AbiWord/strings/sv-SE.strings share/AbiSuite-2.0/AbiWord/strings/tr-TR.strings share/AbiSuite-2.0/AbiWord/strings/uk-UA.strings share/AbiSuite-2.0/AbiWord/strings/vi-VN.strings share/AbiSuite-2.0/AbiWord/strings/yi.strings share/AbiSuite-2.0/AbiWord/strings/zh-CN.strings share/AbiSuite-2.0/AbiWord/strings/zh-HK.strings share/AbiSuite-2.0/AbiWord/strings/zh-TW.strings share/AbiSuite-2.0/AbiWord/system.profile share/AbiSuite-2.0/AbiWord/system.profile-CP1254 share/AbiSuite-2.0/AbiWord/system.profile-KOI8-R share/AbiSuite-2.0/AbiWord/system.profile-KOI8-U share/AbiSuite-2.0/AbiWord/system.profile-KOI8-UB share/AbiSuite-2.0/AbiWord/system.profile-am-ET share/AbiSuite-2.0/AbiWord/system.profile-ar share/AbiSuite-2.0/AbiWord/system.profile-ar-EG share/AbiSuite-2.0/AbiWord/system.profile-ar-SA share/AbiSuite-2.0/AbiWord/system.profile-bg-BG share/AbiSuite-2.0/AbiWord/system.profile-ca-ES share/AbiSuite-2.0/AbiWord/system.profile-cs-CZ share/AbiSuite-2.0/AbiWord/system.profile-da-DK share/AbiSuite-2.0/AbiWord/system.profile-de share/AbiSuite-2.0/AbiWord/system.profile-de-AT share/AbiSuite-2.0/AbiWord/system.profile-de-CH share/AbiSuite-2.0/AbiWord/system.profile-de-DE share/AbiSuite-2.0/AbiWord/system.profile-div-MV share/AbiSuite-2.0/AbiWord/system.profile-el-GR share/AbiSuite-2.0/AbiWord/system.profile-en share/AbiSuite-2.0/AbiWord/system.profile-en-AU share/AbiSuite-2.0/AbiWord/system.profile-en-CA share/AbiSuite-2.0/AbiWord/system.profile-en-GB share/AbiSuite-2.0/AbiWord/system.profile-en-IE share/AbiSuite-2.0/AbiWord/system.profile-en-NZ share/AbiSuite-2.0/AbiWord/system.profile-en-US share/AbiSuite-2.0/AbiWord/system.profile-en-ZA share/AbiSuite-2.0/AbiWord/system.profile-es share/AbiSuite-2.0/AbiWord/system.profile-es-ES share/AbiSuite-2.0/AbiWord/system.profile-es-MX +share/AbiSuite-2.0/AbiWord/system.profile-eu +share/AbiSuite-2.0/AbiWord/system.profile-eu-ES share/AbiSuite-2.0/AbiWord/system.profile-fa-IR share/AbiSuite-2.0/AbiWord/system.profile-fi-FI share/AbiSuite-2.0/AbiWord/system.profile-fr share/AbiSuite-2.0/AbiWord/system.profile-fr-BE share/AbiSuite-2.0/AbiWord/system.profile-fr-CA share/AbiSuite-2.0/AbiWord/system.profile-fr-CH share/AbiSuite-2.0/AbiWord/system.profile-fr-FR share/AbiSuite-2.0/AbiWord/system.profile-gl-ES share/AbiSuite-2.0/AbiWord/system.profile-he share/AbiSuite-2.0/AbiWord/system.profile-he-IL share/AbiSuite-2.0/AbiWord/system.profile-hu-HU share/AbiSuite-2.0/AbiWord/system.profile-it-IT share/AbiSuite-2.0/AbiWord/system.profile-ja-JP share/AbiSuite-2.0/AbiWord/system.profile-lt-LT share/AbiSuite-2.0/AbiWord/system.profile-nb-NO share/AbiSuite-2.0/AbiWord/system.profile-nl-NL share/AbiSuite-2.0/AbiWord/system.profile-nn-NO share/AbiSuite-2.0/AbiWord/system.profile-pl-PL share/AbiSuite-2.0/AbiWord/system.profile-ps share/AbiSuite-2.0/AbiWord/system.profile-pt-BR share/AbiSuite-2.0/AbiWord/system.profile-pt-PT share/AbiSuite-2.0/AbiWord/system.profile-ru share/AbiSuite-2.0/AbiWord/system.profile-ru-RU share/AbiSuite-2.0/AbiWord/system.profile-sk-SK share/AbiSuite-2.0/AbiWord/system.profile-sk-SK.CP1250 share/AbiSuite-2.0/AbiWord/system.profile-sl share/AbiSuite-2.0/AbiWord/system.profile-sv share/AbiSuite-2.0/AbiWord/system.profile-sv-SE share/AbiSuite-2.0/AbiWord/system.profile-syr share/AbiSuite-2.0/AbiWord/system.profile-tr share/AbiSuite-2.0/AbiWord/system.profile-tr-TR share/AbiSuite-2.0/AbiWord/system.profile-tr-TR.CP1254 share/AbiSuite-2.0/AbiWord/system.profile-uk-UA share/AbiSuite-2.0/AbiWord/system.profile-ur-PK share/AbiSuite-2.0/AbiWord/system.profile-yi share/AbiSuite-2.0/AbiWord/system.profile-zh-CN share/AbiSuite-2.0/AbiWord/system.profile-zh-TW share/AbiSuite-2.0/GNOME_AbiWord_Control_2_0.server share/AbiSuite-2.0/README share/AbiSuite-2.0/abi-nautilus-view-file.xml share/AbiSuite-2.0/clipart/book.png share/AbiSuite-2.0/clipart/chip.png share/AbiSuite-2.0/clipart/fun.png share/AbiSuite-2.0/clipart/gear.png share/AbiSuite-2.0/clipart/gnomea.png share/AbiSuite-2.0/clipart/gnomeb.png share/AbiSuite-2.0/clipart/gnomec.png share/AbiSuite-2.0/clipart/gnomecorner.png share/AbiSuite-2.0/clipart/gnomed.png share/AbiSuite-2.0/clipart/gnomedecor1.png share/AbiSuite-2.0/clipart/gnomedecor2.png share/AbiSuite-2.0/clipart/gnomee.png share/AbiSuite-2.0/clipart/gnomeflowers.png share/AbiSuite-2.0/clipart/gnomeline.png share/AbiSuite-2.0/clipart/idea.png share/AbiSuite-2.0/clipart/lamp.png share/AbiSuite-2.0/clipart/monitor.png share/AbiSuite-2.0/clipart/music1.png share/AbiSuite-2.0/clipart/pinceau.png share/AbiSuite-2.0/clipart/simca.png share/AbiSuite-2.0/clipart/surprise.png share/AbiSuite-2.0/clipart/together.png share/AbiSuite-2.0/clipart/toolbox.png share/AbiSuite-2.0/clipart/tree.png share/AbiSuite-2.0/clipart/tux_bordelais.png share/AbiSuite-2.0/clipart/weather.png share/AbiSuite-2.0/clipart/write.png share/AbiSuite-2.0/icons/abiword_16.xpm share/AbiSuite-2.0/icons/abiword_48.png share/AbiSuite-2.0/icons/abiword_48.tif share/AbiSuite-2.0/icons/abiword_48.xpm %%GNOME:%%share/AbiSuite-2.0/icons/abiword_logo.xpm share/AbiSuite-2.0/templates/A4.awt share/AbiSuite-2.0/templates/Business-Report.awt share/AbiSuite-2.0/templates/Employee-Directory.awt share/AbiSuite-2.0/templates/Fax-Coversheet.awt share/AbiSuite-2.0/templates/Two-Columns.awt share/AbiSuite-2.0/templates/US-Letter.awt share/AbiSuite-2.0/templates/normal.awt share/AbiSuite-2.0/templates/normal.awt-am_ET share/AbiSuite-2.0/templates/normal.awt-ar share/AbiSuite-2.0/templates/normal.awt-ar_EG share/AbiSuite-2.0/templates/normal.awt-ar_SA share/AbiSuite-2.0/templates/normal.awt-bg_BG share/AbiSuite-2.0/templates/normal.awt-ca_ES share/AbiSuite-2.0/templates/normal.awt-cs_CZ share/AbiSuite-2.0/templates/normal.awt-da_DK share/AbiSuite-2.0/templates/normal.awt-de share/AbiSuite-2.0/templates/normal.awt-de_AT share/AbiSuite-2.0/templates/normal.awt-de_CH share/AbiSuite-2.0/templates/normal.awt-de_DE share/AbiSuite-2.0/templates/normal.awt-div_MV share/AbiSuite-2.0/templates/normal.awt-el_GR share/AbiSuite-2.0/templates/normal.awt-en_AU share/AbiSuite-2.0/templates/normal.awt-en_CA share/AbiSuite-2.0/templates/normal.awt-en_GB share/AbiSuite-2.0/templates/normal.awt-en_IE share/AbiSuite-2.0/templates/normal.awt-en_NZ share/AbiSuite-2.0/templates/normal.awt-en_ZA share/AbiSuite-2.0/templates/normal.awt-es share/AbiSuite-2.0/templates/normal.awt-es_ES share/AbiSuite-2.0/templates/normal.awt-es_FI share/AbiSuite-2.0/templates/normal.awt-es_IR share/AbiSuite-2.0/templates/normal.awt-es_MX share/AbiSuite-2.0/templates/normal.awt-fa_IR share/AbiSuite-2.0/templates/normal.awt-fr share/AbiSuite-2.0/templates/normal.awt-fr_BE share/AbiSuite-2.0/templates/normal.awt-fr_CA share/AbiSuite-2.0/templates/normal.awt-fr_CH share/AbiSuite-2.0/templates/normal.awt-fr_FR share/AbiSuite-2.0/templates/normal.awt-gl_ES share/AbiSuite-2.0/templates/normal.awt-he share/AbiSuite-2.0/templates/normal.awt-he_IL share/AbiSuite-2.0/templates/normal.awt-hu_HU share/AbiSuite-2.0/templates/normal.awt-it_IT share/AbiSuite-2.0/templates/normal.awt-ja_JP share/AbiSuite-2.0/templates/normal.awt-lt_LT share/AbiSuite-2.0/templates/normal.awt-nb_NO share/AbiSuite-2.0/templates/normal.awt-nl_NL share/AbiSuite-2.0/templates/normal.awt-nn_NO share/AbiSuite-2.0/templates/normal.awt-pl_PL share/AbiSuite-2.0/templates/normal.awt-ps share/AbiSuite-2.0/templates/normal.awt-pt_BR share/AbiSuite-2.0/templates/normal.awt-pt_PT share/AbiSuite-2.0/templates/normal.awt-ru share/AbiSuite-2.0/templates/normal.awt-ru_RU share/AbiSuite-2.0/templates/normal.awt-sk_SK share/AbiSuite-2.0/templates/normal.awt-sl share/AbiSuite-2.0/templates/normal.awt-sv share/AbiSuite-2.0/templates/normal.awt-sv_SE share/AbiSuite-2.0/templates/normal.awt-syr share/AbiSuite-2.0/templates/normal.awt-tr share/AbiSuite-2.0/templates/normal.awt-tr_TR share/AbiSuite-2.0/templates/normal.awt-uk_UA share/AbiSuite-2.0/templates/normal.awt-ur_PK share/AbiSuite-2.0/templates/normal.awt-yi share/AbiSuite-2.0/templates/normal.awt-zh_CN share/AbiSuite-2.0/templates/normal.awt-zh_TW share/gnome/apps/Applications/abiword.desktop %%GNOME:%%share/gnome/gnome-2.0/ui/abi-nautilus-view-file.xml share/gnome/pixmaps/abiword_48.png @dirrm share/AbiSuite-2.0/templates @dirrm share/AbiSuite-2.0/icons @dirrm share/AbiSuite-2.0/dictionary @dirrm share/AbiSuite-2.0/clipart @dirrm share/AbiSuite-2.0/AbiWord/strings @dirrm share/AbiSuite-2.0/AbiWord/scripts @dirrm share/AbiSuite-2.0/AbiWord/glade @dirrm share/AbiSuite-2.0/AbiWord @dirrm share/AbiSuite-2.0 Property changes on: head/editors/AbiWord2/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property Index: head/editors/abiword/Makefile =================================================================== --- head/editors/abiword/Makefile (revision 84749) +++ head/editors/abiword/Makefile (revision 84750) @@ -1,95 +1,95 @@ # New ports collection makefile for: AbiWord2 # Date created: 22 February 2003 # Whom: Joe Marcus Clarke # # $FreeBSD$ # PORTNAME= AbiWord2 -PORTVERSION= 1.99.1 +PORTVERSION= 1.99.2 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://www.abisource.com/downloads/Version-${PORTVERSION}/lf/ MASTER_SITE_SUBDIR= abiword DISTNAME= abiword-${PORTVERSION} MAINTAINER= gnome@FreeBSD.org COMMENT= An open-source, cross-platform WYSIWYG word processor # unzip is needed during the installation process BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ iconv.3:${PORTSDIR}/converters/libiconv \ fribidi.0:${PORTSDIR}/converters/fribidi \ popt.0:${PORTSDIR}/devel/popt \ aspell.15:${PORTSDIR}/textproc/aspell DIST_SUBDIR= AbiWord WRKSRC= ${WRKDIR}/abiword-${PORTVERSION}/abi USE_X_PREFIX= yes USE_AUTOMAKE= yes USE_AUTOMAKE_VER=14 USE_AUTOCONF_VER=213 USE_GMAKE= yes USE_REINPLACE= yes USE_GNOME= gnomehier libglade2 libxml2 WANT_GNOME= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib -liconv" CONFIGURE_ARGS= --enable-xft MAKEFILE= GNUmakefile .include .if exists(${LOCALBASE}/include/wv.h) BROKEN= "This port cannot be built when textproc/wv is installed because of a header conflict. Please remove textproc/wv, and resume the build. If textproc/wv is no longer installed, please remove ${LOCALBASE}/include/wv.h, and resume the AbiWord2 build" .endif -.if ${HAVE_GNOME:Mnautilus2}!="" && ${HAVE_GNOME:Mgal2}!="" -USE_GNOME+= nautilus2 gal2 +.if ${HAVE_GNOME:Mnautilus2}!="" +USE_GNOME+= nautilus2 CONFIGURE_ARGS+= --enable-gnome PKGNAMESUFFIX= -gnome GNOME_ENABLED= yes .endif .if defined(WITH_GUCHARMAP) || exists(${X11BASE}/libdata/pkgconfig/gucharmap.pc) LIB_DEPENDS+= gucharmap.3:${PORTSDIR}/misc/gucharmap .else CONFIGURE_ARGS+= --enable-cmap=no .endif pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "AbiWord2 has the following tunable option(s):" @${ECHO_MSG} " WITH_GUCHARMAP=yes Enable use of Gucharmap as the symbol insertion tool (default: auto)" @${ECHO_MSG} "" post-patch: @${REINPLACE_CMD} -e 's|%%AUTOMAKE%%|${AUTOMAKE}|g ; \ s|%%ACLOCAL%%|${ACLOCAL}|g ; \ s|%%AUTOCONF%%|${AUTOCONF}|g' ${WRKSRC}/autogen.sh pre-configure: @cd ${WRKSRC} && ${TOUCH} NEWS README AUTHORS ChangeLog INSTALL @cd ${WRKSRC}/ac-helpers && ${RM} -f install-sh mkinstalldirs missing @${RM} -f ${WRKSRC}/configure.ac @cd ${WRKSRC} && ./autogen.sh && ${TRUE} @${FIND} ${WRKSRC} -name GNUmakefile.in | xargs ${REINPLACE_CMD} -e \ 's|[(]libdir[)]/@PACKAGE@|(datadir)/@PACKAGE@|g ; \ s|@DEFS@|-I${WRKSRC}/../libiconv/include @DEFS@|g' && ${TRUE} post-install: @${INSTALL_DATA} ${WRKSRC}/src/pkg/linux/rpm/data/abiword.desktop \ ${PREFIX}/share/gnome/apps/Applications/abiword.desktop @${LN} -sf ${PREFIX}/share/AbiSuite-2.0/icons/abiword_48.png \ ${PREFIX}/share/gnome/pixmaps/abiword_48.png .if defined(GNOME_ENABLED) @${LN} -sf ${PREFIX}/share/AbiSuite-2.0/GNOME_AbiWord_Control_2_0.server\ ${PREFIX}/libdata/bonobo/servers/GNOME_AbiWord_Control_2_0.server @${LN} -sf ${PREFIX}/share/AbiSuite-2.0/abi-nautilus-view-file.xml \ ${PREFIX}/share/gnome/gnome-2.0/ui/abi-nautilus-view-file.xml .endif .include Property changes on: head/editors/abiword/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.63 \ No newline at end of property +1.64 \ No newline at end of property Index: head/editors/abiword/distinfo =================================================================== --- head/editors/abiword/distinfo (revision 84749) +++ head/editors/abiword/distinfo (revision 84750) @@ -1 +1 @@ -MD5 (AbiWord/abiword-1.99.1.tar.gz) = e96b50aea36ebf935d001b436b2bc582 +MD5 (AbiWord/abiword-1.99.2.tar.gz) = 6319519f6f8b3eb70b0370bf694350d4 Property changes on: head/editors/abiword/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property Index: head/editors/abiword/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp =================================================================== --- head/editors/abiword/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp (nonexistent) +++ head/editors/abiword/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp (revision 84750) @@ -0,0 +1,79 @@ +--- src/text/ptbl/xp/pp_AttrProp.cpp.orig Sat Jul 12 02:57:05 2003 ++++ src/text/ptbl/xp/pp_AttrProp.cpp Sat Jul 12 03:04:49 2003 +@@ -82,7 +82,7 @@ + void* tmp = const_cast (entry->first()); + FREEP(tmp); + if (entry->second()) +- delete static_cast(entry->second()); ++ delete (const PP_PropertyType*)entry->second(); + delete entry; + } + } +@@ -336,7 +336,7 @@ + + FREEP(tmp); + if (p->second()) +- delete static_cast(p->second()); ++ delete (const PP_PropertyType *)p->second(); + delete p; + + if(bRemove) +@@ -406,7 +406,7 @@ + if ( (i == ndx) && c.is_valid()) + { + szName = static_cast(c.key().c_str()); +- szValue = static_cast(static_cast(val)->first()); ++ szValue = (const XML_Char*)(static_cast(val)->first()); + return true; + } + return false; +@@ -421,7 +421,7 @@ + if (!pEntry) + return false; + +- szValue = static_cast(static_cast(pEntry)->first()); ++ szValue = (const XML_Char *)(static_cast(pEntry)->first()); + + return true; + } +@@ -440,12 +440,12 @@ + m_pProperties->set(szName, new UT_Pair + (pEntry->first(), + PP_PropertyType::createPropertyType(Type, +- static_cast(pEntry->first())))); ++ (const XML_Char *)(pEntry->first())))); + delete pEntry; + pEntry = static_cast(m_pProperties->pick(szName)); + } + +- return static_cast(pEntry->second()); ++ return (const PP_PropertyType *)(pEntry->second()); + } + bool PP_AttrProp::getAttribute(const XML_Char * szName, const XML_Char *& szValue) const + { +@@ -750,14 +750,14 @@ + { + const UT_Pair* p = static_cast(pEntry); + +- if(*(static_cast(p->first())) == 0) ++ if(*((const XML_Char *)(p->first())) == 0) + { + + void* tmp = const_cast (p->first()); + UT_ASSERT(!m_bIsReadOnly); + FREEP(tmp); + if (p->second()) +- delete static_cast(p->second()); ++ delete (const PP_PropertyType *)(p->second()); + delete p; + + m_pProperties->remove(_hc1.key(),pEntry); +@@ -985,7 +985,7 @@ + while (val != NULL) + { + s1 = static_cast(c2.key().c_str()); +- s2 = static_cast(static_cast(val)->first()); ++ s2 = (const XML_Char *)(static_cast(val)->first()); + + m_checkSum += UT_XML_strlen(s1); + m_checkSum += UT_XML_strlen(s2); Property changes on: head/editors/abiword/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/editors/abiword/pkg-plist =================================================================== --- head/editors/abiword/pkg-plist (revision 84749) +++ head/editors/abiword/pkg-plist (revision 84750) @@ -1,257 +1,259 @@ bin/AbiWord-2.0 bin/abiword bin/ttfadmin.sh bin/ttftool %%GNOME:%%libdata/bonobo/servers/GNOME_AbiWord_Control_2_0.server share/AbiSuite-2.0/AbiWord.exe.MANIFEST share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Break.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Field.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_FormatFootnotes.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_FormatTable.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_HdrFtr.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_InsertTable.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Insert_DateTime.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_MailMerge.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_New.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_PageNumbers.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Replace.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_WordCount.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_About.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Encoding.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Image.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Language.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Password.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_PluginManager.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_WindowMore.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Zoom.glade share/AbiSuite-2.0/AbiWord/readme.txt share/AbiSuite-2.0/AbiWord/scripts/abw2html.pl share/AbiSuite-2.0/AbiWord/strings/am-ET.strings share/AbiSuite-2.0/AbiWord/strings/art-lojban.strings share/AbiSuite-2.0/AbiWord/strings/bg-BG.strings share/AbiSuite-2.0/AbiWord/strings/ca-ES.strings share/AbiSuite-2.0/AbiWord/strings/cs-CZ.strings share/AbiSuite-2.0/AbiWord/strings/cy-GB.strings share/AbiSuite-2.0/AbiWord/strings/da-DK.strings share/AbiSuite-2.0/AbiWord/strings/de-CH.strings share/AbiSuite-2.0/AbiWord/strings/de-DE.strings share/AbiSuite-2.0/AbiWord/strings/el-GR.strings share/AbiSuite-2.0/AbiWord/strings/en-AU.strings share/AbiSuite-2.0/AbiWord/strings/en-GB.strings share/AbiSuite-2.0/AbiWord/strings/en-IE.strings share/AbiSuite-2.0/AbiWord/strings/es-ES.strings share/AbiSuite-2.0/AbiWord/strings/es-MX.strings share/AbiSuite-2.0/AbiWord/strings/eu-ES.strings share/AbiSuite-2.0/AbiWord/strings/fi-FI.strings share/AbiSuite-2.0/AbiWord/strings/fr-FR.strings share/AbiSuite-2.0/AbiWord/strings/ga-IE.strings share/AbiSuite-2.0/AbiWord/strings/gl-ES.strings share/AbiSuite-2.0/AbiWord/strings/he-IL.strings share/AbiSuite-2.0/AbiWord/strings/hu-HU.strings share/AbiSuite-2.0/AbiWord/strings/id-ID.strings share/AbiSuite-2.0/AbiWord/strings/it-IT.strings share/AbiSuite-2.0/AbiWord/strings/ja-JP.strings share/AbiSuite-2.0/AbiWord/strings/lt-LT.strings share/AbiSuite-2.0/AbiWord/strings/mh-MH.strings share/AbiSuite-2.0/AbiWord/strings/ms-MY.strings share/AbiSuite-2.0/AbiWord/strings/nb-NO.strings share/AbiSuite-2.0/AbiWord/strings/nl-NL.strings share/AbiSuite-2.0/AbiWord/strings/nn-NO.strings share/AbiSuite-2.0/AbiWord/strings/pl-PL.strings share/AbiSuite-2.0/AbiWord/strings/pt-BR.strings share/AbiSuite-2.0/AbiWord/strings/pt-PT.strings share/AbiSuite-2.0/AbiWord/strings/ro-RO.strings share/AbiSuite-2.0/AbiWord/strings/ru-RU.strings share/AbiSuite-2.0/AbiWord/strings/sc-IT.strings share/AbiSuite-2.0/AbiWord/strings/sk-SK.strings share/AbiSuite-2.0/AbiWord/strings/sl-SI.strings share/AbiSuite-2.0/AbiWord/strings/sq-AL.strings share/AbiSuite-2.0/AbiWord/strings/sr-SR.strings share/AbiSuite-2.0/AbiWord/strings/sv-SE.strings share/AbiSuite-2.0/AbiWord/strings/tr-TR.strings share/AbiSuite-2.0/AbiWord/strings/uk-UA.strings share/AbiSuite-2.0/AbiWord/strings/vi-VN.strings share/AbiSuite-2.0/AbiWord/strings/yi.strings share/AbiSuite-2.0/AbiWord/strings/zh-CN.strings share/AbiSuite-2.0/AbiWord/strings/zh-HK.strings share/AbiSuite-2.0/AbiWord/strings/zh-TW.strings share/AbiSuite-2.0/AbiWord/system.profile share/AbiSuite-2.0/AbiWord/system.profile-CP1254 share/AbiSuite-2.0/AbiWord/system.profile-KOI8-R share/AbiSuite-2.0/AbiWord/system.profile-KOI8-U share/AbiSuite-2.0/AbiWord/system.profile-KOI8-UB share/AbiSuite-2.0/AbiWord/system.profile-am-ET share/AbiSuite-2.0/AbiWord/system.profile-ar share/AbiSuite-2.0/AbiWord/system.profile-ar-EG share/AbiSuite-2.0/AbiWord/system.profile-ar-SA share/AbiSuite-2.0/AbiWord/system.profile-bg-BG share/AbiSuite-2.0/AbiWord/system.profile-ca-ES share/AbiSuite-2.0/AbiWord/system.profile-cs-CZ share/AbiSuite-2.0/AbiWord/system.profile-da-DK share/AbiSuite-2.0/AbiWord/system.profile-de share/AbiSuite-2.0/AbiWord/system.profile-de-AT share/AbiSuite-2.0/AbiWord/system.profile-de-CH share/AbiSuite-2.0/AbiWord/system.profile-de-DE share/AbiSuite-2.0/AbiWord/system.profile-div-MV share/AbiSuite-2.0/AbiWord/system.profile-el-GR share/AbiSuite-2.0/AbiWord/system.profile-en share/AbiSuite-2.0/AbiWord/system.profile-en-AU share/AbiSuite-2.0/AbiWord/system.profile-en-CA share/AbiSuite-2.0/AbiWord/system.profile-en-GB share/AbiSuite-2.0/AbiWord/system.profile-en-IE share/AbiSuite-2.0/AbiWord/system.profile-en-NZ share/AbiSuite-2.0/AbiWord/system.profile-en-US share/AbiSuite-2.0/AbiWord/system.profile-en-ZA share/AbiSuite-2.0/AbiWord/system.profile-es share/AbiSuite-2.0/AbiWord/system.profile-es-ES share/AbiSuite-2.0/AbiWord/system.profile-es-MX +share/AbiSuite-2.0/AbiWord/system.profile-eu +share/AbiSuite-2.0/AbiWord/system.profile-eu-ES share/AbiSuite-2.0/AbiWord/system.profile-fa-IR share/AbiSuite-2.0/AbiWord/system.profile-fi-FI share/AbiSuite-2.0/AbiWord/system.profile-fr share/AbiSuite-2.0/AbiWord/system.profile-fr-BE share/AbiSuite-2.0/AbiWord/system.profile-fr-CA share/AbiSuite-2.0/AbiWord/system.profile-fr-CH share/AbiSuite-2.0/AbiWord/system.profile-fr-FR share/AbiSuite-2.0/AbiWord/system.profile-gl-ES share/AbiSuite-2.0/AbiWord/system.profile-he share/AbiSuite-2.0/AbiWord/system.profile-he-IL share/AbiSuite-2.0/AbiWord/system.profile-hu-HU share/AbiSuite-2.0/AbiWord/system.profile-it-IT share/AbiSuite-2.0/AbiWord/system.profile-ja-JP share/AbiSuite-2.0/AbiWord/system.profile-lt-LT share/AbiSuite-2.0/AbiWord/system.profile-nb-NO share/AbiSuite-2.0/AbiWord/system.profile-nl-NL share/AbiSuite-2.0/AbiWord/system.profile-nn-NO share/AbiSuite-2.0/AbiWord/system.profile-pl-PL share/AbiSuite-2.0/AbiWord/system.profile-ps share/AbiSuite-2.0/AbiWord/system.profile-pt-BR share/AbiSuite-2.0/AbiWord/system.profile-pt-PT share/AbiSuite-2.0/AbiWord/system.profile-ru share/AbiSuite-2.0/AbiWord/system.profile-ru-RU share/AbiSuite-2.0/AbiWord/system.profile-sk-SK share/AbiSuite-2.0/AbiWord/system.profile-sk-SK.CP1250 share/AbiSuite-2.0/AbiWord/system.profile-sl share/AbiSuite-2.0/AbiWord/system.profile-sv share/AbiSuite-2.0/AbiWord/system.profile-sv-SE share/AbiSuite-2.0/AbiWord/system.profile-syr share/AbiSuite-2.0/AbiWord/system.profile-tr share/AbiSuite-2.0/AbiWord/system.profile-tr-TR share/AbiSuite-2.0/AbiWord/system.profile-tr-TR.CP1254 share/AbiSuite-2.0/AbiWord/system.profile-uk-UA share/AbiSuite-2.0/AbiWord/system.profile-ur-PK share/AbiSuite-2.0/AbiWord/system.profile-yi share/AbiSuite-2.0/AbiWord/system.profile-zh-CN share/AbiSuite-2.0/AbiWord/system.profile-zh-TW share/AbiSuite-2.0/GNOME_AbiWord_Control_2_0.server share/AbiSuite-2.0/README share/AbiSuite-2.0/abi-nautilus-view-file.xml share/AbiSuite-2.0/clipart/book.png share/AbiSuite-2.0/clipart/chip.png share/AbiSuite-2.0/clipart/fun.png share/AbiSuite-2.0/clipart/gear.png share/AbiSuite-2.0/clipart/gnomea.png share/AbiSuite-2.0/clipart/gnomeb.png share/AbiSuite-2.0/clipart/gnomec.png share/AbiSuite-2.0/clipart/gnomecorner.png share/AbiSuite-2.0/clipart/gnomed.png share/AbiSuite-2.0/clipart/gnomedecor1.png share/AbiSuite-2.0/clipart/gnomedecor2.png share/AbiSuite-2.0/clipart/gnomee.png share/AbiSuite-2.0/clipart/gnomeflowers.png share/AbiSuite-2.0/clipart/gnomeline.png share/AbiSuite-2.0/clipart/idea.png share/AbiSuite-2.0/clipart/lamp.png share/AbiSuite-2.0/clipart/monitor.png share/AbiSuite-2.0/clipart/music1.png share/AbiSuite-2.0/clipart/pinceau.png share/AbiSuite-2.0/clipart/simca.png share/AbiSuite-2.0/clipart/surprise.png share/AbiSuite-2.0/clipart/together.png share/AbiSuite-2.0/clipart/toolbox.png share/AbiSuite-2.0/clipart/tree.png share/AbiSuite-2.0/clipart/tux_bordelais.png share/AbiSuite-2.0/clipart/weather.png share/AbiSuite-2.0/clipart/write.png share/AbiSuite-2.0/icons/abiword_16.xpm share/AbiSuite-2.0/icons/abiword_48.png share/AbiSuite-2.0/icons/abiword_48.tif share/AbiSuite-2.0/icons/abiword_48.xpm %%GNOME:%%share/AbiSuite-2.0/icons/abiword_logo.xpm share/AbiSuite-2.0/templates/A4.awt share/AbiSuite-2.0/templates/Business-Report.awt share/AbiSuite-2.0/templates/Employee-Directory.awt share/AbiSuite-2.0/templates/Fax-Coversheet.awt share/AbiSuite-2.0/templates/Two-Columns.awt share/AbiSuite-2.0/templates/US-Letter.awt share/AbiSuite-2.0/templates/normal.awt share/AbiSuite-2.0/templates/normal.awt-am_ET share/AbiSuite-2.0/templates/normal.awt-ar share/AbiSuite-2.0/templates/normal.awt-ar_EG share/AbiSuite-2.0/templates/normal.awt-ar_SA share/AbiSuite-2.0/templates/normal.awt-bg_BG share/AbiSuite-2.0/templates/normal.awt-ca_ES share/AbiSuite-2.0/templates/normal.awt-cs_CZ share/AbiSuite-2.0/templates/normal.awt-da_DK share/AbiSuite-2.0/templates/normal.awt-de share/AbiSuite-2.0/templates/normal.awt-de_AT share/AbiSuite-2.0/templates/normal.awt-de_CH share/AbiSuite-2.0/templates/normal.awt-de_DE share/AbiSuite-2.0/templates/normal.awt-div_MV share/AbiSuite-2.0/templates/normal.awt-el_GR share/AbiSuite-2.0/templates/normal.awt-en_AU share/AbiSuite-2.0/templates/normal.awt-en_CA share/AbiSuite-2.0/templates/normal.awt-en_GB share/AbiSuite-2.0/templates/normal.awt-en_IE share/AbiSuite-2.0/templates/normal.awt-en_NZ share/AbiSuite-2.0/templates/normal.awt-en_ZA share/AbiSuite-2.0/templates/normal.awt-es share/AbiSuite-2.0/templates/normal.awt-es_ES share/AbiSuite-2.0/templates/normal.awt-es_FI share/AbiSuite-2.0/templates/normal.awt-es_IR share/AbiSuite-2.0/templates/normal.awt-es_MX share/AbiSuite-2.0/templates/normal.awt-fa_IR share/AbiSuite-2.0/templates/normal.awt-fr share/AbiSuite-2.0/templates/normal.awt-fr_BE share/AbiSuite-2.0/templates/normal.awt-fr_CA share/AbiSuite-2.0/templates/normal.awt-fr_CH share/AbiSuite-2.0/templates/normal.awt-fr_FR share/AbiSuite-2.0/templates/normal.awt-gl_ES share/AbiSuite-2.0/templates/normal.awt-he share/AbiSuite-2.0/templates/normal.awt-he_IL share/AbiSuite-2.0/templates/normal.awt-hu_HU share/AbiSuite-2.0/templates/normal.awt-it_IT share/AbiSuite-2.0/templates/normal.awt-ja_JP share/AbiSuite-2.0/templates/normal.awt-lt_LT share/AbiSuite-2.0/templates/normal.awt-nb_NO share/AbiSuite-2.0/templates/normal.awt-nl_NL share/AbiSuite-2.0/templates/normal.awt-nn_NO share/AbiSuite-2.0/templates/normal.awt-pl_PL share/AbiSuite-2.0/templates/normal.awt-ps share/AbiSuite-2.0/templates/normal.awt-pt_BR share/AbiSuite-2.0/templates/normal.awt-pt_PT share/AbiSuite-2.0/templates/normal.awt-ru share/AbiSuite-2.0/templates/normal.awt-ru_RU share/AbiSuite-2.0/templates/normal.awt-sk_SK share/AbiSuite-2.0/templates/normal.awt-sl share/AbiSuite-2.0/templates/normal.awt-sv share/AbiSuite-2.0/templates/normal.awt-sv_SE share/AbiSuite-2.0/templates/normal.awt-syr share/AbiSuite-2.0/templates/normal.awt-tr share/AbiSuite-2.0/templates/normal.awt-tr_TR share/AbiSuite-2.0/templates/normal.awt-uk_UA share/AbiSuite-2.0/templates/normal.awt-ur_PK share/AbiSuite-2.0/templates/normal.awt-yi share/AbiSuite-2.0/templates/normal.awt-zh_CN share/AbiSuite-2.0/templates/normal.awt-zh_TW share/gnome/apps/Applications/abiword.desktop %%GNOME:%%share/gnome/gnome-2.0/ui/abi-nautilus-view-file.xml share/gnome/pixmaps/abiword_48.png @dirrm share/AbiSuite-2.0/templates @dirrm share/AbiSuite-2.0/icons @dirrm share/AbiSuite-2.0/dictionary @dirrm share/AbiSuite-2.0/clipart @dirrm share/AbiSuite-2.0/AbiWord/strings @dirrm share/AbiSuite-2.0/AbiWord/scripts @dirrm share/AbiSuite-2.0/AbiWord/glade @dirrm share/AbiSuite-2.0/AbiWord @dirrm share/AbiSuite-2.0 Property changes on: head/editors/abiword/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property Index: head/editors/abiword-devel/Makefile =================================================================== --- head/editors/abiword-devel/Makefile (revision 84749) +++ head/editors/abiword-devel/Makefile (revision 84750) @@ -1,95 +1,95 @@ # New ports collection makefile for: AbiWord2 # Date created: 22 February 2003 # Whom: Joe Marcus Clarke # # $FreeBSD$ # PORTNAME= AbiWord2 -PORTVERSION= 1.99.1 +PORTVERSION= 1.99.2 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://www.abisource.com/downloads/Version-${PORTVERSION}/lf/ MASTER_SITE_SUBDIR= abiword DISTNAME= abiword-${PORTVERSION} MAINTAINER= gnome@FreeBSD.org COMMENT= An open-source, cross-platform WYSIWYG word processor # unzip is needed during the installation process BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ iconv.3:${PORTSDIR}/converters/libiconv \ fribidi.0:${PORTSDIR}/converters/fribidi \ popt.0:${PORTSDIR}/devel/popt \ aspell.15:${PORTSDIR}/textproc/aspell DIST_SUBDIR= AbiWord WRKSRC= ${WRKDIR}/abiword-${PORTVERSION}/abi USE_X_PREFIX= yes USE_AUTOMAKE= yes USE_AUTOMAKE_VER=14 USE_AUTOCONF_VER=213 USE_GMAKE= yes USE_REINPLACE= yes USE_GNOME= gnomehier libglade2 libxml2 WANT_GNOME= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib -liconv" CONFIGURE_ARGS= --enable-xft MAKEFILE= GNUmakefile .include .if exists(${LOCALBASE}/include/wv.h) BROKEN= "This port cannot be built when textproc/wv is installed because of a header conflict. Please remove textproc/wv, and resume the build. If textproc/wv is no longer installed, please remove ${LOCALBASE}/include/wv.h, and resume the AbiWord2 build" .endif -.if ${HAVE_GNOME:Mnautilus2}!="" && ${HAVE_GNOME:Mgal2}!="" -USE_GNOME+= nautilus2 gal2 +.if ${HAVE_GNOME:Mnautilus2}!="" +USE_GNOME+= nautilus2 CONFIGURE_ARGS+= --enable-gnome PKGNAMESUFFIX= -gnome GNOME_ENABLED= yes .endif .if defined(WITH_GUCHARMAP) || exists(${X11BASE}/libdata/pkgconfig/gucharmap.pc) LIB_DEPENDS+= gucharmap.3:${PORTSDIR}/misc/gucharmap .else CONFIGURE_ARGS+= --enable-cmap=no .endif pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "AbiWord2 has the following tunable option(s):" @${ECHO_MSG} " WITH_GUCHARMAP=yes Enable use of Gucharmap as the symbol insertion tool (default: auto)" @${ECHO_MSG} "" post-patch: @${REINPLACE_CMD} -e 's|%%AUTOMAKE%%|${AUTOMAKE}|g ; \ s|%%ACLOCAL%%|${ACLOCAL}|g ; \ s|%%AUTOCONF%%|${AUTOCONF}|g' ${WRKSRC}/autogen.sh pre-configure: @cd ${WRKSRC} && ${TOUCH} NEWS README AUTHORS ChangeLog INSTALL @cd ${WRKSRC}/ac-helpers && ${RM} -f install-sh mkinstalldirs missing @${RM} -f ${WRKSRC}/configure.ac @cd ${WRKSRC} && ./autogen.sh && ${TRUE} @${FIND} ${WRKSRC} -name GNUmakefile.in | xargs ${REINPLACE_CMD} -e \ 's|[(]libdir[)]/@PACKAGE@|(datadir)/@PACKAGE@|g ; \ s|@DEFS@|-I${WRKSRC}/../libiconv/include @DEFS@|g' && ${TRUE} post-install: @${INSTALL_DATA} ${WRKSRC}/src/pkg/linux/rpm/data/abiword.desktop \ ${PREFIX}/share/gnome/apps/Applications/abiword.desktop @${LN} -sf ${PREFIX}/share/AbiSuite-2.0/icons/abiword_48.png \ ${PREFIX}/share/gnome/pixmaps/abiword_48.png .if defined(GNOME_ENABLED) @${LN} -sf ${PREFIX}/share/AbiSuite-2.0/GNOME_AbiWord_Control_2_0.server\ ${PREFIX}/libdata/bonobo/servers/GNOME_AbiWord_Control_2_0.server @${LN} -sf ${PREFIX}/share/AbiSuite-2.0/abi-nautilus-view-file.xml \ ${PREFIX}/share/gnome/gnome-2.0/ui/abi-nautilus-view-file.xml .endif .include Property changes on: head/editors/abiword-devel/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.63 \ No newline at end of property +1.64 \ No newline at end of property Index: head/editors/abiword-devel/distinfo =================================================================== --- head/editors/abiword-devel/distinfo (revision 84749) +++ head/editors/abiword-devel/distinfo (revision 84750) @@ -1 +1 @@ -MD5 (AbiWord/abiword-1.99.1.tar.gz) = e96b50aea36ebf935d001b436b2bc582 +MD5 (AbiWord/abiword-1.99.2.tar.gz) = 6319519f6f8b3eb70b0370bf694350d4 Property changes on: head/editors/abiword-devel/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property Index: head/editors/abiword-devel/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp =================================================================== --- head/editors/abiword-devel/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp (nonexistent) +++ head/editors/abiword-devel/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp (revision 84750) @@ -0,0 +1,79 @@ +--- src/text/ptbl/xp/pp_AttrProp.cpp.orig Sat Jul 12 02:57:05 2003 ++++ src/text/ptbl/xp/pp_AttrProp.cpp Sat Jul 12 03:04:49 2003 +@@ -82,7 +82,7 @@ + void* tmp = const_cast (entry->first()); + FREEP(tmp); + if (entry->second()) +- delete static_cast(entry->second()); ++ delete (const PP_PropertyType*)entry->second(); + delete entry; + } + } +@@ -336,7 +336,7 @@ + + FREEP(tmp); + if (p->second()) +- delete static_cast(p->second()); ++ delete (const PP_PropertyType *)p->second(); + delete p; + + if(bRemove) +@@ -406,7 +406,7 @@ + if ( (i == ndx) && c.is_valid()) + { + szName = static_cast(c.key().c_str()); +- szValue = static_cast(static_cast(val)->first()); ++ szValue = (const XML_Char*)(static_cast(val)->first()); + return true; + } + return false; +@@ -421,7 +421,7 @@ + if (!pEntry) + return false; + +- szValue = static_cast(static_cast(pEntry)->first()); ++ szValue = (const XML_Char *)(static_cast(pEntry)->first()); + + return true; + } +@@ -440,12 +440,12 @@ + m_pProperties->set(szName, new UT_Pair + (pEntry->first(), + PP_PropertyType::createPropertyType(Type, +- static_cast(pEntry->first())))); ++ (const XML_Char *)(pEntry->first())))); + delete pEntry; + pEntry = static_cast(m_pProperties->pick(szName)); + } + +- return static_cast(pEntry->second()); ++ return (const PP_PropertyType *)(pEntry->second()); + } + bool PP_AttrProp::getAttribute(const XML_Char * szName, const XML_Char *& szValue) const + { +@@ -750,14 +750,14 @@ + { + const UT_Pair* p = static_cast(pEntry); + +- if(*(static_cast(p->first())) == 0) ++ if(*((const XML_Char *)(p->first())) == 0) + { + + void* tmp = const_cast (p->first()); + UT_ASSERT(!m_bIsReadOnly); + FREEP(tmp); + if (p->second()) +- delete static_cast(p->second()); ++ delete (const PP_PropertyType *)(p->second()); + delete p; + + m_pProperties->remove(_hc1.key(),pEntry); +@@ -985,7 +985,7 @@ + while (val != NULL) + { + s1 = static_cast(c2.key().c_str()); +- s2 = static_cast(static_cast(val)->first()); ++ s2 = (const XML_Char *)(static_cast(val)->first()); + + m_checkSum += UT_XML_strlen(s1); + m_checkSum += UT_XML_strlen(s2); Property changes on: head/editors/abiword-devel/files/patch-src_text_ptbl_xp_pp_AttrProp.cpp ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/editors/abiword-devel/pkg-plist =================================================================== --- head/editors/abiword-devel/pkg-plist (revision 84749) +++ head/editors/abiword-devel/pkg-plist (revision 84750) @@ -1,257 +1,259 @@ bin/AbiWord-2.0 bin/abiword bin/ttfadmin.sh bin/ttftool %%GNOME:%%libdata/bonobo/servers/GNOME_AbiWord_Control_2_0.server share/AbiSuite-2.0/AbiWord.exe.MANIFEST share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Break.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Field.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_FormatFootnotes.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_FormatTable.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_HdrFtr.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_InsertTable.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Insert_DateTime.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_MailMerge.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_New.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_PageNumbers.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_Replace.glade share/AbiSuite-2.0/AbiWord/glade/ap_UnixDialog_WordCount.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_About.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Encoding.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Image.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Language.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Password.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_PluginManager.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_WindowMore.glade share/AbiSuite-2.0/AbiWord/glade/xap_UnixDlg_Zoom.glade share/AbiSuite-2.0/AbiWord/readme.txt share/AbiSuite-2.0/AbiWord/scripts/abw2html.pl share/AbiSuite-2.0/AbiWord/strings/am-ET.strings share/AbiSuite-2.0/AbiWord/strings/art-lojban.strings share/AbiSuite-2.0/AbiWord/strings/bg-BG.strings share/AbiSuite-2.0/AbiWord/strings/ca-ES.strings share/AbiSuite-2.0/AbiWord/strings/cs-CZ.strings share/AbiSuite-2.0/AbiWord/strings/cy-GB.strings share/AbiSuite-2.0/AbiWord/strings/da-DK.strings share/AbiSuite-2.0/AbiWord/strings/de-CH.strings share/AbiSuite-2.0/AbiWord/strings/de-DE.strings share/AbiSuite-2.0/AbiWord/strings/el-GR.strings share/AbiSuite-2.0/AbiWord/strings/en-AU.strings share/AbiSuite-2.0/AbiWord/strings/en-GB.strings share/AbiSuite-2.0/AbiWord/strings/en-IE.strings share/AbiSuite-2.0/AbiWord/strings/es-ES.strings share/AbiSuite-2.0/AbiWord/strings/es-MX.strings share/AbiSuite-2.0/AbiWord/strings/eu-ES.strings share/AbiSuite-2.0/AbiWord/strings/fi-FI.strings share/AbiSuite-2.0/AbiWord/strings/fr-FR.strings share/AbiSuite-2.0/AbiWord/strings/ga-IE.strings share/AbiSuite-2.0/AbiWord/strings/gl-ES.strings share/AbiSuite-2.0/AbiWord/strings/he-IL.strings share/AbiSuite-2.0/AbiWord/strings/hu-HU.strings share/AbiSuite-2.0/AbiWord/strings/id-ID.strings share/AbiSuite-2.0/AbiWord/strings/it-IT.strings share/AbiSuite-2.0/AbiWord/strings/ja-JP.strings share/AbiSuite-2.0/AbiWord/strings/lt-LT.strings share/AbiSuite-2.0/AbiWord/strings/mh-MH.strings share/AbiSuite-2.0/AbiWord/strings/ms-MY.strings share/AbiSuite-2.0/AbiWord/strings/nb-NO.strings share/AbiSuite-2.0/AbiWord/strings/nl-NL.strings share/AbiSuite-2.0/AbiWord/strings/nn-NO.strings share/AbiSuite-2.0/AbiWord/strings/pl-PL.strings share/AbiSuite-2.0/AbiWord/strings/pt-BR.strings share/AbiSuite-2.0/AbiWord/strings/pt-PT.strings share/AbiSuite-2.0/AbiWord/strings/ro-RO.strings share/AbiSuite-2.0/AbiWord/strings/ru-RU.strings share/AbiSuite-2.0/AbiWord/strings/sc-IT.strings share/AbiSuite-2.0/AbiWord/strings/sk-SK.strings share/AbiSuite-2.0/AbiWord/strings/sl-SI.strings share/AbiSuite-2.0/AbiWord/strings/sq-AL.strings share/AbiSuite-2.0/AbiWord/strings/sr-SR.strings share/AbiSuite-2.0/AbiWord/strings/sv-SE.strings share/AbiSuite-2.0/AbiWord/strings/tr-TR.strings share/AbiSuite-2.0/AbiWord/strings/uk-UA.strings share/AbiSuite-2.0/AbiWord/strings/vi-VN.strings share/AbiSuite-2.0/AbiWord/strings/yi.strings share/AbiSuite-2.0/AbiWord/strings/zh-CN.strings share/AbiSuite-2.0/AbiWord/strings/zh-HK.strings share/AbiSuite-2.0/AbiWord/strings/zh-TW.strings share/AbiSuite-2.0/AbiWord/system.profile share/AbiSuite-2.0/AbiWord/system.profile-CP1254 share/AbiSuite-2.0/AbiWord/system.profile-KOI8-R share/AbiSuite-2.0/AbiWord/system.profile-KOI8-U share/AbiSuite-2.0/AbiWord/system.profile-KOI8-UB share/AbiSuite-2.0/AbiWord/system.profile-am-ET share/AbiSuite-2.0/AbiWord/system.profile-ar share/AbiSuite-2.0/AbiWord/system.profile-ar-EG share/AbiSuite-2.0/AbiWord/system.profile-ar-SA share/AbiSuite-2.0/AbiWord/system.profile-bg-BG share/AbiSuite-2.0/AbiWord/system.profile-ca-ES share/AbiSuite-2.0/AbiWord/system.profile-cs-CZ share/AbiSuite-2.0/AbiWord/system.profile-da-DK share/AbiSuite-2.0/AbiWord/system.profile-de share/AbiSuite-2.0/AbiWord/system.profile-de-AT share/AbiSuite-2.0/AbiWord/system.profile-de-CH share/AbiSuite-2.0/AbiWord/system.profile-de-DE share/AbiSuite-2.0/AbiWord/system.profile-div-MV share/AbiSuite-2.0/AbiWord/system.profile-el-GR share/AbiSuite-2.0/AbiWord/system.profile-en share/AbiSuite-2.0/AbiWord/system.profile-en-AU share/AbiSuite-2.0/AbiWord/system.profile-en-CA share/AbiSuite-2.0/AbiWord/system.profile-en-GB share/AbiSuite-2.0/AbiWord/system.profile-en-IE share/AbiSuite-2.0/AbiWord/system.profile-en-NZ share/AbiSuite-2.0/AbiWord/system.profile-en-US share/AbiSuite-2.0/AbiWord/system.profile-en-ZA share/AbiSuite-2.0/AbiWord/system.profile-es share/AbiSuite-2.0/AbiWord/system.profile-es-ES share/AbiSuite-2.0/AbiWord/system.profile-es-MX +share/AbiSuite-2.0/AbiWord/system.profile-eu +share/AbiSuite-2.0/AbiWord/system.profile-eu-ES share/AbiSuite-2.0/AbiWord/system.profile-fa-IR share/AbiSuite-2.0/AbiWord/system.profile-fi-FI share/AbiSuite-2.0/AbiWord/system.profile-fr share/AbiSuite-2.0/AbiWord/system.profile-fr-BE share/AbiSuite-2.0/AbiWord/system.profile-fr-CA share/AbiSuite-2.0/AbiWord/system.profile-fr-CH share/AbiSuite-2.0/AbiWord/system.profile-fr-FR share/AbiSuite-2.0/AbiWord/system.profile-gl-ES share/AbiSuite-2.0/AbiWord/system.profile-he share/AbiSuite-2.0/AbiWord/system.profile-he-IL share/AbiSuite-2.0/AbiWord/system.profile-hu-HU share/AbiSuite-2.0/AbiWord/system.profile-it-IT share/AbiSuite-2.0/AbiWord/system.profile-ja-JP share/AbiSuite-2.0/AbiWord/system.profile-lt-LT share/AbiSuite-2.0/AbiWord/system.profile-nb-NO share/AbiSuite-2.0/AbiWord/system.profile-nl-NL share/AbiSuite-2.0/AbiWord/system.profile-nn-NO share/AbiSuite-2.0/AbiWord/system.profile-pl-PL share/AbiSuite-2.0/AbiWord/system.profile-ps share/AbiSuite-2.0/AbiWord/system.profile-pt-BR share/AbiSuite-2.0/AbiWord/system.profile-pt-PT share/AbiSuite-2.0/AbiWord/system.profile-ru share/AbiSuite-2.0/AbiWord/system.profile-ru-RU share/AbiSuite-2.0/AbiWord/system.profile-sk-SK share/AbiSuite-2.0/AbiWord/system.profile-sk-SK.CP1250 share/AbiSuite-2.0/AbiWord/system.profile-sl share/AbiSuite-2.0/AbiWord/system.profile-sv share/AbiSuite-2.0/AbiWord/system.profile-sv-SE share/AbiSuite-2.0/AbiWord/system.profile-syr share/AbiSuite-2.0/AbiWord/system.profile-tr share/AbiSuite-2.0/AbiWord/system.profile-tr-TR share/AbiSuite-2.0/AbiWord/system.profile-tr-TR.CP1254 share/AbiSuite-2.0/AbiWord/system.profile-uk-UA share/AbiSuite-2.0/AbiWord/system.profile-ur-PK share/AbiSuite-2.0/AbiWord/system.profile-yi share/AbiSuite-2.0/AbiWord/system.profile-zh-CN share/AbiSuite-2.0/AbiWord/system.profile-zh-TW share/AbiSuite-2.0/GNOME_AbiWord_Control_2_0.server share/AbiSuite-2.0/README share/AbiSuite-2.0/abi-nautilus-view-file.xml share/AbiSuite-2.0/clipart/book.png share/AbiSuite-2.0/clipart/chip.png share/AbiSuite-2.0/clipart/fun.png share/AbiSuite-2.0/clipart/gear.png share/AbiSuite-2.0/clipart/gnomea.png share/AbiSuite-2.0/clipart/gnomeb.png share/AbiSuite-2.0/clipart/gnomec.png share/AbiSuite-2.0/clipart/gnomecorner.png share/AbiSuite-2.0/clipart/gnomed.png share/AbiSuite-2.0/clipart/gnomedecor1.png share/AbiSuite-2.0/clipart/gnomedecor2.png share/AbiSuite-2.0/clipart/gnomee.png share/AbiSuite-2.0/clipart/gnomeflowers.png share/AbiSuite-2.0/clipart/gnomeline.png share/AbiSuite-2.0/clipart/idea.png share/AbiSuite-2.0/clipart/lamp.png share/AbiSuite-2.0/clipart/monitor.png share/AbiSuite-2.0/clipart/music1.png share/AbiSuite-2.0/clipart/pinceau.png share/AbiSuite-2.0/clipart/simca.png share/AbiSuite-2.0/clipart/surprise.png share/AbiSuite-2.0/clipart/together.png share/AbiSuite-2.0/clipart/toolbox.png share/AbiSuite-2.0/clipart/tree.png share/AbiSuite-2.0/clipart/tux_bordelais.png share/AbiSuite-2.0/clipart/weather.png share/AbiSuite-2.0/clipart/write.png share/AbiSuite-2.0/icons/abiword_16.xpm share/AbiSuite-2.0/icons/abiword_48.png share/AbiSuite-2.0/icons/abiword_48.tif share/AbiSuite-2.0/icons/abiword_48.xpm %%GNOME:%%share/AbiSuite-2.0/icons/abiword_logo.xpm share/AbiSuite-2.0/templates/A4.awt share/AbiSuite-2.0/templates/Business-Report.awt share/AbiSuite-2.0/templates/Employee-Directory.awt share/AbiSuite-2.0/templates/Fax-Coversheet.awt share/AbiSuite-2.0/templates/Two-Columns.awt share/AbiSuite-2.0/templates/US-Letter.awt share/AbiSuite-2.0/templates/normal.awt share/AbiSuite-2.0/templates/normal.awt-am_ET share/AbiSuite-2.0/templates/normal.awt-ar share/AbiSuite-2.0/templates/normal.awt-ar_EG share/AbiSuite-2.0/templates/normal.awt-ar_SA share/AbiSuite-2.0/templates/normal.awt-bg_BG share/AbiSuite-2.0/templates/normal.awt-ca_ES share/AbiSuite-2.0/templates/normal.awt-cs_CZ share/AbiSuite-2.0/templates/normal.awt-da_DK share/AbiSuite-2.0/templates/normal.awt-de share/AbiSuite-2.0/templates/normal.awt-de_AT share/AbiSuite-2.0/templates/normal.awt-de_CH share/AbiSuite-2.0/templates/normal.awt-de_DE share/AbiSuite-2.0/templates/normal.awt-div_MV share/AbiSuite-2.0/templates/normal.awt-el_GR share/AbiSuite-2.0/templates/normal.awt-en_AU share/AbiSuite-2.0/templates/normal.awt-en_CA share/AbiSuite-2.0/templates/normal.awt-en_GB share/AbiSuite-2.0/templates/normal.awt-en_IE share/AbiSuite-2.0/templates/normal.awt-en_NZ share/AbiSuite-2.0/templates/normal.awt-en_ZA share/AbiSuite-2.0/templates/normal.awt-es share/AbiSuite-2.0/templates/normal.awt-es_ES share/AbiSuite-2.0/templates/normal.awt-es_FI share/AbiSuite-2.0/templates/normal.awt-es_IR share/AbiSuite-2.0/templates/normal.awt-es_MX share/AbiSuite-2.0/templates/normal.awt-fa_IR share/AbiSuite-2.0/templates/normal.awt-fr share/AbiSuite-2.0/templates/normal.awt-fr_BE share/AbiSuite-2.0/templates/normal.awt-fr_CA share/AbiSuite-2.0/templates/normal.awt-fr_CH share/AbiSuite-2.0/templates/normal.awt-fr_FR share/AbiSuite-2.0/templates/normal.awt-gl_ES share/AbiSuite-2.0/templates/normal.awt-he share/AbiSuite-2.0/templates/normal.awt-he_IL share/AbiSuite-2.0/templates/normal.awt-hu_HU share/AbiSuite-2.0/templates/normal.awt-it_IT share/AbiSuite-2.0/templates/normal.awt-ja_JP share/AbiSuite-2.0/templates/normal.awt-lt_LT share/AbiSuite-2.0/templates/normal.awt-nb_NO share/AbiSuite-2.0/templates/normal.awt-nl_NL share/AbiSuite-2.0/templates/normal.awt-nn_NO share/AbiSuite-2.0/templates/normal.awt-pl_PL share/AbiSuite-2.0/templates/normal.awt-ps share/AbiSuite-2.0/templates/normal.awt-pt_BR share/AbiSuite-2.0/templates/normal.awt-pt_PT share/AbiSuite-2.0/templates/normal.awt-ru share/AbiSuite-2.0/templates/normal.awt-ru_RU share/AbiSuite-2.0/templates/normal.awt-sk_SK share/AbiSuite-2.0/templates/normal.awt-sl share/AbiSuite-2.0/templates/normal.awt-sv share/AbiSuite-2.0/templates/normal.awt-sv_SE share/AbiSuite-2.0/templates/normal.awt-syr share/AbiSuite-2.0/templates/normal.awt-tr share/AbiSuite-2.0/templates/normal.awt-tr_TR share/AbiSuite-2.0/templates/normal.awt-uk_UA share/AbiSuite-2.0/templates/normal.awt-ur_PK share/AbiSuite-2.0/templates/normal.awt-yi share/AbiSuite-2.0/templates/normal.awt-zh_CN share/AbiSuite-2.0/templates/normal.awt-zh_TW share/gnome/apps/Applications/abiword.desktop %%GNOME:%%share/gnome/gnome-2.0/ui/abi-nautilus-view-file.xml share/gnome/pixmaps/abiword_48.png @dirrm share/AbiSuite-2.0/templates @dirrm share/AbiSuite-2.0/icons @dirrm share/AbiSuite-2.0/dictionary @dirrm share/AbiSuite-2.0/clipart @dirrm share/AbiSuite-2.0/AbiWord/strings @dirrm share/AbiSuite-2.0/AbiWord/scripts @dirrm share/AbiSuite-2.0/AbiWord/glade @dirrm share/AbiSuite-2.0/AbiWord @dirrm share/AbiSuite-2.0 Property changes on: head/editors/abiword-devel/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property