blob: c074175f7ea7b124666b58e97e69a015f9e363d6 (
plain) (
blame)
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
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= serveez
PORTVERSION= 0.2.1
CATEGORIES= net devel
MASTER_SITES= GNU
MAINTAINER= ports@FreeBSD.org
COMMENT= Server framework
LICENSE= GPLv3 # (or later)
LIB_DEPENDS= guile:${PORTSDIR}/lang/guile
USE_XZ= yes
USE_AUTOTOOLS= libtool
CONFIGURE_ARGS= --enable-libserveez-install
USE_LDCONFIG= yes
MAN1= serveez.1 serveez-config.1
INFO= serveez
NO_STAGE= yes
post-patch:
@${REINPLACE_CMD} -e \
'/^SUBDIRS/s|test||' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e \
's| -release .*||' ${WRKSRC}/src/libserveez/Makefile.in
@${REINPLACE_CMD} -e \
'/date -r/s|^|#|' ${WRKSRC}/src/irc-server/Makefile.in
@${ECHO_CMD} 'static char created[] = "2013-03-27 07:52 UTC";' \
> ${WRKSRC}/src/irc-server/timestamp.c
.include <bsd.port.mk>
|