freebsd-ports/x11-themes/gtk-aluminumalloy-volcanic-theme/Makefile
Baptiste Daroussin 4a4ec28d37 Convert all :U to :tu and :L to :tl
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)

bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore

Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier

With hat:	portmgr
2014-05-05 09:45:36 +00:00

46 lines
1.2 KiB
Makefile

# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
# $FreeBSD$
PORTNAME= aluminumalloy
PORTVERSION?= 2004.01.04
PORTREVISION?= 7
CATEGORIES= x11-themes gnome
MASTER_SITES= http://www.users.monornet.hu/linux/gtk2/oldies/
PKGNAMEPREFIX?= ${TYPE}-
PKGNAMESUFFIX?= -${FLAVOR}-theme
DISTNAME= aa_${FLAVOR}
MAINTAINER= danfe@FreeBSD.org
COMMENT= Port of Mac OS X theme Aluminum Alloy (${FLAVOR} flavor)
TYPE?= gtk
FLAVOR?= volcanic
THEME_NAME= AluminumAlloy-${FLAVOR:tu:C/^(.).*$/\1/g}${FLAVOR:C/^(.)//}
WRKSRC= ${WRKDIR}/${THEME_NAME}
USE_BZIP2= yes
NO_BUILD= yes
.if ${TYPE} == gtk
THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME}
PLIST_SUB+= GTK20="" METACITY="@comment "
USE_GNOME= gtk20
.else # metacity
THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME}
PLIST_SUB+= GTK20="@comment " METACITY=""
USE_GNOME= gnomehier
.endif
do-install:
@${MKDIR} ${STAGEDIR}${THEME_DIR}
.if ${TYPE} == "gtk"
cd ${WRKSRC} && ${FIND} gtk-2.0 -name '*[^~]' | \
${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR}
${INSTALL_DATA} ${WRKSRC}/index.theme ${STAGEDIR}${THEME_DIR}
.else
cd ${WRKSRC} && ${FIND} metacity-1 -name '*[^~]' | \
${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${THEME_DIR}
.endif
.include <bsd.port.mk>