d998481e44
Changelog: * Wed Sep 21 2011 Pravin Satpute <psatpute@redhat.com> - resolved bug 738264, corrected height of U+040D in Mono - resolved bug 729989, corrected macron position on ā, ē, ī, ō, ū in Narrow fonts - enabled embedding of font - Added License link https://fedoraproject.org/wiki/Licensing/LiberationFontLicense - New Release 1.07.1 * Mon May 30 2011 Pravin Satpute <psatpute@redhat.com> - added U+045D and U+0450 in all fonts, bug 659214 - corrected characters U+0438 and U+0439, bug 708330 - resolved bug 708330, 707973 - New Release 1.07.0 * Wed Feb 23 2011 Pravin Satpute <psatpute@redhat.com> - added U+0400 and U+040d in all fonts, bug 659214 - fixed for bug 620273, patch from Cody Boisclair <cody@zone38.net>
36 lines
845 B
Makefile
36 lines
845 B
Makefile
# $NetBSD: Makefile,v 1.5 2011/10/22 08:50:18 ryoon Exp $
|
|
#
|
|
|
|
DISTNAME= liberation-fonts-ttf-1.07.1
|
|
PKGNAME= ${DISTNAME:S/-fonts//}
|
|
CATEGORIES= fonts
|
|
MASTER_SITES= https://fedorahosted.org/releases/l/i/liberation-fonts/
|
|
|
|
MAINTAINER= bartosz.kuzma@gmail.com
|
|
HOMEPAGE= http://www.redhat.com/promo/fonts/
|
|
COMMENT= TrueType fonts from RedHat
|
|
LICENSE= gnu-gpl-v2 # with some exception
|
|
|
|
FETCH_USING= curl
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
NO_BUILD= yes
|
|
NO_CONFIGURE= yes
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
FONTDIR= ${PREFIX}/lib/X11/fonts/TTF
|
|
FONTS_DIR.ttf= ${FONTDIR}
|
|
|
|
INSTALLATION_DIRS= ${DOCDIR} ${FONTDIR}
|
|
|
|
do-install:
|
|
set -e; \
|
|
cd ${WRKSRC} && for f in *.ttf ; do \
|
|
${INSTALL_DATA} $$f ${DESTDIR}${FONTDIR}/$$f ; \
|
|
done
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING ${WRKSRC}/License.txt \
|
|
${DESTDIR}${DOCDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|