pkgsrc-wip/ubuntu-font-ttf/Makefile
Ryo ONODERA 6ba0cd48db Update to 0.80
* Update HOMEPAGE.

ChangeLog:
2011-09-22 (Paul Sladen) Ubuntu Font Family version 0.80

  [Vincent Connare/Dalton Maag]
  * Wish for addition of a monospaced member to the family (LP: #640382)
  * Mono: No hinting yet - Ubuntu Beta Mono font looks jagged in
    Netbeans and terrible with ClearType (LP: #820493)
  * Emacs: choosing normal monospace font in Emacs but gives bold-italic
    (LP: #791076)
  * PUA: ensure that Ubuntu Circle of Friends logo is full size: (LP: #853855)
    + U+E0FF becomes large size in proportionals, remains small width in
      monospaces
    + U+F0FF becomes small size (proportionals only)
    + U+F200 is full ubuntu logomark (proportionals only)

  [Paul Sladen]
  * Monospace: Patch Family Name to be "Ubuntu Mono"
  * Monospace: Patch U+EFFD version debugging glyph to be '0.8'

  [Cody Boisclair]
  * Monospace: Force .null HDMX advance to 500
  * Monospace: Remap ASCII box-drawing characters (LP: #788757)

  [Júlio Reis]
  * Date corrections to 'FONTLOG' (LP: #836595)

2011-03-08 (Paul Sladen) Ubuntu Font Family version 0.71.2

  * (Production) Adjust Medium WeightClass to 500 (Md, MdIt) (LP: #730912)
2011-10-04 19:42:35 +00:00

63 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.8 2011/10/04 19:42:35 ryo-on Exp $
#
DISTNAME= ubuntu-font-family-0.80
PKGNAME= ${DISTNAME:S/family-/ttf-/}
CATEGORIES= fonts
MASTER_SITES= http://font.ubuntu.com/download/
EXTRACT_SUFX= .zip
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= http://font.ubuntu.com/
COMMENT= Ubuntu font family
#LICENSE= UBUNTU FONT LICENCE Version 1.0
PKG_DESTDIR_SUPPORT= user-destdir
WRKSRC= ${WRKDIR}/${DISTNAME:S/.orig//:S/_/-/}
USE_LANGUAGES= # none
USE_X11BASE= YES
NO_CONFIGURE= YES
NO_BUILD= YES
DOCSDIR= ${PREFIX}/share/doc/${PKGBASE}
INSTALLATION_DIRS= lib/X11/fonts/TTF \
${DOCSDIR}
FONTDIR= ${PREFIX}/lib/X11/fonts/TTF
FONTS_DIRS.ttf= ${FONTDIR}
INSTALL_FONTS= Ubuntu-B.ttf \
Ubuntu-BI.ttf \
Ubuntu-C.ttf \
Ubuntu-L.ttf \
Ubuntu-LI.ttf \
Ubuntu-M.ttf \
Ubuntu-MI.ttf \
Ubuntu-R.ttf \
Ubuntu-RI.ttf \
UbuntuMono-B.ttf \
UbuntuMono-BI.ttf \
UbuntuMono-R.ttf \
UbuntuMono-RI.ttf
INSTALL_DOCS= CONTRIBUTING.txt \
FONTLOG.txt \
LICENCE-FAQ.txt \
LICENCE.txt \
README.txt \
TRADEMARKS.txt \
copyright.txt
do-install:
.for fontfile in ${INSTALL_FONTS}
${INSTALL_DATA} ${WRKSRC}/${fontfile} ${DESTDIR}${FONTDIR}
.endfor
.for docfile in ${INSTALL_DOCS}
${INSTALL_DATA} ${WRKSRC}/${docfile} ${DESTDIR}${DOCSDIR}
.endfor
.include "../../mk/bsd.pkg.mk"