View previous topic :: View next topic |
Author |
Message |
manouchk Apprentice
Joined: 08 May 2006 Posts: 288 Location: Vitória (ES), Brasil
|
Posted: Sat Oct 20, 2007 1:14 am Post subject: libpano13-9999 |
|
|
Hi,
I have a svn ebuild for libpano13, it does not installe anymore and I can't find where I found it.
I'd like if someone have some informations about that? Or if someone has a better ebuild?
Here is the ebuild:
Code: | more /usr/local/portage/media-libs/libpano13/libpano13-9999.ebuild
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libpano12/libpano12-2.8.4.ebuild,v 1.1 2006/07/08 02:00:17 vanquirius Exp $
inherit eutils subversion
ESVN_REPO_URI="https://svn.sourceforge.net/svnroot/panotools/trunk/libpano"
DESCRIPTION="Helmut Dersch's panorama toolbox library"
HOMEPAGE="http://panotools.sf.net"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="java"
DEPEND="media-libs/libpng
media-libs/tiff
media-libs/jpeg
sys-libs/zlib
java? ( virtual/jdk )"
src_unpack() {
subversion_src_unpack
cd "${S}"
# Allow automake 1.10 to be used
epatch "${FILESDIR}"/automake_svn_bootstrap.patch
}
src_compile() {
local myconf=""
use java \
&& myconf="--with-java=${JAVA_HOME}"
./bootstrap || die "Bootstrap failed"
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
einstall || die "einstall failed"
dodoc README README.linux AUTHORS NEWS doc/*.txt doc/*.readme
|
|
|
Back to top |
|
|
Sadako Advocate
Joined: 05 Aug 2004 Posts: 3792 Location: sleeping in the bathtub
|
Posted: Sat Oct 20, 2007 3:31 am Post subject: |
|
|
What error do you get when trying to install it?
Remember, live svn builds can break one day, and be fine the next. _________________ "You have to invite me in" |
|
Back to top |
|
|
desultory Bodhisattva
Joined: 04 Nov 2005 Posts: 9410
|
Posted: Sat Oct 20, 2007 3:32 am Post subject: |
|
|
Moved from Multimedia to Unsupported Software. |
|
Back to top |
|
|
manouchk Apprentice
Joined: 08 May 2006 Posts: 288 Location: Vitória (ES), Brasil
|
|
Back to top |
|
|
Sadako Advocate
Joined: 05 Aug 2004 Posts: 3792 Location: sleeping in the bathtub
|
Posted: Sat Oct 20, 2007 3:00 pm Post subject: |
|
|
Try adding ESVN_PROJECT="libpano13" after the ESVN_REPO_URI entry? _________________ "You have to invite me in" |
|
Back to top |
|
|
manouchk Apprentice
Joined: 08 May 2006 Posts: 288 Location: Vitória (ES), Brasil
|
Posted: Sat Oct 20, 2007 10:57 pm Post subject: |
|
|
Very well ! Thank you! Fetching went OKAY. One step further!
I just had to skip the patch an it was OK.
# more /usr/local/portage/media-libs/libpano13/libpano13-9999.ebuild
Code: | # Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libpano12/libpano12-2.8.4.ebuild,v 1.1 2006/07/08 02:00:17 vanquirius Exp $
inherit eutils subversion
ESVN_REPO_URI="https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano"
ESVN_PROJECT="libpano13"
DESCRIPTION="Helmut Dersch's panorama toolbox library"
HOMEPAGE="http://panotools.sf.net"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="java"
DEPEND="media-libs/libpng
media-libs/tiff
media-libs/jpeg
sys-libs/zlib
java? ( virtual/jdk )"
src_unpack() {
subversion_src_unpack
cd "${S}"
# Allow automake 1.10 to be used
# epatch "${FILESDIR}"/automake_svn_bootstrap.patch
}
src_compile() {
local myconf=""
use java \
&& myconf="--with-java=${JAVA_HOME}"
./bootstrap || die "Bootstrap failed"
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
einstall || die "einstall failed"
dodoc README README.linux AUTHORS NEWS doc/*.txt doc/*.readme
}
|
|
|
Back to top |
|
|
|