Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Why is the media-video/projectx ebuild removed?
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Multimedia
View previous topic :: View next topic  
Author Message
cantrop
n00b
n00b


Joined: 11 Sep 2005
Posts: 29

PostPosted: Sun Sep 11, 2005 9:28 am    Post subject: Why is the media-video/projectx ebuild removed? Reply with quote

I emerged Version 0.82.00 some days ago. Today I wanted to update and its gone from portage!
I looked into CVS and there is no explanation, just "removed"

So why the hack this was removed (as it was working fine so far)?

Cantrop
Back to top
View user's profile Send private message
benesm1
n00b
n00b


Joined: 19 Aug 2004
Posts: 63
Location: Prague, Czech Republic

PostPosted: Fri Sep 30, 2005 9:34 pm    Post subject: the ebuild Reply with quote

Hello, I made the effort and obtained the ebuild plus one necessary file. If you want to, send me a PM with your mail address, I will send the files to you. Well on the other hand, I will post them here:

projectx-0.82.0.00.ebuild

Code:

# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/projectx/projectx-0.82.0.00.ebuild,v 1.8 2005/07/18 22:18:20 axxo Exp $

inherit eutils java-pkg

MY_PN="ProjectX"
MY_P="${MY_PN}_Source_${PV}"

DESCRIPTION="Converts, splits and demuxes DVB and other MPEG recordings"
HOMEPAGE="http://sourceforge.net/projects/project-x/"
SRC_URI="mirror://sourceforge/project-x/${MY_P}.zip"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc amd64"
RDEPEND=">=virtual/jre-1.4
        dev-java/commons-net
        =dev-java/jakarta-oro-2.0*"
DEPEND=">=virtual/jdk-1.4
        ${RDEPEND}
        app-arch/unzip
        jikes? ( dev-java/jikes )
        source? ( app-arch/zip )"

IUSE="doc jikes source"
S="${WORKDIR}/${MY_P}"

src_unpack() {
        unpack ${A}
        cd ${S}

        cp ${FILESDIR}/${PV}-build.xml ./build.xml

        cd lib
        rm -f *.jar
        java-pkg_jar-from jakarta-oro-2.0
        java-pkg_jar-from commons-net
}

src_compile() {
        local antflags="jar"
        use doc && antflags="${antflags} docs"
        use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
        ant ${antflags} || die "compilation failed"
}

