mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-07 11:49:40 +00:00
![Baptiste Daroussin](/assets/img/avatar_default.png)
Xorg is now looking in ${LOCALBASE}/share/fonts by default Xorg now accepts symlinks in etc/X11/fontpath.d (as decribed in Xserver(1)) Large cleanup on lots of font ports All fonts are now properly dynamically generating fonts.dir and fonts.scale instead of sometime overwriting existing ones) All fonts are generating fontconfig's cache Improve consistency in fonts ports
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
# Created by: Björn König <bkoenig@alpha-tierchen.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= linuxlibertine
|
|
PORTVERSION= 4.7.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= SF
|
|
DISTNAME= LinLibertineFont-${PORTVERSION}-2
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= office@FreeBSD.org
|
|
COMMENT= Linux Libertine Open Fonts
|
|
|
|
LICENSE= GPLv2 LINUXLIBERTINE OFL10
|
|
LICENSE_COMB= multi
|
|
|
|
USES= fonts
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
LICENSE_NAME_LINUXLIBERTINE= LinuxLibertine License
|
|
LICENSE_FILE_LINUXLIBERTINE= ${WRKSRC}/LICENCE.txt
|
|
LICENSE_PERMS_LINUXLIBERTINE= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
LICENSE_NAME_OFL= Open Fonts License
|
|
LICENSE_FILE_OFL= ${WRKSRC}/OFL.txt
|
|
LICENSE_PERMS_OFL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
SUB_FILES= pkg-deinstall
|
|
WRKSRC= ${WRKDIR}/LinLibertine
|
|
NO_BUILD= yes
|
|
|
|
PORTDOCS= Bugs.txt \
|
|
ChangeLog.txt \
|
|
Readme.txt \
|
|
Readme-TEX.txt
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${FONTSDIR}
|
|
.for ext in ttf otf
|
|
${INSTALL_DATA} ${WRKSRC}/Fonts/*.${ext} ${STAGEDIR}${FONTSDIR}
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/$i ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|