blob: 4dfc95b7bc367825a90c470f32f60d5936c621c0 (
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
|
# $NetBSD: Makefile,v 1.18 2004/10/03 00:18:03 tv Exp $
#
DISTNAME= suck-4.3.2
PKGREVISION= 3
CATEGORIES= news
MASTER_SITES= http://www.sucknews.org/ \
${MASTER_SITE_SUNSITE:=system/news/transport/} \
ftp://tsx-11.mit.edu/pub/linux/sources/sbin/
MAINTAINER= drankin@bohemians.lexington.ky.us
HOMEPAGE= http://www.sucknews.org/
COMMENT= Feed a local news server without a dedicated newsfeed
GNU_CONFIGURE= yes
USE_BUILDLINK3= yes
.include "../../mk/bsd.prefs.mk"
# Include SOCKS firewall support
.if defined(USE_SOCKS) && (${USE_SOCKS} == 4 || ${USE_SOCKS} == 5)
.if ${USE_SOCKS} == 4
.include "../../net/socks4/buildlink3.mk"
.else
.include "../../net/socks5/buildlink3.mk"
.endif
.endif
post-patch:
${SED} -e 's|%%%HISTORY%%%|${LOCALBASE}/etc/news/history|g' \
${WRKSRC}/Makefile.in >${WRKSRC}/Makefile.tmp
@${MV} ${WRKSRC}/Makefile.tmp ${WRKSRC}/Makefile.in
post-install:
${INSTALL_DATA_DIR} ${LOCALBASE}/share/examples/suck
${CP} ${WRKSRC}/sample/* ${LOCALBASE}/share/examples/suck
${CHMOD} 644 ${LOCALBASE}/share/examples/suck/*
#.include "../../databases/gdbm/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|