blob: f49afe07d62c7c517e26108a15866546273f3026 (
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
|
# $NetBSD: Makefile,v 1.29 2010/01/17 12:02:37 wiz Exp $
#
DISTNAME= suck-4.3.2
PKGREVISION= 5
CATEGORIES= news
MASTER_SITES= ${MASTER_SITE_SUNSITE:=system/news/transport/}
MAINTAINER= drankin@bohemians.lexington.ky.us
HOMEPAGE= http://home.comcast.net/~bobyetman/
COMMENT= Feed a local news server without a dedicated newsfeed
GNU_CONFIGURE= yes
USE_FEATURES= snprintf
MAKE_JOBS_SAFE= no
.include "options.mk"
post-patch:
${SED} -e 's|%%%HISTORY%%%|${PREFIX}/etc/news/history|g' \
${WRKSRC}/Makefile.in >${WRKSRC}/Makefile.tmp
@${MV} ${WRKSRC}/Makefile.tmp ${WRKSRC}/Makefile.in
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/suck
${CP} ${WRKSRC}/sample/* ${PREFIX}/share/examples/suck
${CHMOD} 644 ${PREFIX}/share/examples/suck/*
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|