blob: f56d967425aa1c0dcd2a3140d71c63f835b7da66 (
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
|
# New ports collection makefile for: deskbar-applet
# Date created: 2005-07-13
# Whom: Michael Johnson <ahze@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/deskutils/deskbar-applet/Makefile,v 1.3 2005/10/31 08:24:28 marcus Exp $
#
PORTNAME= deskbar-applet
PORTVERSION= 0.8.4
CATEGORIES= deskutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= browserbookapp
MAINTAINER= gnome@FreeBSD.org
COMMENT= Gnome panel applet similar to Google's (Windows only) Deskbar
USE_X_PREFIX= yes
USE_GNOME= gnomeprefix gnomehack pygnomeextras
USE_PYTHON= yes
USE_GMAKE= yes
USE_AUTOTOOLS= libtool:15
USE_REINPLACE= yes
CONFIGURE_ARGS= --disable-beagle
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
GCONF_SCHEMAS= deskbar-applet.schemas
OPTIONS= EVO "Enable evolution support" on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_EVO)
USE_GNOME+= evolutiondataserver
PLIST_SUB+= EVO=""
.else
CONFIGURE_ARGS+=--disable-evolution
PLIST_SUB+= EVO="@comment "
.endif
post-patch:
@${FIND} ${WRKSRC}/deskbar -name "*.py" | ${XARGS} ${REINPLACE_CMD} -e \
's|/usr/share/applications|${X11BASE}/share/gnome/applications|g'
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g ; \
s|%%X11BASE%%|${X11BASE}|g' \
${WRKSRC}/deskbar/handler_utils.py
.include <bsd.port.post.mk>
|