mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
40 lines
743 B
Makefile
40 lines
743 B
Makefile
# New ports collection makefile for: legacy locale data for FreeBSD 6+
|
||
# Date created: 13 Jun 2005
|
||
# Whom: sf
|
||
#
|
||
# $FreeBSD$
|
||
#
|
||
|
||
PORTNAME= localedata
|
||
PORTVERSION= 5.4
|
||
CATEGORIES= misc
|
||
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||
MASTER_SITE_SUBDIR= sf
|
||
|
||
MAINTAINER= sf@FreeBSD.org
|
||
COMMENT= Legacy locale data for FreeBSD 6+
|
||
|
||
USE_BZIP2= yes
|
||
NO_BUILD= yes
|
||
|
||
ONLY_FOR_ARCHS= amd64 alpha ia64 i386 pc98 sparc64
|
||
|
||
TARGET_DIR= ${PREFIX}/share/compat
|
||
|
||
.include <bsd.port.pre.mk>
|
||
|
||
.if ${OSVERSION} < 600016
|
||
IGNORE= is not required for your OS
|
||
.endif
|
||
|
||
WRKSRC= ${WRKDIR}/${ARCH}
|
||
|
||
post-extract:
|
||
cd ${WRKDIR}/ia64; ${MV} usr/share/locale .
|
||
|
||
do-install:
|
||
${MKDIR} ${TARGET_DIR}
|
||
${PAX} -rw -s${WRKSRC} ${WRKSRC}/locale ${TARGET_DIR}
|
||
|
||
.include <bsd.port.post.mk>
|