diff options
author | sergei <sergei@FreeBSD.org> | 2003-10-23 12:00:57 +0000 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2003-10-23 12:00:57 +0000 |
commit | c0a64c66ea504c53e3a560cc3138e5a1f4bdd359 (patch) | |
tree | d86818bb035087d47961f1e939df783351b4c087 /audio/daaplib/Makefile | |
parent | c6a9935ae179d14bacb6c870bef871eb2163abb8 (diff) | |
download | FreeBSD-ports-c0a64c66ea504c53e3a560cc3138e5a1f4bdd359.zip FreeBSD-ports-c0a64c66ea504c53e3a560cc3138e5a1f4bdd359.tar.gz |
Add daaplib 0.1.1a, a C++ library for DAAP memory streams:
daaplib is a very tiny and portable C++ library which helps to read and
write low-level DAAP stream s in memory. the code is fairly
straightforward and can mirror the structure of the data fairly well.
PR: 58351
Submitted by: Lars Thegler <lars@thegler.dk>
Approved by: krion (implicit)
Diffstat (limited to 'audio/daaplib/Makefile')
-rw-r--r-- | audio/daaplib/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/audio/daaplib/Makefile b/audio/daaplib/Makefile new file mode 100644 index 0000000..8fd4948 --- /dev/null +++ b/audio/daaplib/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: daaplib +# Date created: 19 October 2003 +# Whom: Lars Thegler <lars@thegler.dk> +# +# $FreeBSD$ +# + +PORTNAME= daaplib +PORTVERSION= 0.1.1a +CATEGORIES= audio +MASTER_SITES= http://www.deleet.de/projekte/daap/daaplib/ +DISTNAME= ${PORTNAME}.${PORTVERSION} + +MAINTAINER= lars@thegler.dk +COMMENT= A C++ library for DAAP memory streams + +USE_ZIP= yes +USE_GMAKE= yes +USE_REINPLACE= yes +WRKSRC= ${WRKDIR}/${DISTNAME}/daaplib/src +MAKEFILE= makefile +ALL_TARGET= + +post-patch: + @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' ${WRKSRC}/${MAKEFILE} + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/README ${DOCSDIR} +.endif + +.include <bsd.port.mk> |