blob: a401b20f5d2dde6b29c97ac5567eba375cbe6023 (
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
|
# New ports collection makefile for: superkaramba
# Date created: Sat Nov 8 20:23:31 CET 2003
# Whom: Markus Brueffer <brueffer@phoenix-systems.de>
#
# $FreeBSD$
PORTNAME= superkaramba
PORTVERSION= 0.35
PORTREVISION= 1
CATEGORIES= deskutils kde
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= netdragon
MAINTAINER= markus@FreeBSD.org
COMMENT= KDE tool that allows interactive eye-candy on the desktop
.if defined(WITH_XMMS)
LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms
.endif
.if defined(WITH_XMBMON)
RUN_DEPENDS= mbmon:${PORTSDIR}/sysutils/xmbmon
.endif
USE_KDEBASE_VER= 3
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_GNOME= glib12 gtk12
USE_PYTHON= yes
PYTHON_VERSION= python2.3
INSTALLS_SHLIB= yes
USE_REINPLACE= yes
CONFIGURE_ARGS+= --with-pythondir=${PYTHON_INCLUDEDIR}
pre-everything::
.if !defined(WITH_XMMS)
@${ECHO_MSG} "You can enable XMMS support by defining WITH_XMMS."
.endif
.if !defined(WITH_XMBMON)
@${ECHO_MSG} "You can enable mainboard monitor support by defining WITH_XMBMON."
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-O2 ||g; s|-lpthread|${PTHREAD_LIBS}|g' \
${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.mk>
|