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

Collapse All | Expand All

(-)/tmp/pdfbox.orig/build.xml (-1 / +3 lines)
Lines 223-229 Link Here
223
    <target name="get.adobefiles"
223
    <target name="get.adobefiles"
224
            unless="adobefiles.found" depends="find.adobefiles"
224
            unless="adobefiles.found" depends="find.adobefiles"
225
            description="Download and unpack afm and cmap files from Adobe">
225
            description="Download and unpack afm and cmap files from Adobe">
226
        <antcall target="downloadfile">
226
<!-- 
227
            <antcall target="downloadfile">
227
            <param name="sourcefile" value="${adobefiles.url}"/>
228
            <param name="sourcefile" value="${adobefiles.url}"/>
228
            <param name="destfile" value="${adobefiles.jar}"/>
229
            <param name="destfile" value="${adobefiles.jar}"/>
229
        </antcall>
230
        </antcall>
Lines 239-244 Link Here
239
            </patternset>
240
            </patternset>
240
            <mapper type="flatten"/>
241
            <mapper type="flatten"/>
241
        </unjar>
242
        </unjar>
243
 -->
242
    </target>
244
    </target>
243
245
244
    <target name="find.testfiles">
246
    <target name="find.testfiles">
(-)/tmp/pdfbox.orig/src/main/java/org/apache/pdfbox/encoding/Encoding.java (-1 / +1 lines)
Lines 70-76 Link Here
70
    static
70
    static
71
    {
71
    {
72
        //Loads the official Adobe Glyph List
72
        //Loads the official Adobe Glyph List
73
        loadGlyphList("org/apache/pdfbox/resources/glyphlist.txt");
73
        loadGlyphList("com/adobe/pdf/pcfi/glyphlist.txt");
74
        //Loads some additional glyph mappings
74
        //Loads some additional glyph mappings
75
        loadGlyphList("org/apache/pdfbox/resources/additional_glyphlist.txt");
75
        loadGlyphList("org/apache/pdfbox/resources/additional_glyphlist.txt");
76
76
(-)/tmp/pdfbox.orig/src/main/java/org/apache/pdfbox/pdmodel/font/PDFont.java (-1 / +1 lines)
Lines 129-135 Link Here
129
    }
129
    }
130
130
131
    protected final static String resourceRootCMAP = "org/apache/pdfbox/resources/cmap/";
131
    protected final static String resourceRootCMAP = "org/apache/pdfbox/resources/cmap/";
132
    private final static String resourceRootAFM = "org/apache/pdfbox/resources/afm/";
132
    private final static String resourceRootAFM = "com/adobe/pdf/pcfi/afm/";
133
133
134
    private static void addAdobeFontMetric(
134
    private static void addAdobeFontMetric(
135
            Map<String, FontMetric> metrics, String name )
135
            Map<String, FontMetric> metrics, String name )

Return to bug 430054