1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

Project X - a free Java based demux utility

Copyright (C) 2001-2004 dvb.matt

European digital radio & television uses the DVB standard to broadcast its
data. Project X gives you a look behind the transmissions and tries its best
to handle & repair many stream types and shows what went wrong on reception.

It is intended for educational purposes only, as a non-commercial test project.
It may not be used otherwise. Most parts are only experimental.

WWW: http://sourceforge.net/projects/project-x

PR:		79769
Submitted by:	Juergen Lock <nox@jelal.kn-bremen.de>
This commit is contained in:
Herve Quiroz 2005-04-21 12:08:11 +00:00
parent fd44365e7f
commit 9bb19e2c6b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=133840
6 changed files with 91 additions and 0 deletions

View File

@ -131,6 +131,7 @@
SUBDIR += p5-Video-OpenQuicktime
SUBDIR += pitivi
SUBDIR += ppm2fli
SUBDIR += projectx
SUBDIR += pvr250
SUBDIR += py-gstreamer
SUBDIR += qdvdauthor

View File

@ -0,0 +1,45 @@
# New ports collection makefile for: projectx
# Date created: Sun Jul 18 15:07:26 CEST 2004
# Whom: Juergen Lock <nox@jelal.kn-bremen.de>
#
# $FreeBSD$
#
PORTNAME= projectx
PORTVERSION= 0.82.1.00
CATEGORIES= multimedia java
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= project-x
DISTNAME= ProjectX_Source_${PORTVERSION}
MAINTAINER= nox@jelal.kn-bremen.de
COMMENT= DVB (mpeg) cutting/demux tool
RUN_DEPENDS= java:${PORTSDIR}/java/javavmwrapper
USE_ZIP= yes
USE_JAVA= yes
JAVA_VERSION= 1.3+
USE_JIKES= no
SUB_FILES= project-x.sh
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
do-configure:
${TR} -d '\015' <${WRKSRC}/build.sh | ${SED} -e "s|^javac|${JAVAC}|" >${WRKSRC}/build-fbsd.sh
do-build:
cd ${WRKSRC} && ${MKDIR} build && ${SH} build-fbsd.sh
do-install:
${MKDIR} ${DATADIR}/lib
${INSTALL_DATA} ${WRKSRC}/ProjectX.jar ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/lib/commons-net-1.3.0.jar ${DATADIR}/lib
${INSTALL_DATA} ${WRKSRC}/lib/jakarta-oro-2.0.8.jar ${DATADIR}/lib
${MKDIR} ${DATADIR}/htmls/images ${DATADIR}/htmls/de
${INSTALL_DATA} ${WRKSRC}/htmls/*.html ${DATADIR}/htmls
${INSTALL_DATA} ${WRKSRC}/htmls/de/*.html ${DATADIR}/htmls/de
${INSTALL_DATA} ${WRKSRC}/htmls/images/* ${DATADIR}/htmls/images
${INSTALL_SCRIPT} ${WRKDIR}/project-x.sh ${PREFIX}/bin/project-x
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
MD5 (ProjectX_Source_0.82.1.00.zip) = 95b87eafb547ff75df75d07b31f7355d
SIZE (ProjectX_Source_0.82.1.00.zip) = 700265

View File

@ -0,0 +1,13 @@
#!/bin/sh
#
# $FreeBSD$
case "$#" in
0)
mkdir -p "${HOME}/.projectx"
cd "${HOME}/.projectx"
ln -sf %%PREFIX%%/share/projectx/htmls .
;;
esac
JAVA_VERSION="%%JAVA_VERSION%%" "%%LOCALBASE%%/bin/java" -jar "%%DATADIR%%/ProjectX.jar" "$@"

View File

@ -0,0 +1,11 @@
Project X - a free Java based demux utility
Copyright (C) 2001-2004 dvb.matt
European digital radio & television uses the DVB standard to broadcast its
data. Project X gives you a look behind the transmissions and tries its best
to handle & repair many stream types and shows what went wrong on reception.
It is intended for educational purposes only, as a non-commercial test project.
It may not be used otherwise. Most parts are only experimental.
WWW: http://sourceforge.net/projects/project-x

View File

@ -0,0 +1,19 @@
@comment $FreeBSD$
bin/project-x
%%DATADIR%%/htmls/cli.html
%%DATADIR%%/htmls/faq.html
%%DATADIR%%/htmls/index.html
%%DATADIR%%/htmls/images/right.gif
%%DATADIR%%/htmls/images/up.gif
%%DATADIR%%/htmls/images/px.gif
%%DATADIR%%/htmls/de/cli.html
%%DATADIR%%/htmls/de/faq.html
%%DATADIR%%/htmls/de/index.html
%%DATADIR%%/lib/commons-net-1.3.0.jar
%%DATADIR%%/lib/jakarta-oro-2.0.8.jar
%%DATADIR%%/ProjectX.jar
@dirrm %%DATADIR%%/lib
@dirrm %%DATADIR%%/htmls/images
@dirrm %%DATADIR%%/htmls/de
@dirrm %%DATADIR%%/htmls
@dirrm %%DATADIR%%