mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
4440fb81d4
Due to a misspelling in GCC [1] (probably) the check for the ARMv6KZ platform used ARM_ARCH_6ZK instead of ARM_ARCH_6KZ. [1] https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html PR: 210027 Submitted by: Mikaël Urankar <mikael.urankar@gmail.com> Reviewed by: rakuco Differential Revision: https://reviews.freebsd.org/D8322
30 lines
735 B
Makefile
30 lines
735 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= phase
|
|
PORTVERSION= 0.8
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-themes
|
|
MASTER_SITES= http://kde-look.org/CONTENT/content-files/ \
|
|
http://mirror.amdmi3.ru/distfiles/
|
|
PKGNAMEPREFIX= qt4-style-
|
|
DISTNAME= 11402-phase-${PORTVERSION}
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Widget style for Qt 4 and KDE 4
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= tar:bzip2 qmake
|
|
USE_QT4= corelib gui moc_build
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
PLIST_FILES= ${QT_PLUGINDIR_REL}/styles/libphasestyle.so
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${QT_PLUGINDIR_REL}/styles/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/libphasestyle.so ${STAGEDIR}${PREFIX}/${QT_PLUGINDIR_REL}/styles/
|
|
|
|
.include <bsd.port.mk>
|