blob: cab6e61b4e03da1ea6ae0cd0aaaddb7bd4dbdb5b (
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
|
# $NetBSD: Makefile,v 1.23 2006/10/15 21:59:13 schwarz Exp $
#
DISTNAME= suck-4.3.2
PKGREVISION= 3
CATEGORIES= news
MASTER_SITES= http://home.comcast.net/~bobyetman/ \
${MASTER_SITE_SUNSITE:=system/news/transport/} \
ftp://tsx-11.mit.edu/pub/linux/sources/sbin/
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
.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 "../../mk/bsd.prefs.mk"
.if !empty(LOWER_OPSYS:Mirix5*)
# needs snprintf()
. include "../../pkgtools/libnbcompat/buildlink3.mk"
.endif
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|