blob: c12551c3fe553c3d94167832c77cc6b5df8482fa (
plain)
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
|
# Created by: Olivier Duchateau
# $FreeBSD$
PORTNAME= greybird
PORTVERSION= 1.6.2
DISTVERSIONPREFIX= v
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:x11-themes/gtk-murrine-engine
GH_ACCOUNT= shimmerproject
GH_PROJECT= Greybird
USE_GITHUB= yes
NO_BUILD= yes
OPTIONS_DEFINE= NOTIFYD
OPTIONS_DEFAULT= NOTIFYD
NOTIFYD_DESC= Install xfce4-notifyd theme
.include <bsd.port.options.mk>
post-patch:
# Remove .orig file
@${RM} ${WRKSRC}/gtk-?.0/*.orig
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/share/themes/Greybird
.for dir in gtk-2.0 gtk-3.0 xfwm4
@cd ${WRKSRC} && \
${COPYTREE_SHARE} ${dir} ${STAGEDIR}${PREFIX}/share/themes/Greybird
.endfor
.if ${PORT_OPTIONS:MNOTIFYD}
@cd ${WRKSRC} && \
${COPYTREE_SHARE} xfce-notify-4.0/ \
${STAGEDIR}${PREFIX}/share/themes/Greybird
PLIST_SUB+= NOTIFYD=""
.else
PLIST_SUB+= NOTIFYD="@comment "
.endif
.include <bsd.port.mk>
|