blob: f73c98847691091af0946ee81dba8d7c693c327b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Created by: Olivier Duchateau
# $FreeBSD$
#
PORTNAME= greybird
PORTVERSION= 1.1.1
CATEGORIES= x11-themes xfce
PKGNAMESUFFIX= -theme
MAINTAINER= olivierd@FreeBSD.org
COMMENT= Gtk and xfwm4 themes for the Xfce Desktop
RUN_DEPENDS= gtk-murrine-engine>=0.98.1:${PORTSDIR}/x11-themes/gtk-murrine-engine \
gtk3-unico-engine>=1.0.1:${PORTSDIR}/x11-themes/gtk3-unico-engine
GH_ACCOUNT= shimmerproject
GH_PROJECT= Greybird
GH_TAGNAME= v${PORTVERSION}
GH_COMMIT= dc5c676
USE_GITHUB= yes
NO_BUILD= yes
OPTIONS_DEFINE= NOTIFYD
OPTIONS_DEFAULT= NOTIFYD
NOTIFYD_DESC= Install xfce4-notifyd theme
.include <bsd.port.options.mk>
post-extract:
# Remove Unity and Lightdm themes
.for file in lightdm-*-greeter.css unity.css
@${RM} ${WRKSRC}/gtk-3.0/apps/${file}
.endfor
post-patch:
# Remove .orig file
@${RM} ${WRKSRC}/gtk-3.0/*.orig
do-install:
@${MKDIR} ${PREFIX}/share/themes/Greybird
.for dir in gtk-2.0 gtk-3.0 xfwm4
@cd ${WRKSRC} && \
${COPYTREE_SHARE} ${dir} ${PREFIX}/share/themes/Greybird
.endfor
.if ${PORT_OPTIONS:MNOTIFYD}
@cd ${WRKSRC} && \
${COPYTREE_SHARE} xfce-notify-4.0/ \
${PREFIX}/share/themes/Greybird
PLIST_SUB+= NOTIFYD=""
.else
PLIST_SUB+= NOTIFYD="@comment "
.endif
.include <bsd.port.mk>
|