blob: 611e5cb7d63fa05419aad717d0ddf5fd90859f9a (
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: logjam2
# Date created: 30 Oct 2002
# Whom: michael johnson <ahze@rgv.net>
#
# $FreeBSD$
#
PORTNAME= logjam2
PORTVERSION= 4.3.2
CATEGORIES= deskutils
MASTER_SITES= http://logjam.danga.com/download/
DISTNAME= logjam-${PORTVERSION}
MAINTAINER= mike.patterson@unb.ca
COMMENT= A GTK2 interface to livejournals, ie www.livejournal.com
LIB_DEPENDS= curl.2:${PORTSDIR}/ftp/curl
MAN1= logjam.1
USE_BZIP2= yes
USE_GMAKE= yes
USE_X_PREFIX= yes
GNU_CONFIGURE= yes
USE_GNOME= gnomehack \
gnomeprefix \
gtk20 \
libxml2 \
intlhack
CONFIGURE_ARGS= --program-transform-name="s/$$//"
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
.if defined(WITH_GTKSPELL)
LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell2
.else
CONFIGURE_ARGS+= --without-gtkspell
.endif
.if defined(WITH_XMMS)
LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms
PLIST_SUB+= WITH_XMMS=""
.else
PLIST_SUB+= WITH_XMMS="@comment "
CONFIGURE_ARGS+= --without-xmms
.endif
.if defined(WITH_GTKHTML)
USE_GNOME+= gtkhtml3
.else
CONFIGURE_ARGS+= --without-gtkhtml
.endif
.if defined(WITH_RSVG)
USE_GNOME+= librsvg2
.else
CONFIGURE_ARGS+= --without-librsvg
.endif
pre-everything::
@${ECHO_MSG} ""
@${ECHO_MSG} "logjam has the following tunable option(s):"
@${ECHO_MSG} " WITH_GTKSPELL Enable spell checking"
@${ECHO_MSG} " WITH_XMMS Enable XMMS music detection"
@${ECHO_MSG} " WITH_GTKHTML Enable GTK HTML3 preview"
@${ECHO_MSG} " WITH_RSVG Enable librsvg"
@${ECHO_MSG} ""
.include <bsd.port.mk>
|