1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-06 01:57:40 +00:00
freebsd-ports/x11-fonts/sgifonts/Makefile
Dmitry Marakasov 33e3d901d4 Convert most of remaining ports that depend on xorg-libraries to
modular xorg.

- supply corresponding USE_XORG for all imake-using ports that need it
- USE_IMAKE no longer implies USE_XLIB in absence of USE_XORG
- retire USE_X_PREFIX which is not really used anywhere after the
  above change
- a few minor nits like whitespace and SF macro

Tested by:	2 tinderbox runs by pav
Approved by:	portmgr (pav)
2009-06-09 15:33:28 +00:00

60 lines
1.8 KiB
Makefile

# New ports collection makefile for: sgifonts
# Date created: 2002-05-31
# Whom: trevor
#
# $FreeBSD$
#
PORTNAME= sgifonts
PORTVERSION= 1.0.1
PORTREVISION= 2
CATEGORIES= x11-fonts
MASTER_SITES= ftp://patches-europe.sgi.com/pub/linux/ProPack1.4/SRPMS/ \
ftp://ftp.rediris.es/sites/patches-europe.sgi.com/pub/linux/ProPack1.4/SRPMS/
DISTNAME= sgi-fonts-1.0-1.src
EXTRACT_SUFX= .rpm
MAINTAINER= ports@FreeBSD.org
COMMENT= Fonts from the SGI ProPack 1.4 (originally for Linux)
EXTRACT_DEPENDS= rpm2cpio.pl:${PORTSDIR}/archivers/rpm2cpio
BUILD_DEPENDS= bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf \
mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir
PLIST= ${WRKDIR}/pkg-plist
PLIST_DIRS= lib/X11/fonts/local/sgi
PKGMESSAGE= ${WRKDIR}/pkg-message
USE_IMAKE= yes
WRKSRC= ${WRKDIR}/sgi-fonts
do-extract:
@${MKDIR} ${WRKDIR}
@cd ${WRKDIR}; rpm2cpio.pl ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} \
| ${CPIO} --extract --no-preserve-owner \
--preserve-modification-time --unconditional --quiet
@${TAR} -C ${WRKDIR} -xf ${WRKDIR}/sgi-fonts.tar.gz
pre-install:
@${RM} -f ${PLIST}
@cd ${WRKSRC}; for ii in `${LS} *gz fonts.alias fonts.dir|${SORT}`; do \
${ECHO_CMD} lib/X11/fonts/local/sgi/$${ii} >> ${PLIST}; \
done
@${ECHO_CMD} "******************************************" >${PKGMESSAGE}
@${ECHO_CMD} "Add a line" >> ${PKGMESSAGE}
@${ECHO_CMD} "FontPath \"${PREFIX}/lib/X11/fonts/local/sgi\"" \
>> ${PKGMESSAGE}
@${ECHO_CMD} \
"to your XF86Config." >> ${PKGMESSAGE}
@${ECHO_CMD} "Then, restart the X server or do \"xset fp rehash\"."\
>> ${PKGMESSAGE}
@${ECHO_CMD} "*****************************************" >>${PKGMESSAGE}
do-install:
${MKDIR} ${PREFIX}/lib/X11/fonts/local/sgi
cd ${WRKSRC}; \
${INSTALL_DATA} *gz fonts.alias fonts.dir \
${PREFIX}/lib/X11/fonts/local/sgi
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>