mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
da12e6723d
While here trim headers Convert some USE_GNOME= gnomehack -> USES= pathfix
36 lines
776 B
Makefile
36 lines
776 B
Makefile
# Created by: Dennis Herrmann <adox@mcx2.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gstfs
|
|
PORTVERSION= 0.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://bobcopeland.com/gstfs/releases/ \
|
|
http://mirror.mcx2.org/
|
|
PKGNAMEPREFIX= fusefs-
|
|
|
|
MAINTAINER= dhn@FreeBSD.org
|
|
COMMENT= On-demand, transcoding filesystem (using GStreamer pipeline)
|
|
|
|
USES= fuse
|
|
USE_GNOME= pkgconfig
|
|
USE_GSTREAMER= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
PORTDOCS= README
|
|
PORTEXAMPLES= ogg2mp3.sh mp32wav.sh
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${PORTEXAMPLES:S,^,${WRKSRC}/,} ${EXAMPLESDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|