Update to 2.0.2
Changes: o Translation updates. o Set the default values in the Insert Table dialog (GTK) properly. o Add checks for setenv/putenv and for strings.h o Fix bad deletion of resources. o Fix various resource leaks. And more... please review http://www.abisource.com/release-notes/2.0.2.html to see a complete list of changes. While here, remove Makefile.common, abiword2-gnome install the same files with or without --disable-gnome :/ (pointed out by Martti Kuparinen).
This commit is contained in:
parent
f6c432ea88
commit
b0d97157a4
4 changed files with 321 additions and 329 deletions
|
@ -1,17 +1,69 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2003/12/14 03:24:49 xtraeme Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2003/12/21 09:23:12 xtraeme Exp $
|
||||
#
|
||||
|
||||
.include "${.CURDIR}/Makefile.common"
|
||||
DISTNAME= abiword-${DIST_VER}
|
||||
PKGNAME= ${DISTNAME:S/word/word2/}
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/abi
|
||||
CATEGORIES= editors
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=abiword/}
|
||||
|
||||
PKGNAME= abiword2-${DIST_VER}
|
||||
COMMENT= Abiword Suite 2.0 (GTK+ 2)
|
||||
MAINTAINER= xtraeme@NetBSD.org
|
||||
HOMEPAGE= http://www.abisource.com/
|
||||
COMMENT= Open Source cross-platform word processor (version 2)
|
||||
|
||||
CONFIGURE_ARGS+= --disable-gnome
|
||||
BUILD_USES_MSGFMT= yes
|
||||
|
||||
PLIST_SUBST+= WITH_GNOME="@comment "
|
||||
GNU_CONFIGURE= yes
|
||||
USE_BUILDLINK2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_PERL5= run
|
||||
USE_X11= yes
|
||||
|
||||
CONFLICTS= abiword2-gnome-[0-9]*
|
||||
REPLACE_PERL= user/wp/scripts/abw2html.pl
|
||||
|
||||
USE_GNU_ICONV= yes # XXX
|
||||
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
DIST_VER= 2.0.2
|
||||
|
||||
CONFIGURE_ARGS+= --enable-threads
|
||||
CONFIGURE_ARGS+= --with-sys-wv
|
||||
CONFIGURE_ARGS+= --with-libxml2
|
||||
CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib}
|
||||
CONFIGURE_ARGS+= --with-popt=${BUILDLINK_PREFIX.popt}
|
||||
CONFIGURE_ARGS+= --with-libjpeg-prefix=${BUILDLINK_PREFIX.jpeg}
|
||||
CONFIGURE_ARGS+= --with-libpng=${BUILDLINK_PREFIX.png}
|
||||
|
||||
PATCHDIR= ${.CURDIR}/../../editors/abiword2/patches
|
||||
PLIST_SRC= ${.CURDIR}/../../editors/abiword2/PLIST
|
||||
DESCR_SRC= ${.CURDIR}/../../editors/abiword2/DESCR
|
||||
DISTINFO_FILE= ${.CURDIR}/../../editors/abiword2/distinfo
|
||||
|
||||
.include "../../mk/bsd.prefs.mk"
|
||||
|
||||
BUILD_DEFS+= ABIWORD_USES_GUCHARMAP
|
||||
|
||||
ABIWORD_USES_GUCHARMAP?= NO
|
||||
|
||||
.if !empty(ABIWORD_USES_GUCHARMAP:M[Yy][Ee][Ss])
|
||||
CONFIGURE_ARGS+= --enable-gucharmap
|
||||
.include "../../fonts/gucharmap/buildlink2.mk"
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-gucharmap
|
||||
.endif
|
||||
|
||||
.include "../../converters/fribidi/buildlink2.mk"
|
||||
.include "../../converters/libiconv/buildlink2.mk"
|
||||
.include "../../converters/wv/buildlink2.mk"
|
||||
.include "../../devel/pkgconfig/buildlink2.mk"
|
||||
.include "../../devel/popt/buildlink2.mk"
|
||||
.include "../../graphics/jpeg/buildlink2.mk"
|
||||
.include "../../graphics/png/buildlink2.mk"
|
||||
.include "../../textproc/enchant/buildlink2.mk"
|
||||
.include "../../textproc/libxml2/buildlink2.mk"
|
||||
.include "../../devel/libglade2/buildlink2.mk"
|
||||
.include "../../x11/gtk2/buildlink2.mk"
|
||||
|
||||
.include "../../mk/pthread.buildlink2.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,61 +0,0 @@
|
|||
# $NetBSD: Makefile.common,v 1.1.1.1 2003/12/14 03:24:51 xtraeme Exp $
|
||||
#
|
||||
|
||||
DISTNAME= abiword-${DIST_VER}
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}/abi
|
||||
CATEGORIES= editors
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=abiword/}
|
||||
|
||||
MAINTAINER= xtraeme@NetBSD.org
|
||||
HOMEPAGE= http://www.abisource.com/
|
||||
|
||||
BUILD_USES_MSGFMT= yes
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_BUILDLINK2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_X11= yes
|
||||
|
||||
USE_GNU_ICONV= yes # XXX
|
||||
|
||||
MAKEFILE= GNUmakefile
|
||||
|
||||
DIST_VER= 2.0.1-2
|
||||
|
||||
CONFIGURE_ARGS+= --enable-threads
|
||||
CONFIGURE_ARGS+= --with-sys-wv
|
||||
CONFIGURE_ARGS+= --with-libxml2
|
||||
CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib}
|
||||
CONFIGURE_ARGS+= --with-popt=${BUILDLINK_PREFIX.popt}
|
||||
CONFIGURE_ARGS+= --with-libjpeg-prefix=${BUILDLINK_PREFIX.jpeg}
|
||||
CONFIGURE_ARGS+= --with-libpng=${BUILDLINK_PREFIX.png}
|
||||
|
||||
PATCHDIR= ${.CURDIR}/../../editors/abiword2/patches
|
||||
PLIST_SRC= ${.CURDIR}/../../editors/abiword2/PLIST
|
||||
DESCR_SRC= ${.CURDIR}/../../editors/abiword2/DESCR
|
||||
DISTINFO_FILE= ${.CURDIR}/../../editors/abiword2/distinfo
|
||||
|
||||
.include "../../mk/bsd.prefs.mk"
|
||||
|
||||
BUILD_DEFS+= ABIWORD_USES_GUCHARMAP
|
||||
|
||||
ABIWORD_USES_GUCHARMAP?= no
|
||||
|
||||
.if !empty(ABIWORD_USES_GUCHARMAP:M[Yy][Ee][Ss])
|
||||
CONFIGURE_ARGS+= --enable-cmap
|
||||
.include "../../fonts/gucharmap/buildlink2.mk"
|
||||
.else
|
||||
CONFIGURE_ARGS+= --enable-cmap=no
|
||||
.endif
|
||||
|
||||
.include "../../converters/fribidi/buildlink2.mk"
|
||||
.include "../../converters/libiconv/buildlink2.mk"
|
||||
.include "../../converters/wv/buildlink2.mk"
|
||||
.include "../../devel/pkgconfig/buildlink2.mk"
|
||||
.include "../../devel/popt/buildlink2.mk"
|
||||
.include "../../graphics/jpeg/buildlink2.mk"
|
||||
.include "../../graphics/png/buildlink2.mk"
|
||||
.include "../../textproc/enchant/buildlink2.mk"
|
||||
.include "../../textproc/libxml2/buildlink2.mk"
|
||||
|
||||
.include "../../mk/pthread.buildlink2.mk"
|
|
@ -1,261 +1,262 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2003/12/14 03:24:51 xtraeme Exp $
|
||||
bin/AbiWord-${PKGVERSION}.0
|
||||
@comment $NetBSD: PLIST,v 1.2 2003/12/21 09:23:12 xtraeme Exp $
|
||||
bin/AbiWord-2.0
|
||||
bin/abiword
|
||||
bin/ttfadmin.sh
|
||||
bin/ttftool
|
||||
${WITH_GNOME}lib/bonobo/servers/GNOME_AbiWord_Control_${PKGVERSION}_0.server
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord.exe.MANIFEST
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_Break.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_Field.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_FormatFootnotes.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_FormatTable.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_HdrFtr.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_InsertTable.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_Insert_DateTime.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_MailMerge.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_New.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_PageNumbers.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_Replace.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/ap_UnixDialog_WordCount.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/xap_UnixDlg_About.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/xap_UnixDlg_Encoding.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/xap_UnixDlg_Image.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/xap_UnixDlg_Language.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/xap_UnixDlg_Password.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/xap_UnixDlg_PluginManager.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/xap_UnixDlg_WindowMore.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/glade/xap_UnixDlg_Zoom.glade
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/readme.txt
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/scripts/abw2html.pl
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/am-ET.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/be-BY.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/bg-BG.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/br-FR.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/ca-ES.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/cs-CZ.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/cy-GB.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/da-DK.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/de-CH.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/de-DE.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/el-GR.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/en-AU.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/en-GB.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/en-IE.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/es-ES.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/es-MX.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/eu-ES.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/fi-FI.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/fr-FR.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/ga-IE.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/gl-ES.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/he-IL.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/hu-HU.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/id-ID.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/it-IT.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/ja-JP.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/jbo.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/lt-LT.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/lv-LV.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/mh-MH.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/ms-MY.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/nb-NO.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/nl-NL.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/nn-NO.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/pl-PL.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/pt-BR.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/pt-PT.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/ro-RO.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/ru-RU.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/sc-IT.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/sk-SK.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/sl-SI.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/sq-AL.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/sr.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/sv-SE.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/tr-TR.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/uk-UA.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/vi-VN.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/yi.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/zh-CN.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/zh-HK.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/strings/zh-TW.strings
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-CP1254
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-KOI8-R
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-KOI8-U
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-KOI8-UB
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-am-ET
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-ar
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-ar-EG
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-ar-SA
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-bg-BG
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-ca-ES
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-cs-CZ
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-da-DK
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-de
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-de-AT
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-de-CH
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-de-DE
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-div-MV
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-el-GR
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-en
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-en-AU
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-en-CA
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-en-GB
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-en-IE
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-en-NZ
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-en-US
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-en-ZA
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-es
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-es-ES
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-es-MX
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-eu
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-eu-ES
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-fa-IR
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-fi-FI
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-fr
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-fr-BE
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-fr-CA
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-fr-CH
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-fr-FR
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-gl-ES
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-he
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-he-IL
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-hu-HU
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-it-IT
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-ja-JP
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-lt-LT
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-nb-NO
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-nl-NL
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-nn-NO
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-pl-PL
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-ps
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-pt-BR
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-pt-PT
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-ru
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-ru-RU
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-sk-SK
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-sk-SK.CP1250
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-sl
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-sv
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-sv-SE
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-syr
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-tr
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-tr-TR
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-tr-TR.CP1254
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-uk-UA
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-ur-PK
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-yi
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-zh-CN
|
||||
share/AbiSuite-${PKGVERSION}.0/AbiWord/system.profile-zh-TW
|
||||
share/AbiSuite-${PKGVERSION}.0/README
|
||||
share/AbiSuite-${PKGVERSION}.0/abi-nautilus-view-file.xml
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/book.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/chip.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/fun.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gear.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gnomea.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gnomeb.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gnomec.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gnomecorner.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gnomed.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gnomedecor1.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gnomedecor2.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gnomee.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gnomeflowers.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/gnomeline.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/idea.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/lamp.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/monitor.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/music1.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/pinceau.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/simca.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/surprise.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/together.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/toolbox.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/tree.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/tux_bordelais.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/weather.png
|
||||
share/AbiSuite-${PKGVERSION}.0/clipart/write.png
|
||||
share/AbiSuite-${PKGVERSION}.0/icons/abiword_16.xpm
|
||||
share/AbiSuite-${PKGVERSION}.0/icons/abiword_48.png
|
||||
share/AbiSuite-${PKGVERSION}.0/icons/abiword_48.tif
|
||||
share/AbiSuite-${PKGVERSION}.0/icons/abiword_48.xpm
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/A4.awt
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/Business-Report.awt
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/Employee-Directory.awt
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/Fax-Coversheet.awt
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/Two-Columns.awt
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/US-Letter.awt
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-am_ET
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-ar
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-ar_EG
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-ar_SA
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-bg_BG
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-ca_ES
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-cs_CZ
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-da_DK
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-de
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-de_AT
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-de_CH
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-de_DE
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-div_MV
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-el_GR
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-en_AU
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-en_CA
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-en_GB
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-en_IE
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-en_NZ
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-en_ZA
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-es
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-es_ES
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-es_FI
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-es_IR
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-es_MX
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-fa_IR
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-fr
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-fr_BE
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-fr_CA
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-fr_CH
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-fr_FR
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-gl_ES
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-he
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-he_IL
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-hu_HU
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-it_IT
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-ja_JP
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-lt_LT
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-nb_NO
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-nl_NL
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-nn_NO
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-pl_PL
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-ps
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-pt_BR
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-pt_PT
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-ru
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-ru_RU
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-sk_SK
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-sl
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-sv
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-sv_SE
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-syr
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-tr
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-tr_TR
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-uk_UA
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-ur_PK
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-yi
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-zh_CN
|
||||
share/AbiSuite-${PKGVERSION}.0/templates/normal.awt-zh_TW
|
||||
${WITH_GNOME}share/applications/abiword.desktop
|
||||
${WITH_GNOME}share/icons/abiword_48.png
|
||||
@dirrm share/AbiSuite-${PKGVERSION}.0/templates
|
||||
@dirrm share/AbiSuite-${PKGVERSION}.0/icons
|
||||
@exec ${MKDIR} %D/share/AbiSuite-${PKGVERSION}.0/dictionary
|
||||
@dirrm share/AbiSuite-${PKGVERSION}.0/dictionary
|
||||
@dirrm share/AbiSuite-${PKGVERSION}.0/clipart
|
||||
@dirrm share/AbiSuite-${PKGVERSION}.0/AbiWord/strings
|
||||
@dirrm share/AbiSuite-${PKGVERSION}.0/AbiWord/scripts
|
||||
@dirrm share/AbiSuite-${PKGVERSION}.0/AbiWord/glade
|
||||
@dirrm share/AbiSuite-${PKGVERSION}.0/AbiWord
|
||||
@dirrm share/AbiSuite-${PKGVERSION}.0
|
||||
lib/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_MetaData.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/be-BY.strings
|
||||
share/AbiSuite-2.0/AbiWord/strings/bg-BG.strings
|
||||
share/AbiSuite-2.0/AbiWord/strings/br-FR.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/jbo.strings
|
||||
share/AbiSuite-2.0/AbiWord/strings/lt-LT.strings
|
||||
share/AbiSuite-2.0/AbiWord/strings/lv-LV.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.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/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
|
||||
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/applications/abiword.desktop
|
||||
share/icons/abiword_48.png
|
||||
@dirrm share/AbiSuite-2.0/templates
|
||||
@dirrm share/AbiSuite-2.0/icons
|
||||
@exec ${MKDIR} %D/share/AbiSuite-2.0/dictionary
|
||||
@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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2003/12/14 03:24:50 xtraeme Exp $
|
||||
$NetBSD: distinfo,v 1.2 2003/12/21 09:23:12 xtraeme Exp $
|
||||
|
||||
SHA1 (abiword-2.0.1-2.tar.gz) = d12acee87b573ffcc07ca8a630db59e854b47a14
|
||||
Size (abiword-2.0.1-2.tar.gz) = 24473291 bytes
|
||||
SHA1 (abiword-2.0.2.tar.gz) = cc4d12225941cfb866d8ca37af0b026906329978
|
||||
Size (abiword-2.0.2.tar.gz) = 25957833 bytes
|
||||
SHA1 (patch-aa) = 730e205f54516535394659c74e052bbe706e1bc2
|
||||
SHA1 (patch-ab) = a678cee31946b0102e6e62145b1d87eb3b323989
|
||||
|
|
Loading…
Reference in a new issue