Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 333309 | Differences between
and this patch

Collapse All | Expand All

(-)ocrfeeder-0.7.6.orig/configure.ac (-1 lines)
Lines 45-51 Link Here
45
src/Makefile
45
src/Makefile
46
src/ocrfeeder/Makefile
46
src/ocrfeeder/Makefile
47
src/ocrfeeder/feeder/Makefile
47
src/ocrfeeder/feeder/Makefile
48
src/ocrfeeder/odf/Makefile
49
src/ocrfeeder/studio/Makefile
48
src/ocrfeeder/studio/Makefile
50
src/ocrfeeder/util/Makefile
49
src/ocrfeeder/util/Makefile
51
src/ocrfeeder/util/constants.py
50
src/ocrfeeder/util/constants.py
(-)ocrfeeder-0.7.6.orig/src/ocrfeeder/feeder/documentGeneration.py (-4 / +4 lines)
Lines 18-28 Link Here
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
###########################################################################
19
###########################################################################
20
20
21
from ocrfeeder.odf.draw import Frame, TextBox, Image
21
from odf.draw import Frame, TextBox, Image
22
from ocrfeeder.odf.opendocument import OpenDocumentText
22
from odf.opendocument import OpenDocumentText
23
from ocrfeeder.odf.style import Style, MasterPage, GraphicProperties, ParagraphProperties, \
23
from odf.style import Style, MasterPage, GraphicProperties, ParagraphProperties, \
24
    TextProperties, PageLayout, PageLayoutProperties
24
    TextProperties, PageLayout, PageLayoutProperties
25
from ocrfeeder.odf.text import P, Page, PageSequence
25
from odf.text import P, Page, PageSequence
26
from pango import WEIGHT_BOLD, WEIGHT_NORMAL, STYLE_ITALIC, STYLE_NORMAL, \
26
from pango import WEIGHT_BOLD, WEIGHT_NORMAL, STYLE_ITALIC, STYLE_NORMAL, \
27
    STYLE_OBLIQUE
27
    STYLE_OBLIQUE
28
from ocrfeeder.util import TEXT_TYPE, IMAGE_TYPE, ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTER, \
28
from ocrfeeder.util import TEXT_TYPE, IMAGE_TYPE, ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTER, \
(-)ocrfeeder-0.7.6.orig/src/ocrfeeder/Makefile.am (-2 / +1 lines)
Lines 6-13 Link Here
6
SUBDIRS = \
6
SUBDIRS = \
7
	feeder/ \
7
	feeder/ \
8
	studio/ \
8
	studio/ \
9
	util/ \
9
	util/
10
	odf/

Return to bug 333309