$ go get -u github.com/BurntSushi/xgbutil/xgraphics
github.com/BurntSushi/xgbutil/xgraphics
../../../../BurntSushi/xgbutil/xgraphics/text.go:36: c.FUnitToPixelRU undefined (type freetype.Context has no field or method FUnitToPixelRU)
../../../../BurntSushi/xgbutil/xgraphics/text.go:36: font.UnitsPerEm undefined (type truetype.Font has no field or method UnitsPerEm)
../../../../BurntSushi/xgbutil/xgraphics/text.go:60: c.FUnitToPixelRU undefined (type freetype.Context has no field or method FUnitToPixelRU)
../../../../BurntSushi/xgbutil/xgraphics/text.go:60: font.UnitsPerEm undefined (type truetype.Font has no field or method UnitsPerEm)
A quick google search indicates that this breakage results from the change "freetype: move the scaling from FUnits to pixels from package freetype to package truetype."
$ go get -u github.com/BurntSushi/xgbutil/xgraphics
github.com/BurntSushi/xgbutil/xgraphics
../../../../BurntSushi/xgbutil/xgraphics/text.go:36: c.FUnitToPixelRU undefined (type freetype.Context has no field or method FUnitToPixelRU) ../../../../BurntSushi/xgbutil/xgraphics/text.go:36: font.UnitsPerEm undefined (type truetype.Font has no field or method UnitsPerEm) ../../../../BurntSushi/xgbutil/xgraphics/text.go:60: c.FUnitToPixelRU undefined (type freetype.Context has no field or method FUnitToPixelRU) ../../../../BurntSushi/xgbutil/xgraphics/text.go:60: font.UnitsPerEm undefined (type truetype.Font has no field or method UnitsPerEm)
A quick google search indicates that this breakage results from the change "freetype: move the scaling from FUnits to pixels from package freetype to package truetype."
http://code.google.com/p/freetype-go/source/detail?spec=svn15b6d4e041517055da50fd23f5f4b4cc2c66ee94&r=15b6d4e041517055da50fd23f5f4b4cc2c66ee94
I would submit a fix, but am a bit intimidated, since I've never used any of these packages myself (and was just trying to compile go.uik working).