3eccd9c351
Enscribe creates digital audio watermark images from photographic images. These images can only be seen using a third party frequency vs time display, such as Baudline (audio/baudline). Images are still visible even after such audio mangling techniques as MP3/Ogg compression, reverb, chorus, etc. Heavy EQ and flange can stripe out vertical sections, but they can also ruin an otherwise good song as well. PR: ports/69076 Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
39 lines
994 B
Makefile
39 lines
994 B
Makefile
# New ports collection makefile for: enscribe
|
|
# Date created: 15 Jul 2004
|
|
# Whom: Jean-Yves Lefort <jylefort@brutele.be>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= enscribe
|
|
PORTVERSION= 0.0.3
|
|
CATEGORIES= audio graphics
|
|
MASTER_SITES= http://jbd.zayda.net/enscribe/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= jylefort@brutele.be
|
|
COMMENT= Create digital audio watermark images from photographic images
|
|
|
|
LIB_DEPENDS= gd:${PORTSDIR}/graphics/gd \
|
|
png:${PORTSDIR}/graphics/png \
|
|
jpeg:${PORTSDIR}/graphics/jpeg \
|
|
freetype:${PORTSDIR}/print/freetype2 \
|
|
sndfile:${PORTSDIR}/audio/libsndfile
|
|
|
|
do-build:
|
|
cd ${BUILD_WRKSRC}; ${CC} ${CFLAGS} \
|
|
`pkg-config --cflags --libs sndfile freetype2` \
|
|
-I${LOCALBASE}/include -L${LOCALBASE}/lib \
|
|
-lgd -lpng -ljpeg -lm -lz \
|
|
-o enscribe enscribe.c
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/enscribe ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|