blob: 2b444356c758362fce81dfb4a55c60f5fb085f75 (
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
|
PORTNAME= numix-gtk-theme
PORTVERSION= 2.6.7
PORTREVISION= 1
CATEGORIES= x11-themes xfce
MAINTAINER= ports@FreeBSD.org
COMMENT= Gtk flat themes
LICENSE= GPLv3
BUILD_DEPENDS= rubygem-sass>=3.4:textproc/rubygem-sass
RUN_DEPENDS= gtk-murrine-engine>=0.98.2:x11-themes/gtk-murrine-engine
USES= gmake gnome
USE_GITHUB= yes
GH_ACCOUNT= numixproject
USE_GNOME= glib20 gdkpixbuf2
INSTALL_TARGET= # empty
NO_ARCH= yes
OPTIONS_DEFINE= NOTIFYD
OPTIONS_DEFAULT= NOTIFYD
OPTIONS_SUB= yes
NOTIFYD_DESC= Install xfce4-notifyd theme
post-patch:
# Remove .orig files
@${RM} ${WRKSRC}/src/gtk-?.0/*.orig
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/share/themes/Numix
.for dir in assets gtk-2.0 gtk-3.0 gtk-3.20 metacity-1 openbox-3 xfwm4
@cd ${WRKSRC}/src && \
${COPYTREE_SHARE} ${dir} \
${STAGEDIR}${PREFIX}/share/themes/Numix \
"! -name thumbnail.png ! -name all-assets* ! -path *scss*"
.endfor
${INSTALL_DATA} ${WRKSRC}/src/index.theme \
${STAGEDIR}${PREFIX}/share/themes/Numix
do-install-NOTIFYD-on:
@cd ${WRKSRC}/src && \
${COPYTREE_SHARE} xfce-notify-4.0 \
${STAGEDIR}${PREFIX}/share/themes/Numix
.include <bsd.port.mk>
|