mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
5c3471f6f0
Qt4 ports have been updated from 4.4.1 to 4.4.3. With this update new port misc/qt4-l10n has been added. This port provides localisation support for Qt4 developers tools designer, linguist, etc. Approved by: miwi (mentor)
31 lines
674 B
Makefile
31 lines
674 B
Makefile
# New ports collection makefile for: qt4-l10n
|
|
# Date created: 2008-12-13
|
|
# Whom: Max Brazhnikov <makc@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= l10n
|
|
PORTVERSION= ${QT4_VERSION}
|
|
PORTREVISION= 0
|
|
CATEGORIES?= misc
|
|
MASTER_SITES= ${MASTER_SITE_QT}
|
|
PKGNAMEPREFIX= qt4-
|
|
DISTNAME= qt-x11-opensource-src-${PORTVERSION}
|
|
DIST_SUBDIR= KDE
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt translations messages
|
|
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= #dummy
|
|
NO_BUILD= yes
|
|
|
|
EXTRACT_AFTER_ARGS+= | ${TAR} -xf - --include '${DISTNAME}/translations'
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/share/qt4/translations
|
|
${INSTALL_DATA} ${WRKSRC}/translations/*.qm ${PREFIX}/share/qt4/translations
|
|
|
|
.include <bsd.port.mk>
|