blob: 3aef70891dcf2f5a6acedddcc7fb1f95dd2de70b (
plain)
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
|
# $NetBSD: Makefile,v 1.38 2002/03/13 17:37:32 fredb Exp $
DISTNAME= knews-1.0b.1
PKGNAME= knews-1.0
PKGREVISION= 8
CATEGORIES= news x11
MASTER_SITES= http://www.matematik.su.se/~kjj/
MAINTAINER= tron@netbsd.org
HOMEPAGE= http://www.matematik.su.se/~kjj/
COMMENT= X11 newsreader with support for threading and MIME
DEPENDS+= faces>=1.6.1:../../mail/faces
DEPENDS+= jpeg-6b:../../graphics/jpeg
DEPENDS+= png>=1.2.1:../../graphics/png
CONFLICTS= knews-1.0b0
USE_IMAKE= YES
USE_XPM= YES
BUILD_DEFS+= KNEWS_DOMAIN_NAME KNEWS_DOMAIN_FILE
.include "../../mk/bsd.prefs.mk"
# Set KNEWS_DOMAIN_NAME to a string appended to the "From:" header or
# KNEWS_DOMAIN_FILE to a file from which the domain name will be read.
post-extract:
.if !defined(KNEWS_DOMAIN_FILE) && !defined(KNEWS_DOMAIN_NAME)
@${ECHO_MSG} "Type \"make KNEWS_DOMAIN_NAME=xyz\" to set the domain name."
.elif defined(KNEWS_DOMAIN_FILE)
@${ECHO_MSG} "Reading \"From:\" domain from file \"${KNEWS_DOMAIN_FILE}\"."
.else
@${ECHO_MSG} "Using \"${KNEWS_DOMAIN_NAME}\" as the \"From:\" domain name."
.endif
post-patch:
.if defined(KNEWS_DOMAIN_FILE)
${ECHO} >>${WRKSRC}/configure.h \
"#define DOMAIN_FILE \"${KNEWS_DOMAIN_FILE}\""
.elif defined(KNEWS_DOMAIN_NAME)
${ECHO} >>${WRKSRC}/configure.h \
"#define DOMAIN_NAME \"${KNEWS_DOMAIN_NAME}\""
.endif
.if defined(USE_INET6) && ${USE_INET6} == YES
${ECHO} >>${WRKSRC}/configure.h "#define USE_INET6 YES"
.endif
.include "../../mk/bsd.pkg.mk"
|