src_install() {
        java-pkg_dojar dist/${PN}.jar

        # generate a startup script
        echo "#!/bin/sh" > ${PN}
        echo "\$(java-config -J) -Xms32m -Xmx512m -cp \$(java-config -p projectx,jakarta-oro-2.0) net.sourceforge.dvb.projectx.common.X \"\$@\"" >> ${PN}

        dobin ${PN}

        if use doc; then
                java-pkg_dohtml -r apidocs/
                dodoc *.txt
        fi
        use source && java-pkg_dosrc src/*
}


files/0.82.0.00-build.xml

Code:
<?xml version="1.0"?>
<project name="projectx" default="jar">
        <!-- some properties -->
        <property name="src.dir" value="src"/>
        <property name="build.dir" value="build"/>
        <property name="docs.dir" value="apidocs"/>
        <property name="dist.dir" value="dist"/>
        <property name="lib.dir" value="lib"/>
        <property name="resources.dir" value="resources"/>
        <property name="htmls.dir" value="htmls"/>
        <property name="jarfile" value="${dist.dir}/${ant.project.name}.jar"/>
        <property name="target.jdk" value="1.4"/>

        <!-- classpath -->
        <path id="refcp">
                <fileset dir="${lib.dir}">
                        <include name="**/*.jar"/>
                </fileset>
        </path>

        <!-- init -->
        <target name="init">
                <mkdir dir="${dist.dir}"/>
                <mkdir dir="${build.dir}"/>
                <mkdir dir="${docs.dir}"/>
        </target>

        <!-- compile everything -->
        <target name="compile" depends="init">
                <mkdir dir="${build.dir}"/>
                <javac srcdir="${src.dir}" destdir="${build.dir}" source="${target.jdk}" target="${target.jdk}" classpathref="refcp"/>

                <copy todir="${build.dir}">
                        <fileset dir="${resources.dir}"/>
                        <fileset file="${htmls.dir}"/>
                </copy>

                <copy todir="${build.dir}/${htmls.dir}">
                        <fileset dir="${htmls.dir}"/>
                </copy>
        </target>

        <!-- build the jar file -->
        <target name="jar" depends="compile">
                <jar jarfile="${jarfile}" basedir="${build.dir}">
                        <manifest>
                                <attribute name="Main-Class" value="net.sourceforge.dvb.projectx.common.X"/>
                        </manifest>
                </jar>
        </target>

        <!-- generate javadocs -->
        <target name="docs" depends="init">
                <javadoc sourcepath="${src.dir}" packagenames="net.*, edu.*" destdir="${docs.dir}" author="true" version="true" use="true" windowtitle="${ant.project.name} API"/>
        </target>

        <!-- clean up -->
        <target name="clean">
                <delete dir="${build.dir}"/>
                <delete dir="${docs.dir}"/>
                <delete dir="${dist.dir}"/>
                <delete dir="${lib.dir}"/>
        </target>

        <!-- zip the sources -->
        <target name="sourcezip">
                <zip destfile="${dist.dir}/${ant.project.name}-src.zip">
                        <zipfileset dir="${src.dir}"/>
                </zip>
        </target>

</project>
Back to top
View user's profile Send private message
badgers
l33t
l33t


Joined: 04 Sep 2003
Posts: 680
Location: Madison, WI

PostPosted: Tue Oct 25, 2005 4:42 pm    Post subject: Reply with quote

yes but why was it removed? it is on version .90 right now and I wanted to try it for mythburn
_________________
Abit KD7-S
Athlon XP2500+
166mHz FSB
512 Meg PC3200 Ram running at 166mHz
LiteOn DVD dual Layer burner(hdc)

2.6.17 Suspend2 kernel with no scsi support
Back to top
View user's profile Send private message
badgers
l33t
l33t


Joined: 04 Sep 2003
Posts: 680
Location: Madison, WI

PostPosted: Tue Oct 25, 2005 7:29 pm    Post subject: Reply with quote

 

Last edited by badgers on Tue Oct 25, 2005 7:50 pm; edited 1 time in total
Back to top
View user's profile Send private message
badgers
l33t
l33t


Joined: 04 Sep 2003
Posts: 680
Location: Madison, WI

PostPosted: Tue Oct 25, 2005 7:49 pm    Post subject: Reply with quote

OK this is what I have now:
myth_host projectx # emerge projectx
Calculating dependencies ...done!
>>> emerge (1 of 1) media-video/projectx-0.90.1 to /
>>> md5 files ;-) build.xml
>>> md5 files ;-) projectx-0.90.1.ebuild
>>> md5 files ;-) files/digest-projectx-0.90.1.00
>>> md5 files ;-) files/0.90.1-build.xml
>>> md5 files ;-) files/digest-projectx-0.90.1
>>> md5 src_uri ;-) ProjectX_Source_0.90.1.00.zip
>>> Unpacking source...
>>> Unpacking ProjectX_Source_0.90.1.00.zip to /var/tmp/portage/projectx-0.90.1/work
>>> Source unpacked.
Buildfile: build.xml

init:
[mkdir] Created dir: /var/tmp/portage/projectx-0.90.1/work/ProjectX_Source_0.90.1/dist
[mkdir] Created dir: /var/tmp/portage/projectx-0.90.1/work/ProjectX_Source_0.90.1/build
[mkdir] Created dir: /var/tmp/portage/projectx-0.90.1/work/ProjectX_Source_0.90.1/apidocs

compile:
[javac] Compiling 94 source files to /var/tmp/portage/projectx-0.90.1/work/ProjectX_Source_0.90.1/build
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -deprecation for details.
[copy] Copying 36 files to /var/tmp/portage/projectx-0.90.1/work/ProjectX_Source_0.90.1/build
[copy] Copied 1 empty directory to 1 empty directory under /var/tmp/portage/projectx-0.90.1/work/ProjectX_Source_0.90.1/build
[copy] Copying 9 files to /var/tmp/portage/projectx-0.90.1/work/ProjectX_Source_0.90.1/build/htmls

jar:
[jar] Building jar: /var/tmp/portage/projectx-0.90.1/work/ProjectX_Source_0.90.1/dist/projectx.jar

BUILD SUCCESSFUL
Total time: 5 seconds
>>> Test phase [not enabled]: media-video/projectx-0.90.1

>>> Install projectx-0.90.1 into /var/tmp/portage/projectx-0.90.1/image/ category media-video
>>> dobin: making projectx executable...
man:
prepallstrip:
strip: i686-pc-linux-gnu-strip --strip-unneeded
>>> Completed installing projectx-0.90.1 into /var/tmp/portage/projectx-0.90.1/image/

>>> Merging media-video/projectx-0.90.1 to /
--- /usr/
--- /usr/share/
>>> /usr/share/projectx/
>>> /usr/share/projectx/lib/
>>> /usr/share/projectx/lib/projectx.jar
>>> /usr/share/projectx/package.env
--- /usr/bin/
>>> /usr/bin/projectx
>>> Regenerating /etc/ld.so.cache...
>>> media-video/projectx-0.90.1 merged.
>>> Recording media-video/projectx in "world" favorites file...

