Add unifont support.
This commit is contained in:
parent
8e1f5dd750
commit
23359281a0
3 changed files with 11 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.18 2010/05/22 19:31:21 gregoire Exp $
|
||||
# $NetBSD: Makefile,v 1.19 2010/05/22 19:36:09 gregoire Exp $
|
||||
#
|
||||
|
||||
DISTNAME= grub-bazaar-snapshot
|
||||
|
@ -12,7 +12,8 @@ LICENSE= gnu-gpl-v3
|
|||
|
||||
PKG_DESTDIR_SUPPORT= user-destdir
|
||||
|
||||
# Helper file for access to the bazaar repository and for autogen.sh.
|
||||
# Helper file to access the bazaar repository, download translations and font
|
||||
# files, and generate the configure script with autogen.sh.
|
||||
.include "download.mk"
|
||||
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.9 2010/05/22 00:47:37 gregoire Exp $
|
||||
@comment $NetBSD: PLIST,v 1.10 2010/05/22 19:36:09 gregoire Exp $
|
||||
bin/grub2-bin2h
|
||||
bin/grub2-editenv
|
||||
bin/grub2-fstest
|
||||
|
@ -227,6 +227,9 @@ share/examples/grub2/30_os-prober
|
|||
share/examples/grub2/40_custom
|
||||
share/examples/grub2/README
|
||||
share/examples/grub2/default.conf.sample
|
||||
share/grub2/ascii.h
|
||||
share/grub2/ascii.pf2
|
||||
share/grub2/unicode.pf2
|
||||
share/locale/ast/LC_MESSAGES/grub2.mo
|
||||
share/locale/ca/LC_MESSAGES/grub2.mo
|
||||
share/locale/da/LC_MESSAGES/grub2.mo
|
||||
|
@ -242,4 +245,3 @@ share/locale/ru/LC_MESSAGES/grub2.mo
|
|||
share/locale/sv/LC_MESSAGES/grub2.mo
|
||||
share/locale/vi/LC_MESSAGES/grub2.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/grub2.mo
|
||||
@pkgdir share/grub2
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: download.mk,v 1.1 2010/05/22 19:31:22 gregoire Exp $
|
||||
# $NetBSD: download.mk,v 1.2 2010/05/22 19:36:09 gregoire Exp $
|
||||
#
|
||||
|
||||
BUILD_DEPENDS+= bzr>=1.0:../../devel/bzr
|
||||
|
@ -6,6 +6,8 @@ BUILD_DEPENDS+= rsync>=3.0:../../net/rsync
|
|||
|
||||
DISTFILES?= # empty
|
||||
BZR_REPOSITORY= http://bzr.savannah.gnu.org/r/grub/people/gsutre/netbsd
|
||||
UNIFONT_URL= http://unifoundry.com/unifont-5.1.20080820.pcf.gz
|
||||
UNIFONT_EXT= pcf.gz
|
||||
|
||||
pre-extract: do-bzr-extract
|
||||
|
||||
|
@ -18,6 +20,7 @@ do-bzr-extract:
|
|||
|
||||
post-extract:
|
||||
cd ${WRKSRC} && rsync -Lrtvz translationproject.org::tp/latest/grub/ po
|
||||
cd ${WRKSRC} && ftp -o unifont.${UNIFONT_EXT} ${UNIFONT_URL}
|
||||
|
||||
pre-configure:
|
||||
cd ${WRKSRC} && ./autogen.sh
|
||||
|
|
Loading…
Reference in a new issue