forked from opnsense/ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
38 lines (32 loc) · 903 Bytes
/
Makefile
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
PORTNAME= milk
PORTVERSION= 2.1
PORTREVISION= 9
CATEGORIES= x11-themes gnome
MASTER_SITES= http://freebsd.nsu.ru/distfiles/ LOCAL/danfe
PKGNAMEPREFIX?= ${TYPE}-
PKGNAMESUFFIX= -theme
DISTNAME= Milk-${PORTVERSION}
MAINTAINER= [email protected]
COMMENT= Port of Milk, Mac OS X theme
USES= tar:bzip2
NO_BUILD= yes
TYPE?= gtk
THEME_NAME= Milk
.if ${TYPE} == gtk
THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME}
PLIST_SUB+= GTK20="" METACITY="@comment "
USES+= gnome
USE_GNOME= gtk20
.else # metacity
THEME_DIR= ${PREFIX}/share/themes/${THEME_NAME}
PLIST_SUB+= GTK20="@comment " METACITY=""
.endif
do-install:
@${MKDIR} ${STAGEDIR}${THEME_DIR}
${INSTALL_DATA} ${WRKSRC}/index.theme ${STAGEDIR}${THEME_DIR}
.if ${TYPE} == gtk
cd ${WRKSRC} && ${COPYTREE_SHARE} gtk-2.0 ${STAGEDIR}${THEME_DIR}
.else
cd ${WRKSRC} && ${COPYTREE_SHARE} metacity-1 ${STAGEDIR}${THEME_DIR}
.endif
.include <bsd.port.mk>