3c175cb569
Reviewed by: marcus
30 lines
647 B
Makefile
30 lines
647 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: sigslot
|
|
# Date created: Jul 30, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sigslot
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/./-/g}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ Signal/Slot Library
|
|
|
|
PLIST_FILES= include/sigslot.h
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
post-patch:
|
|
@(cd ${WRKSRC} ; ${MV} -f sigslot.h sigslot.h.orig ; \
|
|
${CAT} sigslot.h.orig | /usr/bin/col -b > sigslot.h)
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/sigslot.h ${PREFIX}/include
|
|
|
|
.include <bsd.port.mk>
|