blob: e45a05317345fa640fbb8848d7c338c524c0edde (
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
57
|
# Created by: Olivier Duchateau
# $FreeBSD$
PORTNAME= numix
PORTVERSION= 2.1
PORTREVISION= 1
CATEGORIES= x11-themes xfce
MASTER_SITES= GH GHC
PKGNAMESUFFIX= -theme
MAINTAINER= olivierd@FreeBSD.org
COMMENT= Gtk and Xfwm4 flat themes for the Xfce Desktop
LICENSE= GPLv3
RUN_DEPENDS= gtk-murrine-engine>=0.98.1:${PORTSDIR}/x11-themes/gtk-murrine-engine
GH_ACCOUNT= shimmerproject
GH_PROJECT= Numix
GH_TAGNAME= v${PORTVERSION}
GH_COMMIT= 7b744e7
USE_GITHUB= yes
NO_BUILD= yes
USE_GNOME= gtk30
OPTIONS_DEFINE= NOTIFYD
OPTIONS_DEFAULT= NOTIFYD
NOTIFYD_DESC= Install xfce4-notifyd theme
.include <bsd.port.options.mk>
post-extract:
# Remove Unity theme
@${RM} ${WRKSRC}/gtk-3.0/apps/unity.css
post-patch:
# Remove .orig files
@${RM} ${WRKSRC}/gtk-?.0/*.orig
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/share/themes/Numix
.for dir in gtk-2.0 gtk-3.0 xfwm4
@cd ${WRKSRC} && \
${COPYTREE_SHARE} ${dir} ${STAGEDIR}${PREFIX}/share/themes/Numix
.endfor
.if ${PORT_OPTIONS:MNOTIFYD}
@cd ${WRKSRC} && \
${COPYTREE_SHARE} xfce-notify-4.0 \
${STAGEDIR}${PREFIX}/share/themes/Numix
PLIST_SUB+= NOTIFYD=""
.else
PLIST_SUB+= NOTIFYD="@comment "
.endif
.include <bsd.port.mk>
|