Here is an update to league-fonts. I've downloaded one by one each font
from the HOMEPAGE and I added the real filename to the list. They now
use the github's weird filenames. Some fonts are new, others are updated
and others are the same with a different filename.

The port now installs the doc outside of fontdir and also adds the web
version of the fonts. Some users (like me) like to have the web version
available offline.

I don't like the FONT_LIST_TRIMMED trick but it's not possible use
variables inside of a for loop (look man make). If someone has a better
idea, I'm hearing.

Please review and commit if everything is OK.

Index: Makefile
===================================================================
RCS file: /cvs/ports/fonts/league-fonts/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- Makefile    11 Mar 2013 11:06:05 -0000      1.3
+++ Makefile    30 Aug 2013 23:09:13 -0000
@@ -2,21 +2,53 @@
 
 COMMENT =              fonts from the League of Moveable Type
 
-PKGNAME =              league-fonts-0.1
-REVISION =             1
+V =                    0.2
+PKGNAME =              league-fonts-${V}
 PKG_ARCH =             *
 EXTRACT_SUFX =         .zip
-.for font in \
-                       blackout chunk flaminia-type-system 
goudy-bookletter-1911 junction \
-                       league-gothic league-script-1 linden-hill orbitron \
-                       prociono raleway sniglet sorts-mill-goudy
+FONT_LIST =            theleagueof-blackout-49991ac \
+                       theleagueof-chunk-cd2d223 \
+                       theleagueof-fanwood-cbaaed9 \
+                       theleagueof-goudy-bookletter-1911-85ff5b8 \
+                       theleagueof-junction-18de841 \
+                       theleagueof-knewave-f335d5f \
+                       theleagueof-league-gothic-64c3ede \
+                       theleagueof-league-script-number-one-225add0 \
+                       theleagueof-linden-hill-a3f7ae6 \
+                       theleagueof-orbitron-13e6a52 \
+                       theleagueof-prociono-f9d9680 \
+                       theleagueof-raleway-40afd9d \
+                       theleagueof-sniglet-5c6b086 \
+                       theleagueof-sorts-mill-goudy-0607289 \
+                       ostrich-sans-master
+# Our make has a bug in the for loops, so it's not possible to use a for loop
+# to trim the hash of the name. Create another list is the easiest workaround.
+# "ostrid-sans" uses a different pattern for the filename,
+# we'll work with it manually outside of the list.
+FONT_LIST_TRIMMED =    theleagueof-blackout \
+                       theleagueof-chunk \
+                       theleagueof-fanwood \
+                       theleagueof-goudy-bookletter-1911 \
+                       theleagueof-junction \
+                       theleagueof-knewave \
+                       theleagueof-league-gothic \
+                       theleagueof-league-script-number-one \
+                       theleagueof-linden-hill \
+                       theleagueof-orbitron \
+                       theleagueof-prociono \
+                       theleagueof-raleway \
+                       theleagueof-sniglet \
+                       theleagueof-sorts-mill-goudy
+.for font in ${FONT_LIST}
 DISTFILES +=           ${font}${EXTRACT_SUFX}
 .endfor
 
 CATEGORIES =           fonts x11
 
 HOMEPAGE =             http://www.theleagueofmoveabletype.com/
-MASTER_SITES =         http://s3.amazonaws.com/theleague-production/fonts/
+MASTER_SITES =         https://theleagueof.s3.amazonaws.com/downloads/ \
+                       
http://download.tuxfamily.org/jod/fonts/league-fonts/${V}/ \
+                       
ftp://download.tuxfamily.org/jod/fonts/league-fonts/${V}/
 
 MAINTAINER=            Ian Darwin <i...@openbsd.org>
 
@@ -32,15 +64,31 @@ DIST_SUBDIR =               leaguefonts
 NO_BUILD =             Yes
 NO_TEST =              Yes
 
-INST_DIR=       ${PREFIX}/lib/X11/fonts/league-fonts/
+FONTS_DIR =            ${PREFIX}/lib/X11/fonts/league-fonts/
+DOCS_DIR =             ${PREFIX}/share/doc/league-fonts/
+WEBFONTS_DIR =         ${PREFIX}/share/league-fonts/
 
 post-extract:
-       rm -r ${WRKDIR}/__MACOSX/
-       mv ${WRKDIR}/Orbitron/readme.txt ${WRKDIR}/Orbitron/Orbitron_readme.txt
-       mv ${WRKDIR}/Blackout/please_read_me.txt 
${WRKDIR}/Blackout_please_read_me.txt
+       rm -rf ${WRKDIR}/*/__MACOSX
+       rm -rf ${WRKDIR}/*/source
 
 do-install:
