diff options
Diffstat (limited to 'editors/pdfedit')
-rw-r--r-- | editors/pdfedit/Makefile | 56 | ||||
-rw-r--r-- | editors/pdfedit/distinfo | 2 | ||||
-rw-r--r-- | editors/pdfedit/files/patch-doc__Makefile | 12 | ||||
-rw-r--r-- | editors/pdfedit/files/patch-src__gui__base.cc | 24 | ||||
-rw-r--r-- | editors/pdfedit/files/patch-src__gui__pdfutil.cc | 24 | ||||
-rw-r--r-- | editors/pdfedit/files/patch-src__kernel__cpagecontents.cc | 34 | ||||
-rw-r--r-- | editors/pdfedit/files/patch-src__tools__pdf_to_text.cc | 17 | ||||
-rw-r--r-- | editors/pdfedit/pkg-descr | 10 | ||||
-rw-r--r-- | editors/pdfedit/pkg-plist | 252 |
9 files changed, 0 insertions, 431 deletions
diff --git a/editors/pdfedit/Makefile b/editors/pdfedit/Makefile deleted file mode 100644 index 9269fe3a2ecf..000000000000 --- a/editors/pdfedit/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# Created by: alepulver -# $FreeBSD$ - -PORTNAME= pdfedit -PORTVERSION= 0.4.5 -PORTREVISION= 2 -CATEGORIES= editors -MASTER_SITES= SF - -MAINTAINER= ports@FreeBSD.org -COMMENT= Free editor for manipulating PDF documents (QT3 GUI and CLI) - -BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake -LIB_DEPENDS= boost_filesystem:${PORTSDIR}/devel/boost-libs \ - t1.5:${PORTSDIR}/devel/t1lib - -DEPRECATED= Depends on QT3; unmaintained -EXPIRATION_DATE= 2013-07-01 - -LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/doc/LICENSE.GPL - -USE_BZIP2= yes -USE_QT_VER= 3 -USE_PERL5_BUILD=yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= QMAKESPEC="${LOCALBASE}/share/qt/mkspecs/freebsd-g++" -CONFIGURE_ARGS= --with-t1-library=${LOCALBASE}/lib \ - --with-t1-includes=${LOCALBASE}/include \ - --with-parallel-make=off -MAKE_ENV= ${CONFIGURE_ENV} -MAKE_JOBS_SAFE= yes - -MAN1= pdfedit.1 - -post-patch: - @${REINPLACE_CMD} -e \ - 's|-pedantic||g ; \ - s| $$(OPTIM)||g ; \ - s| $$(ARCH)||g ; \ - s| -pipe.*$$||g ; \ - s|^CFLAGS =|CFLAGS +=|g ; \ - s|^CXXFLAGS =|CXXFLAGS +=|g' ${WRKSRC}/Makefile.flags.in - @${REINPLACE_CMD} -e \ - '/QMAKE/s| make| $$MAKE|g' ${WRKSRC}/src/qsa/configure - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in Changelog README doc/AUTHORS - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/editors/pdfedit/distinfo b/editors/pdfedit/distinfo deleted file mode 100644 index 13f3a323c202..000000000000 --- a/editors/pdfedit/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (pdfedit-0.4.5.tar.bz2) = 33ad8d59f4e51d8befd2dc2c577516e16c0cd11ebd3d22fed38233a793c6a4b9 -SIZE (pdfedit-0.4.5.tar.bz2) = 3026130 diff --git a/editors/pdfedit/files/patch-doc__Makefile b/editors/pdfedit/files/patch-doc__Makefile deleted file mode 100644 index 915269137241..000000000000 --- a/editors/pdfedit/files/patch-doc__Makefile +++ /dev/null @@ -1,12 +0,0 @@ ---- doc/Makefile.orig 2008-12-03 09:16:03.000000000 +0900 -+++ doc/Makefile 2011-03-21 20:34:48.000000000 +0900 -@@ -18,9 +18,6 @@ - $(USER_MANUAL_INSTALL_TARGET) \ - $(DOXYGEN_INSTALL_TARGET) \ - $(ADVANCED_DOC_INSTALL_TARGET) -- $(MKDIR) $(INSTALL_ROOT)$(DOC_PATH)/; -- $(COPY_FILE) LICENSE.GPL ../README ../Changelog AUTHORS README-* \ -- README.cygwin $(INSTALL_ROOT)$(DOC_PATH) - - # TODO maybe we should be less brutal here and delete only our files However we - # have no list of installed doc files. This list is probably too much effort diff --git a/editors/pdfedit/files/patch-src__gui__base.cc b/editors/pdfedit/files/patch-src__gui__base.cc deleted file mode 100644 index 491b562bf508..000000000000 --- a/editors/pdfedit/files/patch-src__gui__base.cc +++ /dev/null @@ -1,24 +0,0 @@ ---- src/gui/base.cc.orig 2010-02-22 10:17:40.000000000 +0900 -+++ src/gui/base.cc 2011-03-21 20:36:57.000000000 +0900 -@@ -688,7 +688,20 @@ - if (openMode=="readonly") mode=CPdf::ReadOnly; - if (openMode=="readwrite") mode=CPdf::ReadWrite; - //Basic mode without asking a password (we do not know how) -- return CPdf::getInstance(util::convertFromUnicode(filename,util::NAME).c_str(),mode); -+ boost::shared_ptr<pdfobjects::CPdf> pdf; -+ do { -+ try { -+ pdf = CPdf::getInstance(util::convertFromUnicode(filename,util::NAME).c_str(),mode); -+ }catch(PdfOpenException &e) { -+ // try to fallback to readonly mode -+ if (mode >= CPdf::ReadWrite) { -+ mode = CPdf::ReadOnly; -+ continue; -+ } -+ throw e; -+ } -+ }while(!pdf); -+ return pdf; - } - - /** \copydoc loadFromFile */ diff --git a/editors/pdfedit/files/patch-src__gui__pdfutil.cc b/editors/pdfedit/files/patch-src__gui__pdfutil.cc deleted file mode 100644 index 21830bf30e08..000000000000 --- a/editors/pdfedit/files/patch-src__gui__pdfutil.cc +++ /dev/null @@ -1,24 +0,0 @@ ---- src/gui/pdfutil.cc.orig 2009-04-07 00:24:47.000000000 +0900 -+++ src/gui/pdfutil.cc 2011-03-21 20:36:57.000000000 +0900 -@@ -451,7 +451,20 @@ - @param askPassword If true, password will be asked for if necessary - */ - boost::shared_ptr<CPdf> getPdfInstance(QWidget *parent, const QString &filename, CPdf::OpenMode mode, bool askPassword) { -- boost::shared_ptr<CPdf> pdf=CPdf::getInstance(util::convertFromUnicode(filename,util::NAME).c_str(), mode); -+ boost::shared_ptr<pdfobjects::CPdf> pdf; -+ do { -+ try { -+ pdf = CPdf::getInstance(util::convertFromUnicode(filename,util::NAME).c_str(),mode); -+ }catch(PdfOpenException &e) { -+ // try to fallback to readonly mode -+ if (mode >= CPdf::ReadWrite) { -+ mode = CPdf::ReadOnly; -+ continue; -+ } -+ throw e; -+ } -+ }while(!pdf); -+ - if (askPassword && pdf->needsCredentials()) { - for(;;) { - //Ask for password until we either get the right one or user gets bored with retrying diff --git a/editors/pdfedit/files/patch-src__kernel__cpagecontents.cc b/editors/pdfedit/files/patch-src__kernel__cpagecontents.cc deleted file mode 100644 index c035213c2f31..000000000000 --- a/editors/pdfedit/files/patch-src__kernel__cpagecontents.cc +++ /dev/null @@ -1,34 +0,0 @@ ---- src/kernel/cpagecontents.cc.orig 2010-04-30 21:44:30.000000000 +0900 -+++ src/kernel/cpagecontents.cc 2011-03-21 20:39:56.000000000 +0900 -@@ -379,6 +379,12 @@ - - // Get the text - libs::Rectangle rec = (rc)? *rc : _page->display()->getPageRect(); -+ // if we use rotation 90,270 then we must change the rectangle from which we want the text -+ // accordingly (TODO - verify for all rotations) -+ int rot = _page->getRotation (); -+ if (90 == rot || 270 == rot) -+ std::swap (rec.xright, rec.yright); -+ - scoped_ptr<GString> gtxt (textDev->getText(rec.xleft, rec.yleft, rec.xright, rec.yright)); - text = gtxt->getCString(); - } -@@ -540,10 +546,14 @@ - - - CDict image_dict; -- image_dict.addProperty ("W", CInt (image_size.x)); -- image_dict.addProperty ("H", CInt (image_size.y)); -- image_dict.addProperty ("CS", CName ("RGB")); -- image_dict.addProperty ("BPC", CInt (8)); -+ CInt x (image_size.x); -+ image_dict.addProperty ("W", x); -+ CInt y (image_size.y); -+ image_dict.addProperty ("H", y); -+ CName n ("RGB"); -+ image_dict.addProperty ("CS", n); -+ CInt i (8); -+ image_dict.addProperty ("BPC", i); - CInlineImage img (image_dict, what); - shared_ptr<CInlineImage> inline_image (new CInlineImage (image_dict, what)); - shared_ptr<InlineImageCompositePdfOperator> BI(new InlineImageCompositePdfOperator (inline_image)); diff --git a/editors/pdfedit/files/patch-src__tools__pdf_to_text.cc b/editors/pdfedit/files/patch-src__tools__pdf_to_text.cc deleted file mode 100644 index 2336682491b1..000000000000 --- a/editors/pdfedit/files/patch-src__tools__pdf_to_text.cc +++ /dev/null @@ -1,17 +0,0 @@ ---- src/tools/pdf_to_text.cc.orig 2010-04-23 15:58:36.000000000 +0900 -+++ src/tools/pdf_to_text.cc 2011-03-21 20:37:12.000000000 +0900 -@@ -47,6 +47,14 @@ - struct _textify { - string operator () (shared_ptr<CPage> page) - { -+ // Update display params to use media box not default page rect (DEFAULT_PAGE_RX, DEFAULT_PAGE_RY) -+ // TODO upsidedown? get/set -+ DisplayParams dp; -+ dp.useMediaBox = gTrue; -+ dp.crop = gFalse; -+ dp.rotate = page->getRotation (); -+ page->setDisplayParams (dp); -+ - string text; - static const std::string encoding="UTF-8"; - page->getText (text, &encoding); diff --git a/editors/pdfedit/pkg-descr b/editors/pdfedit/pkg-descr deleted file mode 100644 index a64a6ad63718..000000000000 --- a/editors/pdfedit/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Free editor for manipulating PDF documents. GUI version + commandline -interface. - -Scripting is used to a great extent in editor and almost anything can be -scripted, it is possible to create own scripts or plugins. - -Target platform are operating systems of Unix type (Linux, BSD, ...), we are -using C++, XPDF, QT3 and QSA. - -WWW: http://pdfedit.cz/ diff --git a/editors/pdfedit/pkg-plist b/editors/pdfedit/pkg-plist deleted file mode 100644 index 75affd8373a7..000000000000 --- a/editors/pdfedit/pkg-plist +++ /dev/null @@ -1,252 +0,0 @@ -bin/pdfedit -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/Changelog -%%PORTDOCS%%%%DOCSDIR%%/README -%%DATADIR%%/callback.qs -%%DATADIR%%/delinearize.qs -%%DATADIR%%/dialog_lib.qs -%%DATADIR%%/dialogs.qs -%%DATADIR%%/flatten.qs -%%DATADIR%%/help/cs/index.html -%%DATADIR%%/help/cs/keyboard.html -%%DATADIR%%/help/images/filedialog.png -%%DATADIR%%/help/images/inputitem.png -%%DATADIR%%/help/images/inputtext.png -%%DATADIR%%/help/images/messageb1.png -%%DATADIR%%/help/images/pdfedit.png -%%DATADIR%%/help/images/qchkbox-w.png -%%DATADIR%%/help/images/qcombo1-w.png -%%DATADIR%%/help/images/qgrpbox-w.png -%%DATADIR%%/help/images/qlined-w.png -%%DATADIR%%/help/images/qradiobt-w.png -%%DATADIR%%/help/images/qsdateed.png -%%DATADIR%%/help/images/qspinbox-w.png -%%DATADIR%%/help/images/qstimeed.png -%%DATADIR%%/help/index.html -%%DATADIR%%/help/keyboard.html -%%DATADIR%%/help/pdfedit.html -%%DATADIR%%/help/qsa-inputdialog.html -%%DATADIR%%/help/qsa-util.html -%%DATADIR%%/help/scripting.html -%%DATADIR%%/icon/Tango/about.png -%%DATADIR%%/icon/Tango/add_text.png -%%DATADIR%%/icon/Tango/close.png -%%DATADIR%%/icon/Tango/close_widget.png -%%DATADIR%%/icon/Tango/delin.png -%%DATADIR%%/icon/Tango/draw_arrow.png -%%DATADIR%%/icon/Tango/draw_line.png -%%DATADIR%%/icon/Tango/draw_rect.png -%%DATADIR%%/icon/Tango/expand.png -%%DATADIR%%/icon/Tango/first.png -%%DATADIR%%/icon/Tango/help.png -%%DATADIR%%/icon/Tango/hide_cmdline.png -%%DATADIR%%/icon/Tango/hide_propedit.png -%%DATADIR%%/icon/Tango/hide_statusbar.png -%%DATADIR%%/icon/Tango/hide_tree.png -%%DATADIR%%/icon/Tango/insert_pages.png -%%DATADIR%%/icon/Tango/item_add.png -%%DATADIR%%/icon/Tango/item_delete.png -%%DATADIR%%/icon/Tango/item_edit.png -%%DATADIR%%/icon/Tango/item_type.png -%%DATADIR%%/icon/Tango/last.png -%%DATADIR%%/icon/Tango/load.png -%%DATADIR%%/icon/Tango/new.png -%%DATADIR%%/icon/Tango/new_window.png -%%DATADIR%%/icon/Tango/next.png -%%DATADIR%%/icon/Tango/operator_dashpattern.png -%%DATADIR%%/icon/Tango/operator_editfont.png -%%DATADIR%%/icon/Tango/operator_linewidth.png -%%DATADIR%%/icon/Tango/operator_setcolor.png -%%DATADIR%%/icon/Tango/operator_setrelpos.png -%%DATADIR%%/icon/Tango/operator_setrelposop.png -%%DATADIR%%/icon/Tango/options.png -%%DATADIR%%/icon/Tango/page_add_font.png -%%DATADIR%%/icon/Tango/page_delete.png -%%DATADIR%%/icon/Tango/page_edit_metrics.png -%%DATADIR%%/icon/Tango/page_move_down.png -%%DATADIR%%/icon/Tango/page_move_up.png -%%DATADIR%%/icon/Tango/page_rotate_-90.png -%%DATADIR%%/icon/Tango/page_rotate_90.png -%%DATADIR%%/icon/Tango/page_settm.png -%%DATADIR%%/icon/Tango/page_text.png -%%DATADIR%%/icon/Tango/pdftoxml.png -%%DATADIR%%/icon/Tango/prev.png -%%DATADIR%%/icon/Tango/reload.png -%%DATADIR%%/icon/Tango/save.png -%%DATADIR%%/icon/Tango/save_page_as_image.png -%%DATADIR%%/icon/Tango/searchText.png -%%DATADIR%%/icon/Tango/selectmode_all.png -%%DATADIR%%/icon/Tango/selectmode_all_gfx.png -%%DATADIR%%/icon/Tango/selectmode_allobjects.png -%%DATADIR%%/icon/Tango/selectmode_hilite.png -%%DATADIR%%/icon/Tango/selectmode_strike.png -%%DATADIR%%/icon/Tango/selectmode_text.png -%%DATADIR%%/icon/Tango/stream_mode_all.png -%%DATADIR%%/icon/Tango/stream_mode_font.png -%%DATADIR%%/icon/Tango/stream_mode_gfx.png -%%DATADIR%%/icon/Tango/stream_mode_text.png -%%DATADIR%%/icon/Tango/string_representation.png -%%DATADIR%%/icon/Tango/tree_childs.png -%%DATADIR%%/icon/Tango/zoom_in.png -%%DATADIR%%/icon/Tango/zoom_out.png -%%DATADIR%%/icon/about.png -%%DATADIR%%/icon/add_text.png -%%DATADIR%%/icon/close.png -%%DATADIR%%/icon/close_widget.png -%%DATADIR%%/icon/delin.png -%%DATADIR%%/icon/draw_arrow.png -%%DATADIR%%/icon/draw_line.png -%%DATADIR%%/icon/draw_rect.png -%%DATADIR%%/icon/expand.png -%%DATADIR%%/icon/first.png -%%DATADIR%%/icon/flatten.png -%%DATADIR%%/icon/help.png -%%DATADIR%%/icon/hicolor/about.png -%%DATADIR%%/icon/hicolor/add_text.png -%%DATADIR%%/icon/hicolor/close.png -%%DATADIR%%/icon/hicolor/close_widget.png -%%DATADIR%%/icon/hicolor/delin.png -%%DATADIR%%/icon/hicolor/draw_arrow.png -%%DATADIR%%/icon/hicolor/draw_line.png -%%DATADIR%%/icon/hicolor/draw_rect.png -%%DATADIR%%/icon/hicolor/expand.png -%%DATADIR%%/icon/hicolor/first.png -%%DATADIR%%/icon/hicolor/help.png -%%DATADIR%%/icon/hicolor/hide_cmdline.png -%%DATADIR%%/icon/hicolor/hide_propedit.png -%%DATADIR%%/icon/hicolor/hide_statusbar.png -%%DATADIR%%/icon/hicolor/hide_tree.png -%%DATADIR%%/icon/hicolor/insert_pages.png -%%DATADIR%%/icon/hicolor/item_add.png -%%DATADIR%%/icon/hicolor/item_delete.png -%%DATADIR%%/icon/hicolor/item_edit.png -%%DATADIR%%/icon/hicolor/item_type.png -%%DATADIR%%/icon/hicolor/last.png -%%DATADIR%%/icon/hicolor/load.png -%%DATADIR%%/icon/hicolor/new.png -%%DATADIR%%/icon/hicolor/new_window.png -%%DATADIR%%/icon/hicolor/next.png -%%DATADIR%%/icon/hicolor/operator_dashpattern.png -%%DATADIR%%/icon/hicolor/operator_editfont.png -%%DATADIR%%/icon/hicolor/operator_linewidth.png -%%DATADIR%%/icon/hicolor/operator_setcolor.png -%%DATADIR%%/icon/hicolor/operator_setrelpos.png -%%DATADIR%%/icon/hicolor/operator_setrelposop.png -%%DATADIR%%/icon/hicolor/options.png -%%DATADIR%%/icon/hicolor/page_add_font.png -%%DATADIR%%/icon/hicolor/page_delete.png -%%DATADIR%%/icon/hicolor/page_edit_metrics.png -%%DATADIR%%/icon/hicolor/page_move_down.png -%%DATADIR%%/icon/hicolor/page_move_up.png -%%DATADIR%%/icon/hicolor/page_rotate_-90.png -%%DATADIR%%/icon/hicolor/page_rotate_90.png -%%DATADIR%%/icon/hicolor/page_settm.png -%%DATADIR%%/icon/hicolor/page_text.png -%%DATADIR%%/icon/hicolor/pdftoxml.png -%%DATADIR%%/icon/hicolor/prev.png -%%DATADIR%%/icon/hicolor/reload.png -%%DATADIR%%/icon/hicolor/save.png -%%DATADIR%%/icon/hicolor/save_page_as_image.png -%%DATADIR%%/icon/hicolor/searchText.png -%%DATADIR%%/icon/hicolor/selectmode_all.png -%%DATADIR%%/icon/hicolor/selectmode_all_gfx.png -%%DATADIR%%/icon/hicolor/selectmode_allobjects.png -%%DATADIR%%/icon/hicolor/selectmode_hilite.png -%%DATADIR%%/icon/hicolor/selectmode_strike.png -%%DATADIR%%/icon/hicolor/selectmode_text.png -%%DATADIR%%/icon/hicolor/stream_mode_all.png -%%DATADIR%%/icon/hicolor/stream_mode_font.png -%%DATADIR%%/icon/hicolor/stream_mode_gfx.png -%%DATADIR%%/icon/hicolor/stream_mode_text.png -%%DATADIR%%/icon/hicolor/string_representation.png -%%DATADIR%%/icon/hicolor/tree_childs.png -%%DATADIR%%/icon/hicolor/zoom_in.png -%%DATADIR%%/icon/hicolor/zoom_out.png -%%DATADIR%%/icon/hide_cmdline.png -%%DATADIR%%/icon/hide_propedit.png -%%DATADIR%%/icon/hide_statusbar.png -%%DATADIR%%/icon/hide_tree.png -%%DATADIR%%/icon/insert_pages.png -%%DATADIR%%/icon/item_add.png -%%DATADIR%%/icon/item_delete.png -%%DATADIR%%/icon/item_edit.png -%%DATADIR%%/icon/item_type.png -%%DATADIR%%/icon/last.png -%%DATADIR%%/icon/load.png -%%DATADIR%%/icon/new.png -%%DATADIR%%/icon/new_window.png -%%DATADIR%%/icon/next.png -%%DATADIR%%/icon/operator_dashpattern.png -%%DATADIR%%/icon/operator_editfont.png -%%DATADIR%%/icon/operator_linewidth.png -%%DATADIR%%/icon/operator_setcolor.png -%%DATADIR%%/icon/operator_setrelpos.png -%%DATADIR%%/icon/operator_setrelposop.png -%%DATADIR%%/icon/options.png -%%DATADIR%%/icon/page_add_font.png -%%DATADIR%%/icon/page_delete.png -%%DATADIR%%/icon/page_edit_metrics.png -%%DATADIR%%/icon/page_move_down.png -%%DATADIR%%/icon/page_move_up.png -%%DATADIR%%/icon/page_rotate_-90.png -%%DATADIR%%/icon/page_rotate_90.png -%%DATADIR%%/icon/page_settm.png -%%DATADIR%%/icon/page_text.png -%%DATADIR%%/icon/pdfedit_bg.png -%%DATADIR%%/icon/pdfedit_booklet.svg -%%DATADIR%%/icon/pdfedit_icon.svg -%%DATADIR%%/icon/pdfedit_icon_16.png -%%DATADIR%%/icon/pdfedit_icon_32.png -%%DATADIR%%/icon/pdfedit_icon_48.png -%%DATADIR%%/icon/pdfedit_icon_64.png -%%DATADIR%%/icon/pdfedit_logo.png -%%DATADIR%%/icon/pdfedit_logo.svg -%%DATADIR%%/icon/prev.png -%%DATADIR%%/icon/reload.png -%%DATADIR%%/icon/save.png -%%DATADIR%%/icon/save_page_as_image.png -%%DATADIR%%/icon/searchText.png -%%DATADIR%%/icon/selectmode_all.png -%%DATADIR%%/icon/selectmode_all_gfx.png -%%DATADIR%%/icon/selectmode_allobjects.png -%%DATADIR%%/icon/selectmode_hilite.png -%%DATADIR%%/icon/selectmode_strike.png -%%DATADIR%%/icon/selectmode_text.png -%%DATADIR%%/icon/stream_mode_all.png -%%DATADIR%%/icon/stream_mode_font.png -%%DATADIR%%/icon/stream_mode_gfx.png -%%DATADIR%%/icon/stream_mode_text.png -%%DATADIR%%/icon/string_representation.png -%%DATADIR%%/icon/tree_childs.png -%%DATADIR%%/icon/zoom_in.png -%%DATADIR%%/icon/zoom_out.png -%%DATADIR%%/init.qs -%%DATADIR%%/init_console.qs -%%DATADIR%%/lang/pdfedit_cs.qm -%%DATADIR%%/lang/pdfedit_de.qm -%%DATADIR%%/lang/pdfedit_es.qm -%%DATADIR%%/lang/pdfedit_fr.qm -%%DATADIR%%/lang/pdfedit_ru.qm -%%DATADIR%%/lang/pdfedit_sk.qm -%%DATADIR%%/lang/pdfedit_zh_TW.qm -%%DATADIR%%/menu.qs -%%DATADIR%%/mode.conf -%%DATADIR%%/operator.hint -%%DATADIR%%/page.qs -%%DATADIR%%/pdfeditrc -%%DATADIR%%/pdfoperator.qs -%%DATADIR%%/scripts/delinearize.qs -%%DATADIR%%/scripts/flatten.qs -%%DATADIR%%/scripts/pdftoxml.qs -%%DATADIR%%/scripts/update.qs -%%DATADIR%%/test.qs -@dirrm %%DATADIR%%/scripts -@dirrm %%DATADIR%%/lang -@dirrm %%DATADIR%%/icon/hicolor -@dirrm %%DATADIR%%/icon/Tango -@dirrm %%DATADIR%%/icon -@dirrm %%DATADIR%%/help/images -@dirrm %%DATADIR%%/help/cs -@dirrm %%DATADIR%%/help -@dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% |