Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
libpano13-9999
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
manouchk
Apprentice
Apprentice


Joined: 08 May 2006
Posts: 288
Location: Vitória (ES), Brasil

PostPosted: Sat Oct 20, 2007 1:14 am    Post subject: libpano13-9999 Reply with quote

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
View user's profile Send private message
Sadako
Advocate
Advocate


Joined: 05 Aug 2004
Posts: 3792
Location: sleeping in the bathtub

PostPosted: Sat Oct 20, 2007 3:31 am    Post subject: Reply with quote

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
View user's profile Send private message
desultory
Bodhisattva
Bodhisattva


Joined: 04 Nov 2005
Posts: 9410

PostPosted: Sat Oct 20, 2007 3:32 am    Post subject: Reply with quote

Moved from Multimedia to Unsupported Software.
Back to top
View user's profile Send private message
manouchk
Apprentice
Apprentice


Joined: 08 May 2006
Posts: 288
Location: Vitória (ES), Brasil

PostPosted: Sat Oct 20, 2007 12:07 pm    Post subject: Reply with quote

It cannot fetch from svn and as a matter of fact
https://svn.sourceforge.net/svnroot/panotools/trunk/libpano
does not exist anymore

On http://panotools.sourceforge.net/ it says
This pano13 library can be downloaded separately like so:
svn co https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano libpano13

Error message :

Code:
 * subversion update start -->
 *      repository: https://svn.sourceforge.net/svnroot/panotools/trunk/libpano
svn: PROPFIND request failed on '/svnroot/panotools/trunk/libpano'
svn: PROPFIND of '/svnroot/panotools/trunk/libpano': Could not resolve hostname `svn.sourceforge.net': Host not found (https://svn.sourceforge.net)


replacing https://svn.sourceforge.net/svnroot/panotools/trunk/libpano
by https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano
didn't resolve the problem here.


I don't know how to run
svn co https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano libpano13
using subversion eclass? Maybe I should subversino.eclass, if I can understand it.
svn co https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano libpano13

Or betterly, I should find out a similar ebuild to copy... but I couldn't find one yet.
Back to top
View user's profile Send private message
Sadako
Advocate
Advocate


Joined: 05 Aug 2004
Posts: 3792
Location: sleeping in the bathtub

PostPosted: Sat Oct 20, 2007 3:00 pm    Post subject: Reply with quote

Try adding ESVN_PROJECT="libpano13" after the ESVN_REPO_URI entry?
_________________
"You have to invite me in"
Back to top
View user's profile Send private message
manouchk
Apprentice
Apprentice


Joined: 08 May 2006
Posts: 288
Location: Vitória (ES), Brasil

PostPosted: Sat Oct 20, 2007 10:57 pm    Post subject: Reply with quote

Very well ! Thank you! Fetching went OKAY. One step further!

I just had to skip the patch an it was OK. :D

# 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
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software 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