-       ${INSTALL_DATA_DIR} ${INST_DIR}
-       ${INSTALL_DATA} ${WRKDIR}/*.??f ${WRKDIR}/*/*.??f ${WRKDIR}/*/*.txt 
${INST_DIR}
+       ${INSTALL_DATA_DIR} ${FONTS_DIR}
+       ${INSTALL_DATA} ${WRKDIR}/*/*.??f ${FONTS_DIR}
+.for font in ${FONT_LIST_TRIMMED}
+       ${INSTALL_DATA_DIR} ${DOCS_DIR}/${font}/images
+       ${INSTALL_DATA} ${WRKDIR}/${font}-*/*.markdown ${DOCS_DIR}/${font}
+       ${INSTALL_DATA} ${WRKDIR}/${font}-*/images/* ${DOCS_DIR}/${font}/images
+       ${INSTALL_DATA_DIR} ${WEBFONTS_DIR}/${font}
+       ${INSTALL_DATA} ${WRKDIR}/${font}-*/webfonts/* ${WEBFONTS_DIR}/${font}
+.endfor
+       ${INSTALL_DATA_DIR} ${DOCS_DIR}/theleagueof-ostrich-sans/images
+       ${INSTALL_DATA} ${WRKDIR}/ostrich-sans/*.markdown \
+               ${DOCS_DIR}/theleagueof-ostrich-sans
+       ${INSTALL_DATA} ${WRKDIR}/ostrich-sans/images/* \
+               ${DOCS_DIR}/theleagueof-ostrich-sans/images
+       ${INSTALL_DATA_DIR} ${WEBFONTS_DIR}/theleagueof-ostrich-sans
+       ${INSTALL_DATA} ${WRKDIR}/ostrich-sans/webfonts/* \
+               ${WEBFONTS_DIR}/theleagueof-ostrich-sans
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/fonts/league-fonts/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo    19 Jul 2011 09:16:07 -0000      1.1.1.1
+++ distinfo    30 Aug 2013 23:09:13 -0000
@@ -1,65 +1,30 @@
-MD5 (leaguefonts/blackout.zip) = u6b7ONZ9vf1CEgsfSmH/Jw==
-MD5 (leaguefonts/chunk.zip) = FSXne4xcVMIOvQmJ51PQFw==
-MD5 (leaguefonts/flaminia-type-system.zip) = iAIxZCC3baygxCbxEnV3vA==
-MD5 (leaguefonts/goudy-bookletter-1911.zip) = f+6v+6GWYr00z+yKWClVgA==
-MD5 (leaguefonts/junction.zip) = /iah+F1/NneB4Ph2RVLf9w==
-MD5 (leaguefonts/league-gothic.zip) = crIoaV8a2KwOOCSh5+2zEw==
-MD5 (leaguefonts/league-script-1.zip) = eRsuvl9GhrKjH/rQZ/5A/w==
-MD5 (leaguefonts/linden-hill.zip) = 6G5f0eiAwfJ5vPYcDekgnQ==
-MD5 (leaguefonts/orbitron.zip) = ZPSWb8APU5a+p1fzkebN9A==
-MD5 (leaguefonts/prociono.zip) = 5nGKHtuPw7YWbAwguYRMNg==
-MD5 (leaguefonts/raleway.zip) = E47To2d0rz46soWYjek/YQ==
-MD5 (leaguefonts/sniglet.zip) = V2jDK2aWpELQVENAeAyG2Q==
-MD5 (leaguefonts/sorts-mill-goudy.zip) = 5u+aMgXn/YdEW5tAGpFWjg==
-RMD160 (leaguefonts/blackout.zip) = tH4MsnfWo0RujnGn8g/zwLjyh4g=
-RMD160 (leaguefonts/chunk.zip) = wLu1B3Tzd9HW20eE9TgfMtlvC4E=
-RMD160 (leaguefonts/flaminia-type-system.zip) = B8rPLhaXG0b16hxBezgidBjCk+U=
-RMD160 (leaguefonts/goudy-bookletter-1911.zip) = TUsSK+0wplWKtPpw9CD82YxNC4k=
-RMD160 (leaguefonts/junction.zip) = MOBR420+9oehw2PsPlyij0qipCk=
-RMD160 (leaguefonts/league-gothic.zip) = J03WNpq+UOu96WJ5aK6NK9Niadw=
-RMD160 (leaguefonts/league-script-1.zip) = 0DoaSsssNTPN50Us5dAm9ARmvlU=
-RMD160 (leaguefonts/linden-hill.zip) = EVkQ9CqOa4Fp+ySYng3j9ml9akM=
-RMD160 (leaguefonts/orbitron.zip) = eHCymUxPUeELYCzNXVv1dzy5/BY=
-RMD160 (leaguefonts/prociono.zip) = MaS2igGHvsHmLsA8zal8bg4HjHY=
-RMD160 (leaguefonts/raleway.zip) = cSuG+U7HuhLbicaSJPfJBLobDCs=
-RMD160 (leaguefonts/sniglet.zip) = eoljSGBsO9I151VH4WRZL8gIHzU=
-RMD160 (leaguefonts/sorts-mill-goudy.zip) = /xn6QrEEXpMU44o/hefoUSFXHj0=
-SHA1 (leaguefonts/blackout.zip) = GC5GOa2i4UOosLNd2P/RcXE1V/8=
-SHA1 (leaguefonts/chunk.zip) = N209BRk/K27+Rz9vv9+XyRsVRdk=
-SHA1 (leaguefonts/flaminia-type-system.zip) = M8nikscx1MxsFJAVCsmxk3ti8M8=
-SHA1 (leaguefonts/goudy-bookletter-1911.zip) = S/yulTTc94O3p4CNEGVBpr6beyY=
-SHA1 (leaguefonts/junction.zip) = t+itxZSjx2pp63CtwCAmh13jgxg=
-SHA1 (leaguefonts/league-gothic.zip) = XDbj6dbnpuRf0FypQ1vBJJLh6Qg=
-SHA1 (leaguefonts/league-script-1.zip) = pUg9BmcRX8UCoc4cerDsxrEoHwU=
-SHA1 (leaguefonts/linden-hill.zip) = /DazR7u2LRMy0UuQTPIlr8bva5M=
-SHA1 (leaguefonts/orbitron.zip) = VhG9aaHlLxKpuY2GgywGhTULH8c=
-SHA1 (leaguefonts/prociono.zip) = uONkiiI8mYCe6IGGku7KC2wMbSo=
-SHA1 (leaguefonts/raleway.zip) = gd5R0tgSRr3+hqBCZZECqz5pVDU=
-SHA1 (leaguefonts/sniglet.zip) = YPHFxB4JpK46td59n6ikRhMF/BQ=
-SHA1 (leaguefonts/sorts-mill-goudy.zip) = 5RpZOcpOmiRwyWXnCwWwoM5DwKM=
-SHA256 (leaguefonts/blackout.zip) = 
bZBnzMeVCny70yArvcXbCiEmAIt9Z4fedq/SY4sx6MA=
-SHA256 (leaguefonts/chunk.zip) = FcqHu5EUqoW69rrjpJ8L0tqDTCI28JfsQMw1vWMJCaY=
-SHA256 (leaguefonts/flaminia-type-system.zip) = 
ThOE40UoQMM3MS9G5Br/rH05rcRht1HliEA9gq0PXqo=
-SHA256 (leaguefonts/goudy-bookletter-1911.zip) = 
Ix+PqwZiq8f3t0aF74g6WDVkolYYnb6M2VcwTZ7UTCw=
-SHA256 (leaguefonts/junction.zip) = 
yrjz9UbEnyqumFXCUuiYyxlRpQpWOAgMxxPYmHUgs2Y=
-SHA256 (leaguefonts/league-gothic.zip) = 
5ietxUcsK1/r5eyCpggF8ZOMTuEOjZD7XXRJsI3Xshg=
-SHA256 (leaguefonts/league-script-1.zip) = 
Sn+0GasaurbVBeH5mIsox7QvwxTUu3ourB4sHoqeC0s=
-SHA256 (leaguefonts/linden-hill.zip) = 
c5MEGmsck//N4jPMGgG7mIvbe/kRKRO2YsML3Rks4C8=
-SHA256 (leaguefonts/orbitron.zip) = 
inLD6pLzUg7TrqFZ71fV8y2V2UM3EfCGMeoA9YIYvvk=
-SHA256 (leaguefonts/prociono.zip) = 
nZ/6kr+SCWQthH//gz4vCJ6lEI8EzHvbLSPDv4Rw9/g=
-SHA256 (leaguefonts/raleway.zip) = OjZOvsOarUVZ+8xCX63wWPiQEz4Wq8tVxiaEihZ2CX0=
-SHA256 (leaguefonts/sniglet.zip) = vPWGAMwI/yEnD1UETi1OLXSnOklD+WN1ut+cSxVTB00=
-SHA256 (leaguefonts/sorts-mill-goudy.zip) = 
W1OrjKyeqf6f1aLikATq6mkSsQlbLAFi9rtHaBg7e3U=
-SIZE (leaguefonts/blackout.zip) = 152565
-SIZE (leaguefonts/chunk.zip) = 26725
-SIZE (leaguefonts/flaminia-type-system.zip) = 169508
-SIZE (leaguefonts/goudy-bookletter-1911.zip) = 29165
-SIZE (leaguefonts/junction.zip) = 68605
-SIZE (leaguefonts/league-gothic.zip) = 117063
-SIZE (leaguefonts/league-script-1.zip) = 126600
-SIZE (leaguefonts/linden-hill.zip) = 101758
-SIZE (leaguefonts/orbitron.zip) = 256864
-SIZE (leaguefonts/prociono.zip) = 56365
-SIZE (leaguefonts/raleway.zip) = 93456
-SIZE (leaguefonts/sniglet.zip) = 91920
-SIZE (leaguefonts/sorts-mill-goudy.zip) = 611495
+SHA256 (leaguefonts/ostrich-sans-master.zip) = 
ksWIL46ALyEa2grJvATfZtSq/hNskbzDGOQe9de16Yw=
+SHA256 (leaguefonts/theleagueof-blackout-49991ac.zip) = 
d+j61ZMbm6DVeLCmQwNtl5HaEqOU1CLVfo74LS2M7eQ=
+SHA256 (leaguefonts/theleagueof-chunk-cd2d223.zip) = 
Mow0fHk2z8r2jRF2i4uiRm1T2kZsdiHpJjZ4kD7Hq5Y=
+SHA256 (leaguefonts/theleagueof-fanwood-cbaaed9.zip) = 
D/EU0F0/arOZUMGnP0N/0dwECaTGs3w0igzNCI9qQ4A=
+SHA256 (leaguefonts/theleagueof-goudy-bookletter-1911-85ff5b8.zip) = 
ltibnosrHo7H5UtEALJ01R+J5CzEUUMKxy8fW7BVDwc=
+SHA256 (leaguefonts/theleagueof-junction-18de841.zip) = 
dJFtSQXLkD38SicjIsATUpEPrQrvYsUpQIFX23KmXDU=
+SHA256 (leaguefonts/theleagueof-knewave-f335d5f.zip) = 
p/hY5oRTT/6SRu8sfgG8SpuIRcWXyBfrlAaaCqeKvhg=
+SHA256 (leaguefonts/theleagueof-league-gothic-64c3ede.zip) = 
K6X1g9ROSIBZeBK+XQqBthbAG0rz0qHjmuUMDfnSfFk=
+SHA256 (leaguefonts/theleagueof-league-script-number-one-225add0.zip) = 
5rAdGn/fefh5YU6jenXYOc8vrlWfP4ALzs3vogRY0BQ=
+SHA256 (leaguefonts/theleagueof-linden-hill-a3f7ae6.zip) = 
eo4/XsVklA1TCc3sRih2NWB+W00kWMYLDSnOmX4WqWY=
+SHA256 (leaguefonts/theleagueof-orbitron-13e6a52.zip) = 
ZE7vRO86tbcVhdmgtfN3DUIbERev/Sr3BWU0IoYk3JQ=
+SHA256 (leaguefonts/theleagueof-prociono-f9d9680.zip) = 
vs1uyCIlxStcstWBQzyWLEFzKZ8Hy/unZ6PT4rOsCoY=
+SHA256 (leaguefonts/theleagueof-raleway-40afd9d.zip) = 
B3lEutTRO/WA6UE2/IlAXfv1PSUdt4WnVQA3Baq3yjg=
+SHA256 (leaguefonts/theleagueof-sniglet-5c6b086.zip) = 
bOL1VrikvxhIuM8mXCLF2cfUcnh68Sl08tA/Uaq0F9I=
+SHA256 (leaguefonts/theleagueof-sorts-mill-goudy-0607289.zip) = 
Kictjb2Yc8fSBmoKkDoidS2mTHohfi8mAfOqT4vkXoU=
+SIZE (leaguefonts/ostrich-sans-master.zip) = 5189815
+SIZE (leaguefonts/theleagueof-blackout-49991ac.zip) = 659575
+SIZE (leaguefonts/theleagueof-chunk-cd2d223.zip) = 346383
+SIZE (leaguefonts/theleagueof-fanwood-cbaaed9.zip) = 4286516
+SIZE (leaguefonts/theleagueof-goudy-bookletter-1911-85ff5b8.zip) = 1012517
+SIZE (leaguefonts/theleagueof-junction-18de841.zip) = 1056753
+SIZE (leaguefonts/theleagueof-knewave-f335d5f.zip) = 2716841
+SIZE (leaguefonts/theleagueof-league-gothic-64c3ede.zip) = 2472517
+SIZE (leaguefonts/theleagueof-league-script-number-one-225add0.zip) = 1041392
+SIZE (leaguefonts/theleagueof-linden-hill-a3f7ae6.zip) = 1473973
+SIZE (leaguefonts/theleagueof-orbitron-13e6a52.zip) = 1350531
+SIZE (leaguefonts/theleagueof-prociono-f9d9680.zip) = 1266305
+SIZE (leaguefonts/theleagueof-raleway-40afd9d.zip) = 1304374
+SIZE (leaguefonts/theleagueof-sniglet-5c6b086.zip) = 406622
+SIZE (leaguefonts/theleagueof-sorts-mill-goudy-0607289.zip) = 2645922
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/fonts/league-fonts/pkg/PLIST,v
retrieving revision 1.2
diff -u -p -r1.2 PLIST
--- pkg/PLIST   28 Feb 2012 11:53:04 -0000      1.2
+++ pkg/PLIST   30 Aug 2013 23:09:13 -0000
@@ -2,31 +2,342 @@
 @pkgpath x11/league-fonts
 lib/X11/fonts/
 @fontdir lib/X11/fonts/league-fonts/
-lib/X11/fonts/league-fonts/Blackout -CCLicense.pdf
-lib/X11/fonts/league-fonts/Blackout-2am.ttf
-lib/X11/fonts/league-fonts/Blackout-Midnight.ttf
+lib/X11/fonts/league-fonts/Blackout Midnight.ttf
+lib/X11/fonts/league-fonts/Blackout Sunrise.ttf
+lib/X11/fonts/league-fonts/Blackout Two AM.ttf
 lib/X11/fonts/league-fonts/Chunk.otf
 lib/X11/fonts/league-fonts/Chunk.ttf
-lib/X11/fonts/league-fonts/Flaminia -CCLicense.pdf
-lib/X11/fonts/league-fonts/Flaminia -Disclaimer.rtf
+lib/X11/fonts/league-fonts/Fanwood Italic.otf
+lib/X11/fonts/league-fonts/Fanwood Text Italic.otf
+lib/X11/fonts/league-fonts/Fanwood Text.otf
+lib/X11/fonts/league-fonts/Fanwood.otf
 lib/X11/fonts/league-fonts/GoudyBookletter1911.otf
-lib/X11/fonts/league-fonts/Junction 02.otf
-lib/X11/fonts/league-fonts/Junction 02.ttf
-lib/X11/fonts/league-fonts/Junction FONTLOG.txt
-lib/X11/fonts/league-fonts/League Gothic.otf
-lib/X11/fonts/league-fonts/LeagueScript.otf
-lib/X11/fonts/league-fonts/LindenHill-Italic.otf
-lib/X11/fonts/league-fonts/LindenHill.otf
-lib/X11/fonts/league-fonts/OFL - Copyright.txt
+lib/X11/fonts/league-fonts/Junction.otf
+lib/X11/fonts/league-fonts/LeagueGothic-CondensedItalic.otf
+lib/X11/fonts/league-fonts/LeagueGothic-CondensedRegular.otf
+lib/X11/fonts/league-fonts/LeagueGothic-Italic.otf
+lib/X11/fonts/league-fonts/LeagueGothic-Regular.otf
+lib/X11/fonts/league-fonts/LeagueScriptNumberOne.otf
+lib/X11/fonts/league-fonts/Linden Hill Italic.otf
+lib/X11/fonts/league-fonts/Linden Hill.otf
 lib/X11/fonts/league-fonts/OFLGoudyStM-Italic.otf
 lib/X11/fonts/league-fonts/OFLGoudyStM.otf
 lib/X11/fonts/league-fonts/OFLGoudyStMTT-Italic.ttf
 lib/X11/fonts/league-fonts/OFLGoudyStMTT.ttf
-lib/X11/fonts/league-fonts/Open Font License.txt
-lib/X11/fonts/league-fonts/Orbitron_readme.txt
+lib/X11/fonts/league-fonts/Orbitron Black.otf
+lib/X11/fonts/league-fonts/Orbitron Black.ttf
+lib/X11/fonts/league-fonts/Orbitron Bold.otf
+lib/X11/fonts/league-fonts/Orbitron Bold.ttf
+lib/X11/fonts/league-fonts/Orbitron Light.otf
+lib/X11/fonts/league-fonts/Orbitron Light.ttf
+lib/X11/fonts/league-fonts/Orbitron Medium.otf
+lib/X11/fonts/league-fonts/Orbitron Medium.ttf
+lib/X11/fonts/league-fonts/OstrichSans-Black.otf
+lib/X11/fonts/league-fonts/OstrichSans-Bold.otf
+lib/X11/fonts/league-fonts/OstrichSans-Light.otf
+lib/X11/fonts/league-fonts/OstrichSans-Medium.otf
+lib/X11/fonts/league-fonts/OstrichSansDashed-Medium.otf
+lib/X11/fonts/league-fonts/OstrichSansInline-Italic.otf
+lib/X11/fonts/league-fonts/OstrichSansInline-Regular.otf
+lib/X11/fonts/league-fonts/OstrichSansRounded-Medium.otf
 lib/X11/fonts/league-fonts/Prociono.otf
-lib/X11/fonts/league-fonts/ProcionoTT.ttf
-lib/X11/fonts/league-fonts/Sniglet_Regular.otf
-lib/X11/fonts/league-fonts/Sniglet_Regular.ttf
-lib/X11/fonts/league-fonts/raleway_thin.otf
-lib/X11/fonts/league-fonts/raleway_thin.ttf
+lib/X11/fonts/league-fonts/Prociono.ttf
+lib/X11/fonts/league-fonts/Raleway Thin.otf
+lib/X11/fonts/league-fonts/Raleway Thin.ttf
+lib/X11/fonts/league-fonts/Sniglet Regular.otf
+lib/X11/fonts/league-fonts/Sniglet Regular.ttf
+lib/X11/fonts/league-fonts/knewave-outline.otf
+lib/X11/fonts/league-fonts/knewave-outline.ttf
+lib/X11/fonts/league-fonts/knewave.otf
+lib/X11/fonts/league-fonts/knewave.ttf
+share/doc/league-fonts/
+share/doc/league-fonts/theleagueof-blackout/
+share/doc/league-fonts/theleagueof-blackout/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-blackout/Open Font License.markdown
+share/doc/league-fonts/theleagueof-blackout/images/
+share/doc/league-fonts/theleagueof-blackout/images/blackout-1.jpeg
+share/doc/league-fonts/theleagueof-blackout/images/blackout-2.jpeg
+share/doc/league-fonts/theleagueof-blackout/images/blackout-3.jpeg
+share/doc/league-fonts/theleagueof-blackout/images/blackout-4.jpeg
+share/doc/league-fonts/theleagueof-blackout/images/blackout-5.jpeg
+share/doc/league-fonts/theleagueof-blackout/images/blackout-6.jpeg
+share/doc/league-fonts/theleagueof-blackout/readme.markdown
+share/doc/league-fonts/theleagueof-chunk/
+share/doc/league-fonts/theleagueof-chunk/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-chunk/Open Font License.markdown
+share/doc/league-fonts/theleagueof-chunk/images/
+share/doc/league-fonts/theleagueof-chunk/images/chunk-1.jpeg
+share/doc/league-fonts/theleagueof-chunk/images/chunk-2.jpeg
+share/doc/league-fonts/theleagueof-chunk/readme.markdown
+share/doc/league-fonts/theleagueof-fanwood/
+share/doc/league-fonts/theleagueof-fanwood/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-fanwood/Open Font License.markdown
+share/doc/league-fonts/theleagueof-fanwood/images/
+share/doc/league-fonts/theleagueof-fanwood/images/fanwood-1.jpeg
+share/doc/league-fonts/theleagueof-fanwood/images/fanwood-2.jpeg
+share/doc/league-fonts/theleagueof-fanwood/readme.markdown
+share/doc/league-fonts/theleagueof-goudy-bookletter-1911/
+share/doc/league-fonts/theleagueof-goudy-bookletter-1911/Open Font License 
FAQ.markdown
+share/doc/league-fonts/theleagueof-goudy-bookletter-1911/Open Font 
License.markdown
+share/doc/league-fonts/theleagueof-goudy-bookletter-1911/images/
+share/doc/league-fonts/theleagueof-goudy-bookletter-1911/images/goudy-bookletter-1911-1.jpeg
+share/doc/league-fonts/theleagueof-goudy-bookletter-1911/images/goudy-bookletter-1911-2.jpeg
+share/doc/league-fonts/theleagueof-goudy-bookletter-1911/images/goudy-bookletter-1911-3.jpeg
+share/doc/league-fonts/theleagueof-goudy-bookletter-1911/readme.markdown
+share/doc/league-fonts/theleagueof-junction/
+share/doc/league-fonts/theleagueof-junction/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-junction/Open Font License.markdown
+share/doc/league-fonts/theleagueof-junction/images/
+share/doc/league-fonts/theleagueof-junction/images/junction-1.png
+share/doc/league-fonts/theleagueof-junction/images/junction-2.png
+share/doc/league-fonts/theleagueof-junction/images/junction-3.png
+share/doc/league-fonts/theleagueof-junction/readme.markdown
+share/doc/league-fonts/theleagueof-knewave/
+share/doc/league-fonts/theleagueof-knewave/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-knewave/Open Font License.markdown
+share/doc/league-fonts/theleagueof-knewave/images/
+share/doc/league-fonts/theleagueof-knewave/images/knewave-1.png
+share/doc/league-fonts/theleagueof-knewave/images/knewave-2.png
+share/doc/league-fonts/theleagueof-knewave/images/knewave-3.png
+share/doc/league-fonts/theleagueof-knewave/images/knewave-4.png
+share/doc/league-fonts/theleagueof-knewave/images/knewave-5.png
+share/doc/league-fonts/theleagueof-knewave/readme.markdown
+share/doc/league-fonts/theleagueof-league-gothic/
+share/doc/league-fonts/theleagueof-league-gothic/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-league-gothic/Open Font License.markdown
+share/doc/league-fonts/theleagueof-league-gothic/images/
+share/doc/league-fonts/theleagueof-league-gothic/images/league-gothic-1.png
+share/doc/league-fonts/theleagueof-league-gothic/images/league-gothic-2.png
+share/doc/league-fonts/theleagueof-league-gothic/images/league-gothic-3.png
+share/doc/league-fonts/theleagueof-league-gothic/images/league-gothic-4.png
+share/doc/league-fonts/theleagueof-league-gothic/images/league-gothic-5.jpg
+share/doc/league-fonts/theleagueof-league-gothic/images/league-gothic-6.png
+share/doc/league-fonts/theleagueof-league-gothic/readme.markdown
+share/doc/league-fonts/theleagueof-league-script-number-one/
+share/doc/league-fonts/theleagueof-league-script-number-one/Open Font License 
FAQ.markdown
+share/doc/league-fonts/theleagueof-league-script-number-one/Open Font 
License.markdown
+share/doc/league-fonts/theleagueof-league-script-number-one/images/
+share/doc/league-fonts/theleagueof-league-script-number-one/images/league-script-number-one-1.jpeg
+share/doc/league-fonts/theleagueof-league-script-number-one/images/league-script-number-one-2.jpeg
+share/doc/league-fonts/theleagueof-league-script-number-one/images/league-script-number-one-3.jpeg
+share/doc/league-fonts/theleagueof-league-script-number-one/readme.markdown
+share/doc/league-fonts/theleagueof-linden-hill/
+share/doc/league-fonts/theleagueof-linden-hill/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-linden-hill/Open Font License.markdown
+share/doc/league-fonts/theleagueof-linden-hill/images/
+share/doc/league-fonts/theleagueof-linden-hill/images/linden-hill-1.jpeg
+share/doc/league-fonts/theleagueof-linden-hill/readme.markdown
+share/doc/league-fonts/theleagueof-orbitron/
+share/doc/league-fonts/theleagueof-orbitron/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-orbitron/Open Font License.markdown
+share/doc/league-fonts/theleagueof-orbitron/images/
+share/doc/league-fonts/theleagueof-orbitron/images/orbitron-1.jpeg
+share/doc/league-fonts/theleagueof-orbitron/images/orbitron-2.jpeg
+share/doc/league-fonts/theleagueof-orbitron/images/orbitron-3.png
+share/doc/league-fonts/theleagueof-orbitron/images/orbitron-4.png
+share/doc/league-fonts/theleagueof-orbitron/images/orbitron-5.jpeg
+share/doc/league-fonts/theleagueof-orbitron/readme.markdown
+share/doc/league-fonts/theleagueof-ostrich-sans/
+share/doc/league-fonts/theleagueof-ostrich-sans/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-ostrich-sans/Open Font License.markdown
+share/doc/league-fonts/theleagueof-ostrich-sans/images/
+share/doc/league-fonts/theleagueof-ostrich-sans/images/ostrich-sans-1.jpeg
+share/doc/league-fonts/theleagueof-ostrich-sans/images/ostrich-sans-2.jpeg
+share/doc/league-fonts/theleagueof-ostrich-sans/images/ostrich-sans-3.jpeg
+share/doc/league-fonts/theleagueof-ostrich-sans/images/ostrich-sans-4.jpeg
+share/doc/league-fonts/theleagueof-ostrich-sans/images/ostrich-sans-5.jpeg
+share/doc/league-fonts/theleagueof-ostrich-sans/readme.markdown
+share/doc/league-fonts/theleagueof-prociono/
+share/doc/league-fonts/theleagueof-prociono/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-prociono/Open Font License.markdown
+share/doc/league-fonts/theleagueof-prociono/images/
+share/doc/league-fonts/theleagueof-prociono/images/prociono-1.png
+share/doc/league-fonts/theleagueof-prociono/images/prociono-2.png
+share/doc/league-fonts/theleagueof-prociono/images/prociono-3.png
+share/doc/league-fonts/theleagueof-prociono/readme.markdown
+share/doc/league-fonts/theleagueof-raleway/
+share/doc/league-fonts/theleagueof-raleway/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-raleway/Open Font License.markdown
+share/doc/league-fonts/theleagueof-raleway/images/
+share/doc/league-fonts/theleagueof-raleway/images/raleway-1.jpeg
+share/doc/league-fonts/theleagueof-raleway/images/raleway-2.jpeg
+share/doc/league-fonts/theleagueof-raleway/images/raleway-3.jpeg
+share/doc/league-fonts/theleagueof-raleway/images/raleway-4.jpeg
+share/doc/league-fonts/theleagueof-raleway/readme.markdown
+share/doc/league-fonts/theleagueof-sniglet/
+share/doc/league-fonts/theleagueof-sniglet/Open Font License FAQ.markdown
+share/doc/league-fonts/theleagueof-sniglet/Open Font License.markdown
+share/doc/league-fonts/theleagueof-sniglet/images/
+share/doc/league-fonts/theleagueof-sniglet/images/sniglet-1.jpeg
+share/doc/league-fonts/theleagueof-sniglet/readme.markdown
+share/doc/league-fonts/theleagueof-sorts-mill-goudy/
+share/doc/league-fonts/theleagueof-sorts-mill-goudy/Open Font License 
FAQ.markdown
+share/doc/league-fonts/theleagueof-sorts-mill-goudy/Open Font License.markdown
+share/doc/league-fonts/theleagueof-sorts-mill-goudy/images/
+share/doc/league-fonts/theleagueof-sorts-mill-goudy/images/sorts-mill-goudy-1.png
+share/doc/league-fonts/theleagueof-sorts-mill-goudy/images/sorts-mill-goudy-2.png
+share/doc/league-fonts/theleagueof-sorts-mill-goudy/images/sorts-mill-goudy-3.png
+share/doc/league-fonts/theleagueof-sorts-mill-goudy/readme.markdown
+share/league-fonts/
+share/league-fonts/theleagueof-blackout/
+share/league-fonts/theleagueof-blackout/blackout_midnight-webfont.eot
+share/league-fonts/theleagueof-blackout/blackout_midnight-webfont.svg
+share/league-fonts/theleagueof-blackout/blackout_midnight-webfont.ttf
+share/league-fonts/theleagueof-blackout/blackout_midnight-webfont.woff
+share/league-fonts/theleagueof-blackout/blackout_sunrise-webfont.eot
+share/league-fonts/theleagueof-blackout/blackout_sunrise-webfont.svg
+share/league-fonts/theleagueof-blackout/blackout_sunrise-webfont.ttf
+share/league-fonts/theleagueof-blackout/blackout_sunrise-webfont.woff
+share/league-fonts/theleagueof-blackout/blackout_two_am-webfont.eot
+share/league-fonts/theleagueof-blackout/blackout_two_am-webfont.svg
+share/league-fonts/theleagueof-blackout/blackout_two_am-webfont.ttf
+share/league-fonts/theleagueof-blackout/blackout_two_am-webfont.woff
+share/league-fonts/theleagueof-chunk/
+share/league-fonts/theleagueof-chunk/Chunkfive-webfont.eot
+share/league-fonts/theleagueof-chunk/Chunkfive-webfont.svg
+share/league-fonts/theleagueof-chunk/Chunkfive-webfont.ttf
+share/league-fonts/theleagueof-chunk/Chunkfive-webfont.woff
+share/league-fonts/theleagueof-fanwood/
+share/league-fonts/theleagueof-fanwood/fanwood-webfont.eot
+share/league-fonts/theleagueof-fanwood/fanwood-webfont.svg
+share/league-fonts/theleagueof-fanwood/fanwood-webfont.ttf
+share/league-fonts/theleagueof-fanwood/fanwood-webfont.woff
+share/league-fonts/theleagueof-fanwood/fanwood_italic-webfont.eot
+share/league-fonts/theleagueof-fanwood/fanwood_italic-webfont.svg
+share/league-fonts/theleagueof-fanwood/fanwood_italic-webfont.ttf
+share/league-fonts/theleagueof-fanwood/fanwood_italic-webfont.woff
+share/league-fonts/theleagueof-fanwood/fanwood_text-webfont.eot
+share/league-fonts/theleagueof-fanwood/fanwood_text-webfont.svg
+share/league-fonts/theleagueof-fanwood/fanwood_text-webfont.ttf
+share/league-fonts/theleagueof-fanwood/fanwood_text-webfont.woff
+share/league-fonts/theleagueof-fanwood/fanwood_text_italic-webfont.eot
+share/league-fonts/theleagueof-fanwood/fanwood_text_italic-webfont.svg
+share/league-fonts/theleagueof-fanwood/fanwood_text_italic-webfont.ttf
+share/league-fonts/theleagueof-fanwood/fanwood_text_italic-webfont.woff
+share/league-fonts/theleagueof-goudy-bookletter-1911/
+share/league-fonts/theleagueof-goudy-bookletter-1911/goudy_bookletter_1911-webfont.eot
+share/league-fonts/theleagueof-goudy-bookletter-1911/goudy_bookletter_1911-webfont.svg
+share/league-fonts/theleagueof-goudy-bookletter-1911/goudy_bookletter_1911-webfont.ttf
+share/league-fonts/theleagueof-goudy-bookletter-1911/goudy_bookletter_1911-webfont.woff
+share/league-fonts/theleagueof-junction/
+share/league-fonts/theleagueof-junction/Junction-webfont.eot
+share/league-fonts/theleagueof-junction/Junction-webfont.svg
+share/league-fonts/theleagueof-junction/Junction-webfont.ttf
+share/league-fonts/theleagueof-junction/Junction-webfont.woff
+share/league-fonts/theleagueof-knewave/
+share/league-fonts/theleagueof-knewave/knewave-outline-webfont.eot
+share/league-fonts/theleagueof-knewave/knewave-outline-webfont.svg
+share/league-fonts/theleagueof-knewave/knewave-outline-webfont.ttf
+share/league-fonts/theleagueof-knewave/knewave-outline-webfont.woff
+share/league-fonts/theleagueof-knewave/knewave-webfont.eot
+share/league-fonts/theleagueof-knewave/knewave-webfont.svg
+share/league-fonts/theleagueof-knewave/knewave-webfont.ttf
+share/league-fonts/theleagueof-knewave/knewave-webfont.woff
+share/league-fonts/theleagueof-knewave/stylesheet.css
+share/league-fonts/theleagueof-league-gothic/
+share/league-fonts/theleagueof-league-gothic/leaguegothic-condensed-italic-webfont.eot
+share/league-fonts/theleagueof-league-gothic/leaguegothic-condensed-italic-webfont.svg
+share/league-fonts/theleagueof-league-gothic/leaguegothic-condensed-italic-webfont.ttf
+share/league-fonts/theleagueof-league-gothic/leaguegothic-condensed-italic-webfont.woff
+share/league-fonts/theleagueof-league-gothic/leaguegothic-condensed-regular-webfont.eot
+share/league-fonts/theleagueof-league-gothic/leaguegothic-condensed-regular-webfont.svg
+share/league-fonts/theleagueof-league-gothic/leaguegothic-condensed-regular-webfont.ttf
+share/league-fonts/theleagueof-league-gothic/leaguegothic-condensed-regular-webfont.woff
+share/league-fonts/theleagueof-league-gothic/leaguegothic-italic-webfont.eot
+share/league-fonts/theleagueof-league-gothic/leaguegothic-italic-webfont.svg
+share/league-fonts/theleagueof-league-gothic/leaguegothic-italic-webfont.ttf
+share/league-fonts/theleagueof-league-gothic/leaguegothic-italic-webfont.woff
+share/league-fonts/theleagueof-league-gothic/leaguegothic-regular-webfont.eot
+share/league-fonts/theleagueof-league-gothic/leaguegothic-regular-webfont.svg
+share/league-fonts/theleagueof-league-gothic/leaguegothic-regular-webfont.ttf
+share/league-fonts/theleagueof-league-gothic/leaguegothic-regular-webfont.woff
+share/league-fonts/theleagueof-league-gothic/stylesheet.css
+share/league-fonts/theleagueof-league-script-number-one/
+share/league-fonts/theleagueof-league-script-number-one/LeagueScriptNumberOne-webfont.eot
+share/league-fonts/theleagueof-league-script-number-one/LeagueScriptNumberOne-webfont.svg
+share/league-fonts/theleagueof-league-script-number-one/LeagueScriptNumberOne-webfont.ttf
+share/league-fonts/theleagueof-league-script-number-one/LeagueScriptNumberOne-webfont.woff
+share/league-fonts/theleagueof-linden-hill/
+share/league-fonts/theleagueof-linden-hill/LindenHill-Italic-webfont.eot
+share/league-fonts/theleagueof-linden-hill/LindenHill-Italic-webfont.svg
+share/league-fonts/theleagueof-linden-hill/LindenHill-Italic-webfont.ttf
+share/league-fonts/theleagueof-linden-hill/LindenHill-Italic-webfont.woff
+share/league-fonts/theleagueof-linden-hill/LindenHill-webfont.eot
+share/league-fonts/theleagueof-linden-hill/LindenHill-webfont.svg
+share/league-fonts/theleagueof-linden-hill/LindenHill-webfont.ttf
+share/league-fonts/theleagueof-linden-hill/LindenHill-webfont.woff
+share/league-fonts/theleagueof-orbitron/
+share/league-fonts/theleagueof-orbitron/orbitron-black-webfont.eot
+share/league-fonts/theleagueof-orbitron/orbitron-black-webfont.svg
+share/league-fonts/theleagueof-orbitron/orbitron-black-webfont.ttf
+share/league-fonts/theleagueof-orbitron/orbitron-black-webfont.woff
+share/league-fonts/theleagueof-orbitron/orbitron-bold-webfont.eot
+share/league-fonts/theleagueof-orbitron/orbitron-bold-webfont.svg
+share/league-fonts/theleagueof-orbitron/orbitron-bold-webfont.ttf
+share/league-fonts/theleagueof-orbitron/orbitron-bold-webfont.woff
+share/league-fonts/theleagueof-orbitron/orbitron-light-webfont.eot
+share/league-fonts/theleagueof-orbitron/orbitron-light-webfont.svg
+share/league-fonts/theleagueof-orbitron/orbitron-light-webfont.ttf
+share/league-fonts/theleagueof-orbitron/orbitron-light-webfont.woff
+share/league-fonts/theleagueof-orbitron/orbitron-medium-webfont.eot
+share/league-fonts/theleagueof-orbitron/orbitron-medium-webfont.svg
+share/league-fonts/theleagueof-orbitron/orbitron-medium-webfont.ttf
+share/league-fonts/theleagueof-orbitron/orbitron-medium-webfont.woff
+share/league-fonts/theleagueof-ostrich-sans/
+share/league-fonts/theleagueof-ostrich-sans/ostrich-black.eot
+share/league-fonts/theleagueof-ostrich-sans/ostrich-black.svg
+share/league-fonts/theleagueof-ostrich-sans/ostrich-black.ttf
+share/league-fonts/theleagueof-ostrich-sans/ostrich-black.woff
+share/league-fonts/theleagueof-ostrich-sans/ostrich-bold.eot
+share/league-fonts/theleagueof-ostrich-sans/ostrich-bold.svg
+share/league-fonts/theleagueof-ostrich-sans/ostrich-bold.ttf
+share/league-fonts/theleagueof-ostrich-sans/ostrich-bold.woff
+share/league-fonts/theleagueof-ostrich-sans/ostrich-dashed.eot
+share/league-fonts/theleagueof-ostrich-sans/ostrich-dashed.svg
+share/league-fonts/theleagueof-ostrich-sans/ostrich-dashed.ttf
+share/league-fonts/theleagueof-ostrich-sans/ostrich-dashed.woff
+share/league-fonts/theleagueof-ostrich-sans/ostrich-light.eot
+share/league-fonts/theleagueof-ostrich-sans/ostrich-light.svg
+share/league-fonts/theleagueof-ostrich-sans/ostrich-light.ttf
+share/league-fonts/theleagueof-ostrich-sans/ostrich-light.woff
+share/league-fonts/theleagueof-ostrich-sans/ostrich-regular.eot
+share/league-fonts/theleagueof-ostrich-sans/ostrich-regular.svg
+share/league-fonts/theleagueof-ostrich-sans/ostrich-regular.ttf
+share/league-fonts/theleagueof-ostrich-sans/ostrich-regular.woff
+share/league-fonts/theleagueof-ostrich-sans/ostrich-rounded.eot
+share/league-fonts/theleagueof-ostrich-sans/ostrich-rounded.svg
+share/league-fonts/theleagueof-ostrich-sans/ostrich-rounded.ttf
+share/league-fonts/theleagueof-ostrich-sans/ostrich-rounded.woff
+share/league-fonts/theleagueof-ostrich-sans/ostrich-sans-inline-italic.eot
+share/league-fonts/theleagueof-ostrich-sans/ostrich-sans-inline-italic.svg
+share/league-fonts/theleagueof-ostrich-sans/ostrich-sans-inline-italic.ttf
+share/league-fonts/theleagueof-ostrich-sans/ostrich-sans-inline-italic.woff
+share/league-fonts/theleagueof-ostrich-sans/ostrich-sans-inline-regular.eot
+share/league-fonts/theleagueof-ostrich-sans/ostrich-sans-inline-regular.svg
+share/league-fonts/theleagueof-ostrich-sans/ostrich-sans-inline-regular.ttf
+share/league-fonts/theleagueof-ostrich-sans/ostrich-sans-inline-regular.woff
+share/league-fonts/theleagueof-ostrich-sans/ostrich-sans.css
+share/league-fonts/theleagueof-prociono/
+share/league-fonts/theleagueof-prociono/Prociono-Regular-webfont.eot
+share/league-fonts/theleagueof-prociono/Prociono-Regular-webfont.svg
+share/league-fonts/theleagueof-prociono/Prociono-Regular-webfont.ttf
+share/league-fonts/theleagueof-prociono/Prociono-Regular-webfont.woff
+share/league-fonts/theleagueof-raleway/
+share/league-fonts/theleagueof-raleway/raleway_thin-webfont.eot
+share/league-fonts/theleagueof-raleway/raleway_thin-webfont.svg
+share/league-fonts/theleagueof-raleway/raleway_thin-webfont.ttf
+share/league-fonts/theleagueof-raleway/raleway_thin-webfont.woff
+share/league-fonts/theleagueof-sniglet/
+share/league-fonts/theleagueof-sniglet/Sniglet-webfont.eot
+share/league-fonts/theleagueof-sniglet/Sniglet-webfont.svg
+share/league-fonts/theleagueof-sniglet/Sniglet-webfont.ttf
+share/league-fonts/theleagueof-sniglet/Sniglet-webfont.woff
+share/league-fonts/theleagueof-sorts-mill-goudy/
+share/league-fonts/theleagueof-sorts-mill-goudy/GoudyStM-Italic-webfont.eot
+share/league-fonts/theleagueof-sorts-mill-goudy/GoudyStM-Italic-webfont.svg
+share/league-fonts/theleagueof-sorts-mill-goudy/GoudyStM-Italic-webfont.ttf
+share/league-fonts/theleagueof-sorts-mill-goudy/GoudyStM-Italic-webfont.woff
+share/league-fonts/theleagueof-sorts-mill-goudy/GoudyStM-webfont.eot
+share/league-fonts/theleagueof-sorts-mill-goudy/GoudyStM-webfont.svg
+share/league-fonts/theleagueof-sorts-mill-goudy/GoudyStM-webfont.ttf
+share/league-fonts/theleagueof-sorts-mill-goudy/GoudyStM-webfont.woff

Reply via email to