blob: 824df485a323eb31c2d04a6c71f1879575cbafd9 (
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
|
# Ports collection makefile for: ekg
# Date created: 24 March 2003
# Whom: Jacek Pelka <jacek@combit.com.pl>
#
# $FreeBSD$
PORTNAME= ekg
PORTVERSION= 1.7
PORTEPOCH= 2
CATEGORIES= polish net-im
MASTER_SITES= http://ekg.chmurka.net/
MAINTAINER= alex@bsdguru.org
COMMENT= Text-mode Gadu-Gadu client
LIB_DEPENDS= execinfo.1:${PORTSDIR}/devel/libexecinfo \
gadu.3:${PORTSDIR}/polish/libgadu
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_GNOME= gnomehack pkgconfig
CONFIGURE_ARGS+= --disable-shared \
--disable-static \
--enable-dynamic \
--without-openssl \
--disable-libgadu-openssl \
--without-libungif \
--without-libjpeg
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib -lexecinfo"
OPTIONS= ASPELL "Build with ASPELL support" off
.include <bsd.port.pre.mk>
.if defined(WITH_ASPELL)
LIB_DEPENDS+= aspell.16:${PORTSDIR}/polish/aspell
CONFIGURE_ARGS+= --enable-aspell
.endif
USE_LDCONFIG= yes
MAN1= ekg.1
MANLANG= "" pl
MANCOMPRESSED= no
post-install:
${STRIP_CMD} ${PREFIX}/bin/ekg
.include <bsd.port.post.mk>
|