blob: 6de36777f183ee0ca6701acad230ca59e33f461b (
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
|
# Ports collection Makefile for: liferea
# Date created: 28 August 2003
# Whom: Hye-Shik Chang <perky@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= liferea
PORTVERSION= 1.6.5
CATEGORIES= net gnome
MASTER_SITES= SF/${PORTNAME}/Liferea%20Stable/${PORTVERSION}
MAINTAINER= pav@FreeBSD.org
COMMENT= Simple RSS/RDF feed reader
LIB_DEPENDS= sqlite3.8:${PORTSDIR}/databases/sqlite3 \
webkit-1.0.13:${PORTSDIR}/www/webkit-gtk2
USE_GNOME= gnomeprefix gnomehack libglade2
USE_GMAKE= yes
USE_AUTOTOOLS= libtool:22
GNU_CONFIGURE= yes
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
MAKE_JOBS_SAFE= yes
MAN1= liferea.1
MANLANG= "" pl
GCONF_SCHEMAS= liferea.schemas
INSTALLS_ICONS= yes
OPTIONS= LIBNOTIFY "Enable libnotify support" on
.include <bsd.port.pre.mk>
.ifdef WITHOUT_LIBNOTIFY
CONFIGURE_ARGS+=--disable-libnotify
PLIST_SUB+= NOTIFY="@comment "
.else
LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify
PLIST_SUB+= NOTIFY=""
.endif
.include <bsd.port.post.mk>
|