blob: 256fcd49fd2555f60ec777f739268a73dc1a88c9 (
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
|
# Created by: Zhihao Yuan <lichray@gmail.com>
# $FreeBSD$
PORTNAME= httpsqs
PORTVERSION= 1.7
PORTREVISION= 3
CATEGORIES= www devel
MASTER_SITES= GOOGLE_CODE
MAINTAINER= lichray@gmail.com
COMMENT= Simple Queue Service based on HTTP GET/POST protocol
LICENSE= BSD3CLAUSE
BROKEN= Unfetchable (google code has gone away)
DEPRECATED= Unfetchable for more than six months (google code has gone away)
EXPIRATION_DATE= 2017-04-30
LIB_DEPENDS+= libtokyocabinet.so:databases/tokyocabinet \
libevent.so:devel/libevent
USES= pkgconfig
PLIST_FILES= bin/${PORTNAME}
post-patch:
${CP} ${PATCHDIR}/Makefile ${WRKSRC}
@${REINPLACE_CMD} -e 's|{ 0 }|"${PREFIX}/bin/${PORTNAME}"|' \
${WRKSRC}/httpsqs.c
post-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>
|