>>> clean: No packages selected for removal.

>>> Auto-cleaning packages ...

>>> No outdated packages were found on your system.


* GNU info directory index is up-to-date.



*********************************************************
myth_host projectx # projectx --help
Exception in thread "main" java.lang.NoClassDefFoundError: net/sourceforge/dvb/projectx/common/X

the error at the end is what I don't get.
here is what the ebuild has now:
*********************************************************



myth_host projectx # cat projectx-0.90.1.ebuild
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/projectx/projectx-0.90.1.ebuild,v 1.8 2005/10/07 22:18:20 axxo Exp $

inherit eutils java-pkg

MY_PN="ProjectX"
MY_P="${MY_PN}_Source_${PV}"

DESCRIPTION="Converts, splits and demuxes DVB and other MPEG recordings"
HOMEPAGE="http://sourceforge.net/projects/project-x/"
SRC_URI="http://umn.dl.sourceforge.net/sourceforge/project-x/ProjectX_Source_0.90.1.00.zip"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc amd64"
RDEPEND=">=virtual/jre-1.4
dev-java/commons-net
=dev-java/jakarta-oro-2.0*"
DEPEND=">=virtual/jdk-1.4
${RDEPEND}
app-arch/unzip
jikes? ( dev-java/jikes )
source? ( app-arch/zip )"

IUSE="doc jikes source"
S="${WORKDIR}/${MY_P}"

src_unpack() {
unpack ${A}
cd ${S}

cp ${FILESDIR}/${PV}-build.xml ./build.xml

cd lib
rm -f *.jar
java-pkg_jar-from jakarta-oro-2.0
java-pkg_jar-from commons-net
}

src_compile() {
local antflags="jar"
use doc && antflags="${antflags} docs"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "compilation failed"

}

