Package Details: projectx 0.91.0.08-5

Git Clone URL: https://aur.archlinux.org/projectx.git (read-only, click to copy)
Package Base: projectx
Description: DVB demux tool for repairing and analyzing different stream types
Upstream URL: http://sourceforge.net/projects/project-x
Licenses: GPL
Submitter: None
Maintainer: windy
Last Packager: windy
Votes: 57
Popularity: 0.000000
First Submitted: 2006-02-02 11:58 (UTC)
Last Updated: 2026-01-09 17:33 (UTC)

Dependencies (4)

Required by (1)

Sources (4)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

c-mauderer commented on 2013-05-28 18:54 (UTC)

I'm not sure why, but the PKGBUILD as it is generates an empty package for me. I had to change all lines with $startdir to similar ones with ${pkgdir} and ${srcdir}. You can find my changed PKGBUILD here: http://codepad.org/xtfCoyPV

<deleted-account> commented on 2012-12-26 09:34 (UTC)

The PKGBUILD assumes that build.sh is executable, which is not a given fact. Many people prefer to mount /tmp with noexec and tools like yaourt build in /tmp. This is one of the rare PKGBUILDs that fail because of this. You could just change "./build.sh" to "sh ./build.sh" to fix this.

<deleted-account> commented on 2012-07-08 09:29 (UTC)

@cyberpatrol: When I first tried to run the PKGBUILD, it stopped with an error because it couldn't find an 'unzip' command on my system. So it is definitely missing a build dependency. After I manually installed 'unzip' with pacman, the PKGBUILD did run successfully for me. Thus the mention.

<deleted-account> commented on 2012-07-03 10:45 (UTC)

@mikan: Zip packages are supported by bsdtar and unpacked automatically by makepkg. So no need for unzip in makedepends. Btw., unzip is for zip archives and gunzip for gzip archives (usually as gzipped tar archives, .tar.gz or .tgz), two totally different compression formats.

<deleted-account> commented on 2012-07-03 03:26 (UTC)

'unzip' should be added to the makedepends array; it's needed to unpack the source archive. I tried to use gunzip instead, but it wouldn't work.

Tomin commented on 2012-04-17 16:20 (UTC)

I had to change one line to get it building fine. ./build.sh sh ./build.sh

<deleted-account> commented on 2012-04-09 09:00 (UTC)

I also encountered the error described by BlueC: fatal error: jni.h: No such file or directory I found that right after installing java-environment the environment variable JAVA_HOME is not yet set for the current logged in user, which causes the error. A logout and login should fix this. Another issue I met was ./build.sh called from PKGBUILD line 38 not having executable permission. I fixed this by inserting "chmod +x ./build.sh" in PGKBUILD.

<deleted-account> commented on 2012-02-12 12:47 (UTC)

I managed to make it build by addding correct include paths in the PKGBUILD but that seems hacky (I've no idea how this should be done gracefully). More info: yaourt -Qs jdk extra/jdk7-openjdk 7.b147_2.0-6 Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - SDK extra/jre7-openjdk 7.b147_2.0-6 Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs -Full Java runtime environment - needed for executing Java GUI and Webstart programs extra/jre7-openjdk-headless 7.b147_2.0-6 Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - Minimal Java runtime - needed for executing non GUI Java programs

<deleted-account> commented on 2012-02-12 12:35 (UTC)

Build failing here: gcc -Wall -O2 -D_REENTRANT -DGNU_SOURCE -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -fPIC -I"/usr/lib/jvm/java-7-openjdk/jre/include" -I"/usr/lib/jvm/java-7-openjdk/jre/include/linux" -I./mmx -I./mmx -c net_sourceforge_dvb_projectx_video_IDCTFast.c net_sourceforge_dvb_projectx_video_IDCTFast.c:1:17: fatal error: jni.h: No such file or directory compilation terminated. make: *** [net_sourceforge_dvb_projectx_video_IDCTFast.o] Error 1 Seems the include paths are wrong... jni.h is actually in /usr/lib/jvm/java-7-openjdk/include/ Is this something wrong with the PKBUILD or my environment?