blob: 49e1e62838c2102f12bb4ed1834c708be17c143d (
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
70
71
|
# New ports collection makefile for: xfmail
# Date created: 30 June 1996
# Whom: gena
#
# $FreeBSD$
#
PORTNAME= xfmail
PORTVERSION= 1.5.5
PORTREVISION= 4
CATEGORIES= mail
MASTER_SITES= ftp://xfmail.cfreeze.com/pub/xfmail/release/%SUBDIR%/ \
ftp://ftp.welcomes-you.com/pub/xfmail/release/%SUBDIR%/ \
ftp://xfmail.ufies.org/pub/xfmail/release/%SUBDIR%/
MASTER_SITE_SUBDIR= ${PORTVERSION}/source/
MAINTAINER= mikeh@FreeBSD.org
COMMENT= An X Window System application for receiving electronic mail
LIB_DEPENDS= forms.1:${PORTSDIR}/x11-toolkits/xforms \
gdbm.3:${PORTSDIR}/databases/gdbm
USE_BZIP2= yes
USE_GNOME= glib12
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_X_PREFIX= yes
USE_XPM= yes
INSTALLS_SHLIB= yes
USE_REINPLACE= yes
.include <bsd.port.pre.mk>
CONFIGURE_ARGS= --with-dbm-lib=gdbm
.if defined(WITH_ESOUND)
USE_GNOME+= esound
CONFIGURE_ARGS+= --with-esd-sound
.endif
.if defined(WITH_NAS)
LIB_DEPENDS+= audio.2:${PORTSDIR}/audio/nas
CONFIGURE_ARGS+= --with-nas-sound
.endif
.if defined(WITH_FACES)
LIB_DEPENDS+= compface:${PORTSDIR}/mail/faces
CONFIGURE_ARGS+= --with-faces
.endif
MAN1= xfmail.1
pre-everything::
@echo
.ifndef(WITH_ESOUND)
@echo "To build with esound support, restart make and define WITH_ESOUND"
.endif
.ifndef(WITH_NAS)
@echo "To build with Network Audio System support, restart make and define WITH_NAS"
.endif
.ifndef(WITH_FACES)
@echo "To build with faces support, restart make and define WITH_FACES"
.endif
@echo
post-patch:
@${REINPLACE_CMD} -e 's/libeditor/libxfeditor/g' \
${WRKSRC}/src/editor/Makefile.* \
${WRKSRC}/src/ui/Makefile.*
.include <bsd.port.post.mk>
|