src_install() {
java-pkg_dojar dist/${PN}.jar

# generate a startup script
echo "#!/bin/sh" > ${PN}
echo "\$(java-config -J) -Xms32m -Xmx512m -cp \$(java-config -p projectx,jakarta-oro-2.0) net.sourceforge.dvb.projectx.common.X \"\$@\"" >> ${PN}

dobin ${PN}

if use doc; then
java-pkg_dohtml -r apidocs/
dodoc *.txt
fi
use source && java-pkg_dosrc src/*
}
myth_host projectx #
_________________
Abit KD7-S
Athlon XP2500+
166mHz FSB
512 Meg PC3200 Ram running at 166mHz
LiteOn DVD dual Layer burner(hdc)

2.6.17 Suspend2 kernel with no scsi support
Back to top
View user's profile Send private message
badgers
l33t
l33t


Joined: 04 Sep 2003
Posts: 680
Location: Madison, WI

PostPosted: Tue Oct 25, 2005 8:09 pm    Post subject: Reply with quote

is this a gui only tool?
I am doing this all via ssh
thanks
_________________
Abit KD7-S
Athlon XP2500+
166mHz FSB
512 Meg PC3200 Ram running at 166mHz
LiteOn DVD dual Layer burner(hdc)

2.6.17 Suspend2 kernel with no scsi support
Back to top
View user's profile Send private message
cantrop
n00b
n00b


Joined: 11 Sep 2005
Posts: 29

PostPosted: Wed Oct 26, 2005 6:24 am    Post subject: Reply with quote

This is not a GUI-only tool but the CL-part cannot work without loading functions from the GUI-part.
As far as I understand they are working on it to remove these dependencies.


Last edited by cantrop on Wed Oct 26, 2005 6:29 am; edited 1 time in total
Back to top
View user's profile Send private message
cantrop
n00b
n00b


Joined: 11 Sep 2005
Posts: 29

PostPosted: Wed Oct 26, 2005 6:29 am    Post subject: Reply with quote

What ebuild did you use for the 0.90.1 version? This one posted from "benesm1"?
If yes I may try this one too this evening (if I find some time, if not during the weekend)

cantrop
Back to top
View user's profile Send private message
badgers
l33t
l33t


Joined: 04 Sep 2003
Posts: 680
Location: Madison, WI

PostPosted: Wed Oct 26, 2005 12:58 pm    Post subject: Reply with quote

Here is what I have hacked together based on an ebuild that was posted up here for an .82 ebuild.
I changed the download site and kept the build.xml file the same. It doesn't work but maybe someone else can tell me what is wrong.
build.xml
Code:
<?xml version="1.0"?>
<project name="projectx" default="jar">
        <!-- some properties -->
        <property name="src.dir" value="src"/>
        <property name="build.dir" value="build"/>
        <property name="docs.dir" value="apidocs"/>
        <property name="dist.dir" value="dist"/>
        <property name="lib.dir" value="lib"/>
        <property name="resources.dir" value="resources"/>
        <property name="htmls.dir" value="htmls"/>
        <property name="jarfile" value="${dist.dir}/${ant.project.name}.jar"/>
        <property name="target.jdk" value="1.4"/>

        <!-- classpath -->
        <path id="refcp">
                <fileset dir="${lib.dir}">
                        <include name="**/*.jar"/>
                </fileset>
        </path>

        <!-- init -->
        <target name="init">
                <mkdir dir="${dist.dir}"/>
                <mkdir dir="${build.dir}"/>
                <mkdir dir="${docs.dir}"/>
        </target>

        <!-- compile everything -->
        <target name="compile" depends="init">
                <mkdir dir="${build.dir}"/>
                <javac srcdir="${src.dir}" destdir="${build.dir}" source="${target.jdk}" target="${target.jdk}" classpathref="refcp"/>

                <copy todir="${build.dir}">
                        <fileset dir="${resources.dir}"/>
                        <fileset file="${htmls.dir}"/>
                </copy>

                <copy todir="${build.dir}/${htmls.dir}">
                        <fileset dir="${htmls.dir}"/>
                </copy>
        </target>

        <!-- build the jar file -->
        <target name="jar" depends="compile">
                <jar jarfile="${jarfile}" basedir="${build.dir}">
                        <manifest>
                                <attribute name="Main-Class" value="net.sourceforge.dvb.projectx.common.X"/>
                        </manifest>
                </jar>
        </target>

        <!-- generate javadocs -->
        <target name="docs" depends="init">
                <javadoc sourcepath="${src.dir}" packagenames="net.*, edu.*" destdir="${docs.dir}" author="true" version="true" use="true" windowtitle="${ant.project.name} API"/>
        </target>

        <!-- clean up -->
        <target name="clean">
                <delete dir="${build.dir}"/>
                <delete dir="${docs.dir}"/>
                <delete dir="${dist.dir}"/>
                <delete dir="${lib.dir}"/>
        </target>

        <!-- zip the sources -->
        <target name="sourcezip">
                <zip destfile="${dist.dir}/${ant.project.name}-src.zip">
                        <zipfileset dir="${src.dir}"/>
                </zip>
        </target>

</project>


here is the hacked ebuild I copied from these forums:
Code:
 # cat projectx-0.90.1.00.ebuild
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/projectx/projectx-0.90.01.00.ebuild,v 1.8 2005/10/07 22:18:20 axxo Exp $

inherit eutils java-pkg

MY_PN="ProjectX"
MY_P="${MY_PN}_Source_${PV}"

DESCRIPTION="Converts, splits and demuxes DVB and other MPEG recordings"
HOMEPAGE="http://sourceforge.net/projects/project-x/"
SRC_URI="http://umn.dl.sourceforge.net/sourceforge/project-x/ProjectX_Source_0.90.1.00.zip"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc amd64"
RDEPEND=">=virtual/jre-1.4
        dev-java/commons-net
        =dev-java/jakarta-oro-2.0*"
DEPEND=">=virtual/jdk-1.4
        ${RDEPEND}
        app-arch/unzip
        jikes? ( dev-java/jikes )
        source? ( app-arch/zip )"

IUSE="doc jikes source"
S="${WORKDIR}/${MY_P}"

src_unpack() {
        unpack ${A}
        cd ${S}

cp ${FILESDIR}/${PV}-build.xml ./build.xml

        cd lib
        rm -f *.jar
        java-pkg_jar-from jakarta-oro-2.0
        java-pkg_jar-from commons-net
}

src_compile() {
        local antflags="jar"
        use doc && antflags="${antflags} docs"
        use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
        ant ${antflags} || die "compilation failed"

}

src_install() {
        java-pkg_dojar dist/${PN}.jar

        # generate a startup script
        echo "#!/bin/sh" > ${PN}
        echo "\$(java-config -J) -Xms32m -Xmx512m -cp \$(java-config -p projectx,jakarta-oro-2.0) net.sourceforge.dvb.projectx.common.X \"\$@\"" >> ${PN}

        dobin ${PN}

        if use doc; then
                java-pkg_dohtml -r apidocs/
                dodoc *.txt
        fi
        use source && java-pkg_dosrc src/*
}


I am using the following on my box:
myth_host build-info # java-config -v
java version "1.4.2-02"
Java(TM) 2 Runtime Environment, Standard Edition (build Blackdown-1.4.2-02)
Java HotSpot(TM) Client VM (build Blackdown-1.4.2-02, mixed mode)

HTH
_________________
Abit KD7-S
Athlon XP2500+
166mHz FSB
512 Meg PC3200 Ram running at 166mHz
LiteOn DVD dual Layer burner(hdc)

2.6.17 Suspend2 kernel with no scsi support
Back to top
View user's profile Send private message
badgers
l33t
l33t


Joined: 04 Sep 2003
Posts: 680
Location: Madison, WI

PostPosted: Wed Oct 26, 2005 1:17 pm    Post subject: Reply with quote

OK maybe I am a complete tool

Code:
myth_host build-info # /opt/blackdown-jdk-1.4.2.02/bin/java -jar ../work/ProjectX_Source_0.90.1/ProjectX.jar
Reading GUI-Switch...
Reading Help Switch...
Reading Config File Switch...
Start with GUI...
Loading last Config or Standard File...
ini load error: java.io.FileNotFoundException: /var/tmp/portage/projectx-0.90.1.00/build-info/X.ini (No such file or directory)
Loading Language -> 'en'

ProjectX 0.90.1.00/30.09.2005 TEST PROJECT ONLY , User: root


TERMS AND CONDITIONS:
(1) this is a free Java based demux utility.
(2) It is intended for educational purposes only, as a non-commercial test project.
(3) It may not be used otherwise. Most parts are only experimental.
(4) released under the terms of the GNU GPL.
(5) there is NO WARRANTY of any kind attached to this software.
(6) use it at your own risk and for your own education as it was meant.

Java Environment
Wednesday, October 26, 2005    8:10:06 AM CDT
java.version    1.4.2-02
java.vendor     Blackdown Java-Linux Team
java.home       /opt/blackdown-jdk-1.4.2.02/jre
java.vm.version Blackdown-1.4.2-02
java.vm.vendor  Blackdown Java-Linux Team
java.vm.name    Java HotSpot(TM) Client VM
java.class.vers 48.0
java.class.path ../work/ProjectX_Source_0.90.1/ProjectX.jar
os.name Linux
os.arch i386
os.version      2.6.13-gentoo-r3
ini.file        /var/tmp/portage/projectx-0.90.1.00/build-info/X.ini
ext.disk.access disabled or library not found
user.language   en
user.name       root
user.home       /root

quick CL usage:
Note: CL doesn't load the GUI components, except with switch [-gui]
<without options>  ...starts the GUI
switches and inputfiles can be in any order

options:
[-ini <path + inifile>] ..use that specified iniFile instead of the standard
[-dvx1] ..create a .d2v ProjectFile on demux
[-dvx2] ..create a .d2v ProjectFile + .ac3.wav (RIFF WAVE Header)
[-dvx3] ..create a .d2v ProjectFile + .mpa.wav (RIFF WAVE Header)
[-dvx4] ..create a .d2v ProjectFile + .ac3.wav + mpa.wav (RIFF WAVE Header)
[-out <path>] ..use that specified directory for output
[-name <filename>] ..use that specified filename for output
[-cut <file>] ..use that text based file as cutpoint list
[-id <tokens>] ..use only these (P)IDs, separated by comma ","
[-gui] ..display the GUI using all given CLI options
[-log] ..write the normal logfile
[-saveini] ..save changes made bei CLI in active .ini

Reading CLI Switches...
Loading Basic Classes...
Checking Commons-Net library access...
Loading AC3 frames...
Stopped! Can't start GUI, Classes not available...
myth_host build-info #

I think I just needed to launch it the long way. I guess I am a tool..
I moved it to /usr/bin/ProjectX.jar so that it is easer to find now.
_________________
Abit KD7-S
Athlon XP2500+
166mHz FSB
512 Meg PC3200 Ram running at 166mHz
LiteOn DVD dual Layer burner(hdc)

2.6.17 Suspend2 kernel with no scsi support
Back to top
View user's profile Send private message
cantrop
n00b
n00b


Joined: 11 Sep 2005
Posts: 29

PostPosted: Wed Oct 26, 2005 3:54 pm    Post subject: Reply with quote

Unfortunately this ebuild does not produce a working program at my computer. When I start projectx (either with the wrapper or with java -jar) I get this error message:
Exception in thread "main" java.lang.NoClassDefFoundError: net/sourceforge/dvb/projectx/common/X
I found that this is a common error and might have something to do with commons-net and jakarta-oro (which I have installed) but I couldn't solve it.

When I unzip the sources myself and compile via the include "build.sh" it works fine

Cantrop
Back to top
View user's profile Send private message
fragfutter
n00b
n00b


Joined: 11 Jul 2004
Posts: 26

PostPosted: Sat Nov 05, 2005 12:06 am    Post subject: Reply with quote

Its the wrong main class and is missing commons-net. try this

$(java-config -J) -Xms32m -Xmx512m -cp $(java-config -p projectx,jakarta-oro-2.0,commons-net) net.sourceforge.dvb.projectx.common.Start "$@"
Back to top
View user's profile Send private message
cantrop
n00b
n00b


Joined: 11 Sep 2005
Posts: 29

PostPosted: Sat Nov 05, 2005 1:34 pm    Post subject: Reply with quote

Thanks, that worked!

Looks like we have a working ebuild again. Who wants to open a bug at bugzilla?

cantrop
Back to top
View user's profile Send private message
badgers
l33t
l33t


Joined: 04 Sep 2003
Posts: 680
Location: Madison, WI

PostPosted: Tue Nov 08, 2005 2:43 pm    Post subject: Reply with quote

there is a new version out
http://sourceforge.net/project/showfiles.php?group_id=115063&package_id=124556&release_id=368736
_________________
Abit KD7-S
Athlon XP2500+
166mHz FSB
512 Meg PC3200 Ram running at 166mHz
LiteOn DVD dual Layer burner(hdc)

2.6.17 Suspend2 kernel with no scsi support
Back to top
View user's profile Send private message
damu
n00b
n00b


Joined: 23 Apr 2004
Posts: 14
Location: Finland

PostPosted: Tue Dec 13, 2005 5:20 am    Post subject: Reply with quote

I attached ebuild for 0.90.2.00 to bug 108993
Back to top
View user's profile Send private message
badgers
l33t
l33t


Joined: 04 Sep 2003
Posts: 680
Location: Madison, WI

PostPosted: Tue Dec 13, 2005 1:38 pm    Post subject: Reply with quote

thanks for the post.
I made an ebuild and tried to digest it but I got the following errors.
>>> Downloading ftp://gentoo.chem.wisc.edu/gentoo/distfiles/.zip
--07:35:50-- ftp://gentoo.chem.wisc.edu/gentoo/distfiles/.zip
=> `/usr/portage/distfiles/.zip'
Resolving gentoo.chem.wisc.edu... 128.104.70.13
Connecting to gentoo.chem.wisc.edu|128.104.70.13|:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... done. ==> PWD ... done.
==> TYPE I ... done. ==> CWD /gentoo/distfiles ... done.
==> PASV ... done. ==> RETR .zip ...
No such file `.zip'.

No digest file available and download failed.

>>> Downloading http://gentoo.chem.wisc.edu/gentoo/distfiles/.zip
--07:35:50-- http://gentoo.chem.wisc.edu/gentoo/distfiles/.zip
=> `/usr/portage/distfiles/.zip'
Resolving gentoo.chem.wisc.edu... 128.104.70.13
Connecting to gentoo.chem.wisc.edu|128.104.70.13|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:35:50 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://distfiles.gentoo.org/distfiles/.zip
--07:35:51-- http://distfiles.gentoo.org/distfiles/.zip
=> `/usr/portage/distfiles/.zip'
Resolving distfiles.gentoo.org... 64.50.236.52, 64.50.238.52, 216.165.129.135, ...
Connecting to distfiles.gentoo.org|64.50.236.52|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:35:51 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://www.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/.zip
--07:35:51-- http://www.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/.zip
=> `/usr/portage/distfiles/.zip'
Resolving www.ibiblio.org... 152.2.210.80
Connecting to www.ibiblio.org|152.2.210.80|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/.zip [following]
--07:35:51-- http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/.zip
=> `/usr/portage/distfiles/.zip'
Resolving distro.ibiblio.org... 152.2.210.109
Connecting to distro.ibiblio.org|152.2.210.109|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:35:51 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://ufpr.dl.sourceforge.net/sourceforge/project-x/.zip
--07:35:51-- http://ufpr.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving ufpr.dl.sourceforge.net... 200.17.202.1
Connecting to ufpr.dl.sourceforge.net|200.17.202.1|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=ufpr.dl.sourceforge.net [following]
--07:35:52-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=ufpr.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=ufpr.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:35:52 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://mesh.dl.sourceforge.net/sourceforge/project-x/.zip
--07:35:52-- http://mesh.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving mesh.dl.sourceforge.net... 213.203.218.122
Connecting to mesh.dl.sourceforge.net|213.203.218.122|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=mesh.dl.sourceforge.net [following]
--07:35:53-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=mesh.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=mesh.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:35:53 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://ovh.dl.sourceforge.net/sourceforge/project-x/.zip
--07:35:53-- http://ovh.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving ovh.dl.sourceforge.net... 213.186.33.91
Connecting to ovh.dl.sourceforge.net|213.186.33.91|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=ovh.dl.sourceforge.net [following]
--07:35:54-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=ovh.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=ovh.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:35:54 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://peterhost.dl.sourceforge.net/sourceforge/project-x/.zip
--07:35:54-- http://peterhost.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving peterhost.dl.sourceforge.net... 80.93.48.51
Connecting to peterhost.dl.sourceforge.net|80.93.48.51|:80... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failed_mirror=peterhost.dl.sourceforge.net [following]
--07:35:54-- http://prdownloads.sourceforge.net/project-x/.zip?download&failed_mirror=peterhost.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failed_mirror=peterhost.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:35:55 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://kent.dl.sourceforge.net/sourceforge/project-x/.zip
--07:35:55-- http://kent.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving kent.dl.sourceforge.net... 212.219.56.167
Connecting to kent.dl.sourceforge.net|212.219.56.167|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=kent.dl.sourceforge.net [following]
--07:35:55-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=kent.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=kent.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:35:55 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://keihanna.dl.sourceforge.net/sourceforge/project-x/.zip
--07:35:55-- http://keihanna.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving keihanna.dl.sourceforge.net... 210.146.64.4
Connecting to keihanna.dl.sourceforge.net|210.146.64.4|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=keihanna.dl.sourceforge.net [following]
--07:36:01-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=keihanna.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=keihanna.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:36:01 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://easynews.dl.sourceforge.net/sourceforge/project-x/.zip
--07:36:01-- http://easynews.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving easynews.dl.sourceforge.net... 69.16.168.245
Connecting to easynews.dl.sourceforge.net|69.16.168.245|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=easynews.dl.sourceforge.net [following]
--07:36:01-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=easynews.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=easynews.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:36:02 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://voxel.dl.sourceforge.net/sourceforge/project-x/.zip
--07:36:02-- http://voxel.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving voxel.dl.sourceforge.net... 69.9.164.2
Connecting to voxel.dl.sourceforge.net|69.9.164.2|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=voxel.dl.sourceforge.net [following]
--07:36:02-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=voxel.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=voxel.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:36:02 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://nchc.dl.sourceforge.net/sourceforge/project-x/.zip
--07:36:02-- http://nchc.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving nchc.dl.sourceforge.net... 211.79.61.10
Connecting to nchc.dl.sourceforge.net|211.79.61.10|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=sourceforge.nchc.org.tw [following]
--07:36:03-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=sourceforge.nchc.org.tw
=> `/usr/portage/distfiles/.zip?download&failedmirror=sourceforge.nchc.org.tw'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:36:03 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://citkit.dl.sourceforge.net/sourceforge/project-x/.zip
--07:36:03-- http://citkit.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving citkit.dl.sourceforge.net... 217.16.26.163
Connecting to citkit.dl.sourceforge.net|217.16.26.163|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=citkit.dl.sourceforge.net [following]
--07:36:24-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=citkit.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=citkit.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:36:24 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://jaist.dl.sourceforge.net/sourceforge/project-x/.zip
--07:36:24-- http://jaist.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving jaist.dl.sourceforge.net... 150.65.7.130
Connecting to jaist.dl.sourceforge.net|150.65.7.130|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=jaist.dl.sourceforge.net [following]
--07:36:25-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=jaist.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=jaist.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:36:25 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://puzzle.dl.sourceforge.net/sourceforge/project-x/.zip
--07:36:25-- http://puzzle.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving puzzle.dl.sourceforge.net... 195.141.101.221
Connecting to puzzle.dl.sourceforge.net|195.141.101.221|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=puzzle.dl.sourceforge.net [following]
--07:36:26-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=puzzle.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=puzzle.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:36:26 ERROR 404: Not Found.

No digest file available and download failed.

>>> Downloading http://optusnet.dl.sourceforge.net/sourceforge/project-x/.zip
--07:36:26-- http://optusnet.dl.sourceforge.net/sourceforge/project-x/.zip
=> `/usr/portage/distfiles/.zip'
Resolving optusnet.dl.sourceforge.net... 211.29.132.142
Connecting to optusnet.dl.sourceforge.net|211.29.132.142|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=optusnet.dl.sourceforge.net [following]
--07:36:26-- http://prdownloads.sourceforge.net/project-x/.zip?download&failedmirror=optusnet.dl.sourceforge.net
=> `/usr/portage/distfiles/.zip?download&failedmirror=optusnet.dl.sourceforge.net'
Resolving prdownloads.sourceforge.net... 66.35.250.217
Connecting to prdownloads.sourceforge.net|66.35.250.217|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
07:36:27 ERROR 404: Not Found.

No digest file available and download failed.



PS, does the new projectx change the way that mythburn works? I thought the command line arguments changed in the newest version compared with the 0.82 version I am running now.

I need to get this working. I can burn dvds with mythburn as long as I do not cut the commercials.
When I try to get commercials cut projectx fails.

thanks for your help and keeping up with this.
_________________
Abit KD7-S
Athlon XP2500+
166mHz FSB
512 Meg PC3200 Ram running at 166mHz
LiteOn DVD dual Layer burner(hdc)

2.6.17 Suspend2 kernel with no scsi support
Back to top
View user's profile Send private message
badgers
l33t
l33t


Joined: 04 Sep 2003
Posts: 680
Location: Madison, WI

PostPosted: Tue Dec 13, 2005 1:43 pm    Post subject: Reply with quote

I know this is bad but I changed this to get the digest to work.
SRC_URI="mirror://sourceforge/project-x/ProjectX_Source_0.90.2.00.zip"


now I get an error looking for the build.xml
is the build.xml from .82 good or do I need a different one?
_________________
Abit KD7-S
Athlon XP2500+
166mHz FSB
512 Meg PC3200 Ram running at 166mHz
LiteOn DVD dual Layer burner(hdc)

2.6.17 Suspend2 kernel with no scsi support
Back to top
View user's profile Send private message
badgers
l33t
l33t


Joined: 04 Sep 2003
Posts: 680
Location: Madison, WI

PostPosted: Tue Dec 13, 2005 2:00 pm    Post subject: Reply with quote

trying to use the old build.xml gives me this
myth_host work # emerge projectx
Calculating dependencies ...done!
>>> emerge (1 of 1) media-video/projectx-0.90.2.00 to /
>>> md5 files ;-) projectx-0.90.2.00.ebuild
>>> md5 files ;-) files/digest-projectx-0.90.2.00
>>> md5 files ;-) files/0.90.2.00-build.xml
>>> md5 src_uri ;-) ProjectX_Source_0.90.2.00.zip
>>> Unpacking source...
>>> Unpacking ProjectX_Source_0.90.2.00.zip to /var/tmp/portage/projectx-0.90.2.00/work
/usr/local/portage/media-video/projectx/projectx-0.90.2.00.ebuild: line 25: cd: lib: No such file or directory
/usr/local/portage/media-video/projectx/projectx-0.90.2.00.ebuild: line 27: java-pkg_jar-from: command not found
/usr/local/portage/media-video/projectx/projectx-0.90.2.00.ebuild: line 28: java-pkg_jar-from: command not found
>>> Source unpacked.
Buildfile: build.xml

init:
[mkdir] Created dir: /var/tmp/portage/projectx-0.90.2.00/work/dist
[mkdir] Created dir: /var/tmp/portage/projectx-0.90.2.00/work/build
[mkdir] Created dir: /var/tmp/portage/projectx-0.90.2.00/work/apidocs

compile:

BUILD FAILED
/var/tmp/portage/projectx-0.90.2.00/work/build.xml:31: srcdir "/var/tmp/portage/projectx-0.90.2.00/work/src" does not exist!

Total time: 0 seconds

!!! ERROR: media-video/projectx-0.90.2.00 failed.
!!! Function src_compile, Line 35, Exitcode 1
!!! compilation failed
!!! If you need support, post the topmost build error, NOT this status message.
_________________
Abit KD7-S
Athlon XP2500+
166mHz FSB
512 Meg PC3200 Ram running at 166mHz
LiteOn DVD dual Layer burner(hdc)

2.6.17 Suspend2 kernel with no scsi support
Back to top
View user's profile Send private message
damu
n00b
n00b


Joined: 23 Apr 2004
Posts: 14
Location: Finland

PostPosted: Tue Dec 13, 2005 6:38 pm    Post subject: Reply with quote

I did a rebuild with this ebuild and it worked fine (in AMD64). I used build.xml from older version. Here's archive containing projectx ebuild dir I used:
http://susku.pyhaselka.fi/damu/software/kmediafactory/projectx_ebuild.tar.bz2
Back to top
View user's profile Send private message
Tyler_Durden
Apprentice
Apprentice


Joined: 27 Jul 2004
Posts: 189
Location: Germany

PostPosted: Sun Jan 29, 2006 9:30 pm    Post subject: Reply with quote

BTW, projectx is in portage again! :D
_________________
Gentoo 17.1 x86_64
Intel Core i9-9900K
Asus MAXIMUS XI HERO
AMD Radeon 6800XT
64GB DDR4
Samsung SSD 970 EVO Plus 1TB
8x Seagate Archive (SATA-RAID 64TB)
Digital Devices Cine S2 V6.5 DVB Adapter
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Multimedia All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum