blob: 8de08ade56156977720b18351a13d6298c1ceb21 (
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
58
59
60
61
62
63
64
65
66
67
68
69
|
# New ports collection makefile for: tint
# Date created: 21 July 2008
# Whom: dougb@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= tint2
PORTVERSION= 0.7.1
PORTREVISION= 2
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
MAINTAINER= dougb@FreeBSD.org
COMMENT= Lightweight freedesktop-compliant panel/taskbar/systray/clock
MAKE_JOBS_SAFE= yes
LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo
PROJECTHOST= tint2
USE_GNOME= pango glib20
USE_XORG= xinerama xrandr
USE_EFL= imlib2
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-battery
PLIST_FILES= bin/tint2 \
etc/xdg/tint2/tint2rc
PLIST_DIRS= etc/xdg/tint2
MAN1= tint2.1
PORTDOCS= AUTHORS ChangeLog README NEWS
post-patch:
@${CP} ${WRKSRC}/Makefile.in ${WRKSRC}/Makefile.in.presed
@${SED} -e "s# install-dist_docDATA##" \
${WRKSRC}/Makefile.in.presed > ${WRKSRC}/Makefile.in
@${CP} ${WRKSRC}/src/tint.c ${WRKSRC}/src/tint.c.presed
@${SED} -e "s#SIGCLD#SIGCHLD#g" ${WRKSRC}/src/tint.c.presed > \
${WRKSRC}/src/tint.c
pre-install:
${ECHO} "rmdir ${X11BASE}/etc/xdg 2>/dev/null || true" > \
${WRKDIR}/pkg-deinstall
PKGDEINSTALL= ${WRKDIR}/pkg-deinstall
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/tintrc* ${EXAMPLESDIR}
.for N in 1 2 3 4 5 6
PLIST_FILES+= ${EXAMPLESDIR_REL}/tintrc0${N}
.endfor
PLIST_DIRS+= ${EXAMPLESDIR_REL}
.endif
.include <bsd.port.mk>
|