diff options
Diffstat (limited to 'net/fsplib/Makefile')
-rw-r--r-- | net/fsplib/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net/fsplib/Makefile b/net/fsplib/Makefile new file mode 100644 index 000000000000..187c701d10f9 --- /dev/null +++ b/net/fsplib/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: fsplib +# Date created: 15 Jan 2005 +# Whom: X +# +# $FreeBSD$ + +PORTNAME= fsplib +PORTVERSION= 0.6 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= fsp + +MAINTAINER= ports@FreeBSD.org +COMMENT= Library implementing FSP protocol + +BUILD_DEPENDS= scons:${PORTSDIR}/devel/scons + +PLIST_FILES= include/fsplib.h lib/libfsp.a +NO_WRKSUBDIR= yes + +do-build: + @cd ${WRKSRC} && scons prefix=${PREFIX} + +do-install: + @cd ${WRKSRC} && scons prefix=${PREFIX} install + ${FIND} ${PREFIX}/include/ -name .sconsign -exec ${RM} {} \; + ${FIND} ${PREFIX}/lib/ -name .sconsign -exec ${RM} {} \; + +.include <bsd.port.mk> |