blob: d0c0bd50225ef3f7f39b5bd108755b277b92c115 (
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
|
# New ports collection makefile for: cursor-bluecurve-theme
# Date created: 29 May 2005
# Whom: Jean-Yves Lefort <jylefort@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= cursor-bluecurve-theme
COMMENT= The Bluecurve X cursor themes
# we only need gdk-pixbuf for building cursorthemegen, so do not USE_GNOME
BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gdk-pixbuf-2.0.pc:${PORTSDIR}/x11-toolkits/gtk20
MASTERDIR= ${.CURDIR}/../bluecurve-themes
BROKEN= Incorrect pkg-plist and unfetchable
DEPRECATED= "${BROKEN}"
EXPIRATION_DATE= 2007-11-02
PREFIX= ${X11BASE}
THEMES= Bluecurve Bluecurve-inverse LBluecurve LBluecurve-inverse
.for t in ${THEMES}
BC_HIERS+= ${WRKSRC}/art/cursor/${t}/${t}:${PREFIX}/lib/X11/icons/${t}/cursors
PLIST_DIRS+= lib/X11/icons/${t}/cursors lib/X11/icons/${t}
.endfor
post-patch:
.for t in ${THEMES}
@${REINPLACE_CMD} -e 's|dnd_|dnd-|' \
${WRKSRC}/art/cursor/${t}/${t}.cursortheme
.endfor
do-build:
cd ${WRKSRC}/art/cursor/cursorthemegen \
&& ${CC} ${CFLAGS} `pkg-config --cflags --libs gdk-pixbuf-2.0` \
-o ${WRKSRC}/cursorthemegen main.c themefile.c
.for t in ${THEMES}
cd ${WRKSRC}/art/cursor/${t} \
&& ${WRKSRC}/cursorthemegen ${t}.cursortheme ${t}
.endfor
.include "${MASTERDIR}/bsd.bluecurve.mk"
.include <bsd.port.pre.mk>
BUILD_DEPENDS+= xcursorgen:${X_CLIENTS_PORT} # needed by cursorthemegen
RUN_DEPENDS+= xcursorgen:${X_CLIENTS_PORT} # for the lib/X11/icons directory
.include <bsd.port.post.mk>
|