You are not logged in.
Hello, I tried to compile aqsis, but all i got were some errors ![]()
Please can someone build the packages... ![]()
Offline
maybe if you post the error someone can help
and about k3b ... i'll update it, when i find some time on my machine to compile it, no need to post also in the forum, if a pkg exist and is flagged out of date (because the maintainer is then for sure informed :-) )
The impossible missions are the only ones which succeed.
Offline
The first error I got was "errno not declared" , so i includet errno.h.
now "m_Count" is undeclared and i don't know what to do now
and it's k-3D not k3b ![]()
Offline
The first error I got was "errno not declared" , so i includet errno.h.
now "m_Count" is undeclared and i don't know what to do now
hmm ... maybe a dependence missing - what does this aqsis need?
and it's k-3D not k3b
oh.. sorry, i messed with these 2 letters
seems that this k-3d is similar to blender
The impossible missions are the only ones which succeed.
Offline
Offline
totally forgotten:
# $Id: $
# Contributor: damir <damir@archlinux.org>
# Maintainer:
pkgname=k3d
pkgver=0.4.4.0
pkgrel=1
depends=('gtk' 'imagemagick' 'libsigc++2.0')
pkgdesc="3D modeling and animation system"
source=(http://dl.sourceforge.net/sourceforge/k3d/$pkgname-$pkgver.tgz)
url="http://k3d.sourceforge.net/"
build() {
cd $startdir/src/$pkgname-$pkgver
#aclocal
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}The impossible missions are the only ones which succeed.
Offline
i cannot download it .. it says wrong mirror :-(
==> Downloading aqsis-1.0.0.tar.gz
--13:18:33-- http://dl.sourceforge.net/sourceforge/aqsis/aqsis-1.0.0.tar.gz
=> `aqsis-1.0.0.tar.gz'
Resolving dl.sourceforge.net... 64.74.207.41, 66.35.250.221, 69.9.164.2, ...
Connecting to dl.sourceforge.net[64.74.207.41]:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/aqsis/aqsis-1.0.0.tar.gz?download&failedmirror=sourceforge.irlab.pnap.net [following]
--13:18:33-- http://prdownloads.sourceforge.net/aqsis/aqsis-1.0.0.tar.gz?download&failedmirror=sourceforge.irlab.pnap.net
=> `aqsis-1.0.0.tar.gz?download&failedmirror=sourceforge.irlab.pnap.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... 200 OK
Length: unspecified [text/html]
[ <=> ] 15,076 29.21K/s
13:18:34 (29.16 KB/s) - `aqsis-1.0.0.tar.gz?download&failedmirror=sourceforge.irlab.pnap.net' saved [15076]
==> ERROR: Failed to download aqsis-1.0.0.tar.gz
==> Aborting...# $Id: $
# Contributor: damir <damir@archlinux.org>
# Maintainer:
pkgname=aqsis
pkgver=1.0.0
pkgrel=1
depends=()
pkgdesc="high quality, photorealistic, 3D rendering solution"
source=(http://dl.sourceforge.net/sourceforge/aqsis/aqsis-$pkgver.tar.gz)
url="http://www.aqsis.org/"
build(){
cd $startdir/src/$pkgname-$pkgver
#aclocal
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}The impossible missions are the only ones which succeed.
Offline
judfilm wrote:i cannot download it .. it says wrong mirror :-(
The download from sourceforge doesn't work for me either, even though the file is listed here: http://prdownloads.sourceforge.net/aqsis/
I did another PKGBUILD for k3d that includes somemore features. I added an OpenExr support and the GTSboolean plugin that brings along some nice boolean operations. But it needs the the GNU Triangulated Surface Library, so I did a PKGBUILD for this too.
pkgname=k3d
pkgver=0.4.4.0
pkgrel=1
pkgdesc="3D modeling and animation system"
url="http://k3d.sourceforge.net"
depends=('gtk' 'netpbm' 'imagemagick' 'libsigc++2.0' 'openexr' 'gts')
source=(http://dl.sourceforge.net/sourceforge/k3d/k3d-$pkgver.tbz2)
md5sums=('902e0a111e378d0156e03b73850b573a')
build() {
cd $startdir/src/
tar -xjf k3d-$pkgver.tbz2
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr --with-openexr --with-gts
make || return 1
make DESTDIR=$startdir/pkg install
}pkgname=gts
pkgver=0.7.3
pkgrel=1
pkgdesc="the GNU Triangulated Surface Library"
url="http://gts.sourceforge.net/"
depends=('glib2' 'bash')
source=(http://dl.sourceforge.net/sourceforge/gts/gts-$pkgver.tar.gz)
md5sums=('c02209e38229eb2abb1370dadd0020b4')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}Offline
Over the past coupke of days I have attempted to compile K3d 0.5.0.33. The problem i am running in to is a build error saying a command does not exist in /bin/sh. Any ideas?
make[3]: Entering directory `/home/patrick/k3d-0.5.0.33/share/ngui/rasterized'
png_file="BitmapMatteColorDiff.png"; svg_file=${png_file/*//}; rsvg ../../../share/ngui/scalable/${svg_file/.png/.svg} $png_file
/bin/sh: rsvg: command not found
make[3]: *** [BitmapMatteColorDiff.png] Error 127
make[3]: Leaving directory `/home/patrick/k3d-0.5.0.33/share/ngui/rasterized'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/patrick/k3d-0.5.0.33/share/ngui'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/patrick/k3d-0.5.0.33/share'
make: *** [all-recursive] Error 1I am not sure if it matters if you compile it as a regular user or su so i tried both ways with the same results. Here are the flags i used when I configured it:
./configure --with-gts --with-imagemagick --with-jpeg --with-ngui --with-openexr --with-png --with-python=/usr/bin/pythonPlease note that I did not re-configure when I tried to make as su. Any help you guys can offer is much appreciated
Offline
pacman -S librsvg
should fix that error.
EDIT: BTW, it's recommended to run makepkg as regular user.
Offline
hi,
I tried to build K-3D, too, but I get several errors
1. I use the PKGBUILD as is makepkg reports the following:
poly_text.cpp: In constructor 'libk3dfreetype2::detail::freetype_outline::freetype_outline(long unsigned int)':
poly_text.cpp:149: error: invalid conversion from 'int (*)(FT_Vector*, void*)' to 'int (*)(const FT_Vector*, void*)'
poly_text.cpp:150: error: invalid conversion from 'int (*)(FT_Vector*, void*)' to 'int (*)(const FT_Vector*, void*)'
poly_text.cpp:151: error: invalid conversion from 'int (*)(FT_Vector*, FT_Vector*, void*)' to 'int (*)(const FT_Vector*, const FT_Vector*, void*)'
poly_text.cpp:152: error: invalid conversion from 'int (*)(FT_Vector*, FT_Vector*, FT_Vector*, void*)' to 'int (*)(const FT_Vector*, const FT_Vector*, const FT_Vector*, void*)'
make[2]: *** [poly_text.lo] Error 1
make[2]: Leaving directory `/var/abs/local/k3d/src/k3d-0.5.0.39/modules/freetype2'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/abs/local/k3d/src/k3d-0.5.0.39/modules'
make: *** [all-recursive] Error 1
==> ERROR: Build Failed. Aborting...2. As the website of K-3D says, compiling with gcc 4 needs to be done with the newest version of boost (in Arch included) I tried to compile it with the option --with-external-boost,
but there seems to be something wrong:
checking boost/version.hpp usability... yes
checking boost/version.hpp presence... yes
checking for boost/version.hpp... yes
Using external boost library
checking for main in -lboost_regex... no
configure: error: couldn't find boost_regex library
make: *** No targets specified and no makefile found. Stop.
==> ERROR: Build Failed. Aborting...Has anyone a clue?
thanks, hightower
EDIT: please change the url in the first post to .org - .com leads to the wrong site
EDIT2: Problem solved, further information at http://aur.archlinux.org/packages.php?d … s=0&SeB=nd
Offline