Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 213983 - games-emulation/gr-lida new ebuild
Summary: games-emulation/gr-lida new ebuild
Status: CONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Default Assignee for New Packages
URL: http://laisladelabandoware.es/grlida.php
Whiteboard: sunrise-removal
Keywords: EBUILD, InOverlay
Depends on:
Blocks:
 
Reported: 2008-03-20 04:06 UTC by Sebastián Magrí
Modified: 2018-12-03 12:58 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
Ebuild for GR-lida (GR-lida-0.3.4.ebuild,945 bytes, text/plain)
2008-03-20 04:30 UTC, Sebastián Magrí
Details
New revision (gr-lida-0.3.4-r0.ebuild,880 bytes, text/plain)
2008-03-21 00:11 UTC, Sebastián Magrí
Details
Ebuild for GR-lida (gr-lida-0.3.4.ebuild,852 bytes, text/plain)
2008-03-22 03:08 UTC, Sebastián Magrí
Details
patch from upstream (gr-lida-stardelegate.patch,1.59 KB, text/plain)
2008-11-13 13:37 UTC, Sebastián Magrí
Details
Revision with patch (gr-lida-0.7.0-r1.ebuild,970 bytes, text/plain)
2008-11-13 13:39 UTC, Sebastián Magrí
Details
gr-lida-stardelegate.patch-10865.out (gr-lida-stardelegate.patch-10865.out,6.52 KB, text/plain)
2008-11-13 17:33 UTC, Marcello Magaldi
Details
Corrected patch (gr-lida-stardelegate.patch,1.75 KB, text/plain)
2008-11-14 18:32 UTC, Sebastián Magrí
Details
gr-lida-stardelegate.patch-2403.out (gr-lida-stardelegate.patch-2403.out,7.34 KB, text/plain)
2008-11-14 19:13 UTC, Marcello Magaldi
Details
Correct Ebuild... (gr-lida-0.7.0.ebuild,996 bytes, text/plain)
2008-11-15 03:17 UTC, Sebastián Magrí
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Sebastián Magrí 2008-03-20 04:06:07 UTC
Frontend to Scummvm and dosbox that can launch games in any of both emulators and can store a SQLite, MySQL or PostgreSQL database with information about the games installed.It allows to use emoticons in the Games comments, save screenshots of the games and view it on an embedded image viewer and skins for the GR-lida GUI.

The GUI is oficially in spanish but english translation have been done and is available in the homepage of the project. To use it you have to put the translation file into ~/.gr-lida/idiomas/

Reproducible: Always
Comment 1 Sebastián Magrí 2008-03-20 04:30:26 UTC
Created attachment 146636 [details]
Ebuild for GR-lida

Ebuild for Sunrise Overlay.
Comment 2 Tomáš Chvátal (RETIRED) gentoo-dev 2008-03-20 11:02:18 UTC
is there really required sqlite dependency? because you request qt with sqlite use which always implies sqlite
(just asking might be wrong)
Comment 3 Sebastián Magrí 2008-03-20 15:13:06 UTC
Sqlite is required as the program uses it as default for the games database, but it can be later changed to MySQL or PostgreSQL...
Comment 4 Sebastián Magrí 2008-03-20 18:40:14 UTC
Comment on attachment 146636 [details]
Ebuild for GR-lida

><HTML><HEAD/><BODY><PRE># Copyright 2006-2008 Gentoo Foundation
># Distributed under the terms of the GNU General Public License v2
># $Header: $
>
>inherit eutils qt4
>
>DESCRIPTION="Frontend for scummvm and dosbox"
>HOMEPAGE="www.laisladelabandoware.es"
>SRC_URI="http://dl.sharesource.org/grlida/${PF}.tar.bz2"
>
>LICENSE="GPL-2"
>SLOT="0"
>KEYWORDS="~x86 ~amd64"
>IUSE="dosbox scummvm"
>
>DEPEND="&gt;=x11-libs/qt-4.3
>	&gt;=dev-db/sqlite-3"
>RDEPEND="${DEPEND}
>	dosbox? ( games-emulation/dosbox )
>	scummvm? ( games-engines/scummvm )"
>
>pkg_setup(){
>	if ! built_with_use x11-libs/qt gif png jpeg sqlite3; then
>	eerror "You must build qt with support for gif, png, jpeg and sqlite3"
>	die "Setup Failed"
>	fi
>}
>
>src_compile(){
>	eqmake4 "${S}"/gr-lida.pro || die
>	emake || die "Compile Failed"
>}
>
>src_install(){
>	emake INSTALL_ROOT="${D}" install || die "Install Failed"
>}
>
>pkg_postinst(){
>	einfo "The GUI is currently in spanish."
>	einfo "See Bug 213983 for instructions about translation"
>}</PRE></BODY></HTML>
Comment 5 Sebastián Magrí 2008-03-20 18:47:06 UTC
The Language pack is already in the source tarball. If you want to have the GUI in  English you just have to extract the file gr-lida_en_EN.qm and copy it into your ~/.grlida/idiomas/ directory...


Comment 6 Tomáš Chvátal (RETIRED) gentoo-dev 2008-03-20 22:12:54 UTC
No you didn't get me.
I meant why to specific sqlite when you say qt have to be build with SQLITE use flag which imply that sqlite is already present. So sqlite will be allways on system in order to use this with no need to specifi it in ebuild deps.
Comment 7 Sebastián Magrí 2008-03-21 00:11:43 UTC
Created attachment 146729 [details]
New revision

sqlite dep have been droped, ebuild improved and name changed to lowercases.
Comment 8 Tomáš Chvátal (RETIRED) gentoo-dev 2008-03-21 22:02:34 UTC
You are probably going to hate me :)
1) do not add rcsomething unless you did something worth of it (changes in output not in processing) so no need to add it when you change something in ebuild which afects only ebuild
2) you should use
S="${WORKDIR}"/"${MY_P}"

good luck with next revision :]
Comment 9 Sebastián Magrí 2008-03-21 23:30:58 UTC
No I'm not going to hate you, I'm going to be greeted with you as I'm learning. Now I've improved the ebuild and I'm waiting for permission to commit it to sunrise, then I'll update the bug with the new ebuild...

Thanks....
Comment 10 Sebastián Magrí 2008-03-22 03:08:41 UTC
Created attachment 146833 [details]
Ebuild for GR-lida

This is now in the sunrise overlay. You can find it at:
http://overlays.gentoo.org/svn/proj/sunrise/sunrise/games-emulation/gr-lida
Comment 11 Sebastián Magrí 2008-03-22 03:24:13 UTC
The correct URL for the ebuild is http://overlays.gentoo.org/svn/proj/sunrise/reviewed/games-emulation/gr-lida
Comment 12 Tomáš Chvátal (RETIRED) gentoo-dev 2008-03-22 09:17:22 UTC
Nice job :-)
Now only autor should add nls support, you can check for how is it done into other game apps :] so there is no need to distribute translations separately.
Comment 13 Juan Francisco Cantero Hurtado 2008-03-22 13:04:26 UTC
Tomáš the English translation will be integrated in the version 0.4 of GR-lida. The current solution is temporary.

Your feedback is welcome ;) .
Comment 14 Sebastián Magrí 2008-04-04 02:55:09 UTC
New version of gr-lida available at http://overlays.gentoo.org/svn/proj/sunrise/sunrise/games-emulation/gr-lida/gr-lida-0.4.0.ebuild
Comment 15 Marcello Magaldi 2008-10-25 06:17:59 UTC
(In reply to comment #14)
> New version of gr-lida available at
> http://overlays.gentoo.org/svn/proj/sunrise/sunrise/games-emulation/gr-lida/gr-lida-0.4.0.ebuild
> 

I cannot compile the last version in sunrise of gr-lida, it gives me this error :
/usr/bin/moc -DQT_NO_DEBUG -DQT_SQL_LIB -DQT_XML_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I/var/tmp/portage/games-emulation/gr-lida-0.7.0/work/GR-lida-0.7.0 -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtSql -I/usr/include/qt4/QtSql -I/usr/include/qt4 -I. -Isrc -Iui -I3rdparty -Ibuild -Isrc src/grlida_dbxadd.h -o build/moc_grlida_dbxadd.cpp
distcc[18751] ERROR: compile /var/tmp/ccache/stardelega.tmp.travelmate.18733.ii on 2.1.21.42 failed
src/stardelegate.h:11: error: expected constructor, destructor, or type conversion before ‘class’
src/stardelegate.cpp:5: error: ‘StarDelegate’ has not been declared
src/stardelegate.cpp:5: error: ISO C++ forbids declaration of ‘StarDelegate’ with no type
src/stardelegate.cpp: In function ‘int StarDelegate(QWidget*)’:
src/stardelegate.cpp:6: error: only constructors take base initializers
src/stardelegate.cpp:8: error: ‘num_column’ was not declared in this scope
src/stardelegate.cpp:9: error: ‘col_Icono’ was not declared in this scope
src/stardelegate.cpp:10: error: ‘star_on’ was not declared in this scope
src/stardelegate.cpp:11: error: ‘star_off’ was not declared in this scope
src/stardelegate.cpp:12: warning: no return statement in function returning non-void
src/stardelegate.cpp: At global scope:
src/stardelegate.cpp:14: error: ‘StarDelegate’ is not a class or namespace
src/stardelegate.cpp:15: error: non-member function ‘void paint(QPainter*, const QStyleOptionViewItem&, const QModelIndex&)’ cannot have cv-qualifier
src/stardelegate.cpp: In function ‘void paint(QPainter*, const QStyleOptionViewItem&, const QModelIndex&)’:
src/stardelegate.cpp:17: error: ‘num_column’ was not declared in this scope
src/stardelegate.cpp:29: error: ‘star_on’ was not declared in this scope
src/stardelegate.cpp:38: error: ‘star_off’ was not declared in this scope
src/stardelegate.cpp:42: error: ‘drawFocus’ was not declared in this scope
src/stardelegate.cpp:44: error: cannot call member function ‘virtual void QItemDelegate::paint(QPainter*, const QStyleOptionViewItem&, const QModelIndex&) const’ without object
src/stardelegate.cpp: At global scope:
src/stardelegate.cpp:48: error: ‘StarDelegate’ is not a class or namespace
src/stardelegate.cpp:49: error: non-member function ‘QSize sizeHint(const QStyleOptionViewItem&, const QModelIndex&)’ cannot have cv-qualifier
src/stardelegate.cpp: In function ‘QSize sizeHint(const QStyleOptionViewItem&, const QModelIndex&)’:
src/stardelegate.cpp:51: error: ‘num_column’ was not declared in this scope
src/stardelegate.cpp:52: error: ‘star_on’ was not declared in this scope
src/stardelegate.cpp:54: error: cannot call member function ‘virtual QSize QItemDelegate::sizeHint(const QStyleOptionViewItem&, const QModelIndex&) const’ without object
src/stardelegate.cpp: At global scope:
src/stardelegate.cpp:57: error: ‘StarDelegate’ is not a class or namespace
src/stardelegate.cpp: In function ‘bool editorEvent(QEvent*, QAbstractItemModel*, const QStyleOptionViewItem&, const QModelIndex&)’:
src/stardelegate.cpp:60: error: ‘num_column’ was not declared in this scope
src/stardelegate.cpp:61: error: cannot call member function ‘virtual bool QItemDelegate::editorEvent(QEvent*, QAbstractItemModel*, const QStyleOptionViewItem&, const QModelIndex&)’ without object
src/stardelegate.cpp:69: error: ‘star_on’ was not declared in this scope
src/stardelegate.cpp:74: error: ‘sql’ was not declared in this scope
make: *** [build/stardelegate.o] Error 1
make: *** Waiting for unfinished jobs....
 * 
 * ERROR: games-emulation/gr-lida-0.7.0 failed.
 * Call stack:
 *               ebuild.sh, line   49:  Called src_compile
 *             environment, line 2546:  Called die
 * The specific snippet of code:
 *       emake || die "Compile Failed"
 *  The die message:
 *   Compile Failed
 * 
 * If you need support, post the topmost build error, and the call stack if relevant.
 * A complete build log is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0/temp/environment'.
 * 

 * Messages for package www-servers/tomcat-6.0.18-r1:

 * 
 *  This ebuild implements a FHS compliant layout for tomcat
 *  Please read http://www.gentoo.org/proj/en/java/tomcat6-guide.xml
 *  for more information.
 * 
 * 
 * 
 * 
 *  Please report any bugs to http://bugs.gentoo.org/
 * 
 * Changing ownership recursively on /etc/tomcat-6
 * Owner ship changed to tomcat:tomcat. Temp hack/fix.
 * tomcat-dbcp.jar is not built at this time. Please fetch jar
 * from upstream binary if you need it. Gentoo Bug # 144276
 * The manager webapps have known exploits, please refer to
 * http://cve.mitre.org/cgi-bin/cvename.cgi?name=2007-2450
 * The examples webapp has a known exploit, please refer to
 * http://cve.mitre.org/cgi-bin/cvename.cgi?name=2007-2449

 * Messages for package games-emulation/gr-lida-0.7.0:

 * 
 * ERROR: games-emulation/gr-lida-0.7.0 failed.
 * Call stack:
 *               ebuild.sh, line   49:  Called src_compile
 *             environment, line 2546:  Called die
 * The specific snippet of code:
 *       emake || die "Compile Failed"
 *  The die message:
 *   Compile Failed
 * 
 * If you need support, post the topmost build error, and the call stack if relevant.
 * A complete build log is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0/temp/environment'.
 * 
Comment 16 Sebastián Magrí 2008-10-25 12:01:56 UTC
Could you please give me your emerge --info and the versions of your Qt set?
Comment 17 Marcello Magaldi 2008-10-25 18:52:16 UTC
(In reply to comment #16)
> Could you please give me your emerge --info and the versions of your Qt set?
> 


 emerge --info
Portage 2.1.4.5 (default/linux/x86/2008.0/desktop, gcc-4.1.2, glibc-2.6.1-r0, 2.6.25-gentoo-r8 i686)
=================================================================
System uname: 2.6.25-gentoo-r8 i686 AMD Athlon(tm) XP 2600+
Timestamp of tree: Sat, 25 Oct 2008 06:04:01 +0000
distcc 2.18.3 i686-pc-linux-gnu (protocols 1 and 2) (default port 3632) [enabled]
ccache version 2.4 [enabled]
app-shells/bash:     3.2_p33
dev-java/java-config: 1.3.7, 2.1.6
dev-lang/python:     2.5.2-r7
dev-util/ccache:     2.4-r7
dev-util/cmake:      2.4.6-r1
sys-apps/baselayout: 1.12.11.1
sys-apps/sandbox:    1.2.18.1-r2
sys-devel/autoconf:  2.13, 2.61-r2
sys-devel/automake:  1.4_p6, 1.5, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2, 1.10.1-r1
sys-devel/binutils:  2.18-r3
sys-devel/gcc-config: 1.4.0-r4
sys-devel/libtool:   1.5.26
virtual/os-headers:  2.6.23-r3
ACCEPT_KEYWORDS="x86"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-O2 -mtune=i686 -march=athlon-xp -pipe -fomit-frame-pointer"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/3.5/env /usr/kde/3.5/share/config /usr/kde/3.5/shutdown /usr/share/config"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/env.d/java/ /etc/fonts/fonts.conf /etc/gconf /etc/php/apache2-php5/ext-active/ /etc/php/cgi-php5/ext-active/ /etc/php/cli-php5/ext-active/ /etc/revdep-rebuild /etc/splash /etc/terminfo /etc/texmf/web2c /etc/udev/rules.d"
CXXFLAGS="-O2 -mtune=i686 -march=athlon-xp -pipe -fomit-frame-pointer"
DISTDIR="/var/portage/distfiles"
FEATURES="ccache distcc metadata-transfer parallell-fetch sandbox sfperms strict unmerge-orphans userfetch"
GENTOO_MIRRORS="http://mirrors.sec.informatik.tu-darmstadt.de/gentoo/ http://ftp.linux.ee/pub/gentoo/distfiles/ http://mirror.ovh.net/gentoo-distfiles/"
LANG="it_IT.UTF-8"
LC_ALL="it_IT.UTF-8"
LDFLAGS="-Wl,-O1"
LINGUAS="it"
MAKEOPTS="-j8"
PKGDIR="/usr/portage/packages"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/portage/local/layman/sunrise /usr/portage/local/layman/initng /usr/portage/local/layman/mpd /usr/portage/local/layman/desktop-effects /usr/local/portage"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="3dnow 3dnowext X Xaw3d a52 aac acl acpi aiglx alsa amrnb amrwb apache2 arts aspnet aspnetedit avahi bash-completion beagle berkdb bidi boo branding bzip2 c++ cairo cdda cdio cdr cli cracklib crypt css cups cxx dbus devhelp divx4linux dri dts dvd dvdr dvdread eds emboss emovix encode esd evo exif fam fbcondecor ffmpeg firefox flac fortran freetype galago gcj gdbm gif gimp gimpprint glade glitz gnome gnome-keyring gnutls gpm gstreamer gtk gtk2 guile hal httpd iconv id3tag ipv6 isdnlog jack java joystick jpeg kde kerberos latex ldap libnotify live lm_sensors mad matroska midi mikmod mjpeg mmx mono mp3 mpeg msn mtp mudflap mysql nautilus ncurses nls nptl nptlonly nsplugin nvidia objc odbc offensive ogg oggvorbis opengl openmp pam pcre pdf perl png ppds pppd python qt qt3 qt3support qt4 quicktime readline reflection samba scanner sdl session sourceview spell spl sqlite sqlite3 srt sse ssl startup-notification stream subversion svg svga swat sysfs syslog tcltk tcpd theora thunderbird tiff tk totem tracker trasparency truetype unicode usb v4l valgrind vcd vlm vorbis win32codecs wma wxwindows x86 xcomposite xml xorg xv xvid zlib" ALSA_CARDS="emu10k1 usb-audio" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol" APACHE2_MODULES="actions alias auth_basic auth_digest authn_anon authn_dbd authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache dav dav_fs dav_lock dbd deflate dir disk_cache env expires ext_filter file_cache filter headers ident imagemap include info log_config logio mem_cache mime mime_magic negotiation proxy proxy_ajp proxy_balancer proxy_connect proxy_http rewrite setenvif so speling status unique_id userdir usertrack vhost_alias" ELIBC="glibc" INPUT_DEVICES="keyboard mouse evdev" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LINGUAS="it" USERLAND="GNU" VIDEO_CARDS="nvidia fbdev"
Unset:  CPPFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, FFLAGS, INSTALL_MASK, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS

$ eix -e qt
[I] x11-libs/qt
     Available versions:  
	(3)	3.3.8-r4 ~3.3.8b
	(4)	4.3.3 ~4.3.4-r1 ~4.3.5 [M]~4.4.0 ~4.4.1 ~4.4.1-r1 ~4.4.2
	{accessibility cups dbus debug doc examples firebird gif glib immqt immqt-bc input_devices_wacom ipv6 jpeg mng mysql nas nis odbc opengl pch png postgres qt3support sqlite sqlite3 ssl tiff xinerama zlib}
     Installed versions:  3.3.8-r4(3)(10:07:27 29/09/2008)(cups gif ipv6 mysql odbc opengl sqlite -debug -doc -examples -firebird -immqt -immqt-bc -nas -nis -postgres -xinerama)
			  4.3.3(4)(10:07:29 29/09/2008)(accessibility cups dbus gif jpeg mysql odbc opengl png qt3support sqlite sqlite3 ssl tiff zlib -debug -doc -examples -firebird -glib -input_devices_wacom -mng -nas -nis -pch -postgres -xinerama)
     Homepage:            http://www.trolltech.com/
     Description:         The Qt toolkit is a comprehensive C++ application development framework.
Comment 18 Marcello Magaldi 2008-10-30 08:37:01 UTC
(In reply to comment #15)

I think that the errors that we should fix are these (since the others may be caused by these):

> src/stardelegate.h:11: error: expected constructor, destructor, or type
> conversion before ‘class’
> src/stardelegate.cpp:5: error: ‘StarDelegate’ has not been declared
> src/stardelegate.cpp:5: error: ISO C++ forbids declaration of
> ‘StarDelegate’ with no type
> src/stardelegate.cpp: In function ‘int StarDelegate(QWidget*)’:


perhaps is there any syntax error or simply this source doesn't fit ISO C++ specifications so we should try to do one of the following :

- run gcc without ISO-C++ checks (if it is possible)
- patch stardelegate.h and stardelegate.h 

Comment 19 Sebastián Magrí 2008-11-03 19:16:46 UTC
I'm trying to inform upstream about that to find the better way to fix it... Have you tried it without distcc?
Comment 20 Marcello Magaldi 2008-11-04 00:27:04 UTC
(In reply to comment #19)
> I'm trying to inform upstream about that to find the better way to fix it...
> Have you tried it without distcc?
> 

I tried without distcc and without ccache, same result
Comment 21 Sebastián Magrí 2008-11-13 13:37:21 UTC
Created attachment 171636 [details]
patch from upstream
Comment 22 Sebastián Magrí 2008-11-13 13:39:41 UTC
Created attachment 171637 [details]
Revision with patch

Please try with this new ebuild and feedback about any results. If this patch works, it will be included in next release and available as soon as possible as a bump in sunrise...
Comment 23 Marcello Magaldi 2008-11-13 17:30:46 UTC
(In reply to comment #22)
> Created an attachment (id=171637) [edit]
> Revision with patch
> 
> Please try with this new ebuild and feedback about any results. If this patch
> works, it will be included in next release and available as soon as possible as
> a bump in sunrise...
> 

the ebuild fails to patch with this error :

athlon gr-lida # emerge -v gr-lida

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild     U ] games-emulation/gr-lida-0.7.0-r1 [0.6.0] USE="dosbox scummvm" 0 kB [1=>2]

Total: 1 package (1 upgrade), Size of downloads: 0 kB
Portage tree and overlays:
 [0] /usr/portage
 [1] /usr/portage/local/layman/sunrise
 [2] /usr/local/portage

>>> Verifying ebuild Manifests...

>>> Emerging (1 of 1) games-emulation/gr-lida-0.7.0-r1 to /
 * GR-lida-0.7.0.tar.bz2 RMD160 SHA1 SHA256 size ;-) ...                  [ ok ]
 * checking ebuild checksums ;-) ...                                      [ ok ]
 * checking auxfile checksums ;-) ...                                     [ ok ]
 * checking miscfile checksums ;-) ...                                    [ ok ]
 * checking GR-lida-0.7.0.tar.bz2 ;-) ...                                 [ ok ]
>>> cfg-update-1.8.2-r1: Checksum index is up-to-date ...
>>> Unpacking source...
 * Applying gr-lida-stardelegate.patch ...

 * Failed Patch: gr-lida-stardelegate.patch !
 *  ( /usr/local/portage/games-emulation/gr-lida/files/gr-lida-stardelegate.patch )
 * 
 * Include in your bugreport the contents of:
 * 
 *   /var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/gr-lida-stardelegate.patch-10865.out

 * 
 * ERROR: games-emulation/gr-lida-0.7.0-r1 failed.
 * Call stack:
 *               ebuild.sh, line   49:  Called src_unpack
 *             environment, line 2582:  Called epatch 'src_unpack'
 *             environment, line 1281:  Called die
 * The specific snippet of code:
 *                   die "Failed Patch: ${patchname}!";
 *  The die message:
 *   Failed Patch: gr-lida-stardelegate.patch!
 * 
 * If you need support, post the topmost build error, and the call stack if relevant.
 * A complete build log is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/environment'.
 * This ebuild is from an overlay: '/usr/local/portage/'
 * 

 * Messages for package games-emulation/gr-lida-0.7.0-r1:

 * Failed Patch: gr-lida-stardelegate.patch !
 *  ( /usr/local/portage/games-emulation/gr-lida/files/gr-lida-stardelegate.patch )
 * 
 * Include in your bugreport the contents of:
 * 
 *   /var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/gr-lida-stardelegate.patch-10865.out
 * 
 * ERROR: games-emulation/gr-lida-0.7.0-r1 failed.
 * Call stack:
 *               ebuild.sh, line   49:  Called src_unpack
 *             environment, line 2582:  Called epatch 'src_unpack'
 *             environment, line 1281:  Called die
 * The specific snippet of code:
 *                   die "Failed Patch: ${patchname}!";
 *  The die message:
 *   Failed Patch: gr-lida-stardelegate.patch!
 * 
 * If you need support, post the topmost build error, and the call stack if relevant.
 * A complete build log is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/environment'.
 * This ebuild is from an overlay: '/usr/local/portage/'
 * 
Comment 24 Marcello Magaldi 2008-11-13 17:33:00 UTC
Created attachment 171651 [details]
gr-lida-stardelegate.patch-10865.out
Comment 25 Sebastián Magrí 2008-11-14 18:32:07 UTC
Created attachment 171739 [details]
Corrected patch

My bad, the format of the patch was broken... Now it applies without problems... Please feedback...
Comment 26 Marcello Magaldi 2008-11-14 19:12:13 UTC
(In reply to comment #25)
> Created an attachment (id=171739) [edit]
> Corrected patch
> 
> My bad, the format of the patch was broken... Now it applies without
> problems... Please feedback...
> 

* Applying gr-lida-stardelegate.patch ...

 * Failed Patch: gr-lida-stardelegate.patch !
 *  ( /usr/local/portage/games-emulation/gr-lida/files/gr-lida-stardelegate.patch )
 * 
 * Include in your bugreport the contents of:
 * 
 *   /var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/gr-lida-stardelegate.patch-2403.out

 * 
 * ERROR: games-emulation/gr-lida-0.7.0-r1 failed.
 * Call stack:
 *               ebuild.sh, line   49:  Called src_unpack
 *             environment, line 2582:  Called epatch 'src_unpack'
 *             environment, line 1281:  Called die
 * The specific snippet of code:
 *                   die "Failed Patch: ${patchname}!";
 *  The die message:
 *   Failed Patch: gr-lida-stardelegate.patch!
 * 
 * If you need support, post the topmost build error, and the call stack if relevant.
 * A complete build log is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/environment'.
 * This ebuild is from an overlay: '/usr/local/portage/'
 * 

 * Messages for package games-emulation/gr-lida-0.7.0-r1:

 * Failed Patch: gr-lida-stardelegate.patch !
 *  ( /usr/local/portage/games-emulation/gr-lida/files/gr-lida-stardelegate.patch )
 * 
 * Include in your bugreport the contents of:
 * 
 *   /var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/gr-lida-stardelegate.patch-2403.out
 * 
 * ERROR: games-emulation/gr-lida-0.7.0-r1 failed.
 * Call stack:
 *               ebuild.sh, line   49:  Called src_unpack
 *             environment, line 2582:  Called epatch 'src_unpack'
 *             environment, line 1281:  Called die
 * The specific snippet of code:
 *                   die "Failed Patch: ${patchname}!";
 *  The die message:
 *   Failed Patch: gr-lida-stardelegate.patch!
 * 
 * If you need support, post the topmost build error, and the call stack if relevant.
 * A complete build log is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/games-emulation/gr-lida-0.7.0-r1/temp/environment'.
 * This ebuild is from an overlay: '/usr/local/portage/'
 * 
Comment 27 Marcello Magaldi 2008-11-14 19:13:26 UTC
Created attachment 171743 [details]
gr-lida-stardelegate.patch-2403.out
Comment 28 Sebastián Magrí 2008-11-15 03:17:39 UTC
Created attachment 171771 [details]
Correct Ebuild...
Comment 29 Marcello Magaldi 2008-11-15 09:31:41 UTC
(In reply to comment #28)
> Created an attachment (id=171771) [edit]
> Correct Ebuild...
> 

this time it merged fine ;)
Comment 30 Sebastián Magrí 2008-11-24 12:28:07 UTC
gr-lida-0.7.1 comitted... This fixes the stardelegate error...
Comment 31 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2016-06-08 16:48:02 UTC
Hello, everyone.

It seems that at least one ebuild related to this bug exists in the Sunrise overlay at the moment. However, I have to regretfully announce that after a long inactivity period the Sunrise project has been discontinued and the related overlay will be eventually removed. For this reason, I'd like to ask you to reevaluate the ebuilds and consider moving them. If you'd like to maintain a package from Sunrise in Gentoo, please take a look at our Proxy Maintainers [1] project.

Please make sure to take ebuilds from the unreviewed developer Sunrise repository [2] rather than the -reviewed one, since the latter has not been updated for over a year. While at it, please note that:

1. Adding a package to Gentoo requires declaring yourself as an active maintainer for it. All bugs regarding the package will be assigned to you, and you will be expected to maintain it.

2. Some packages may not be suitable for addition anymore. While there's no strong rules that would prevent you from adding a package, it may be a bad idea to add old-unmaintained packages that will shortly result in a large number of bugs reported with no solution. If that is the case, please close the bug as RESOLVED/OBSOLETE to make it easier to find packages worth adding.

3. Some of the bugs were already closed as WONTFIX/OBSOLETE/... while the relevant ebuild was kept in Sunrise. If you disagree with the original decision, you still can add the ebuild via proxy-maint.

4. Pleaes note that many of the Sunrise ebuilds are old and may be buggy. If you decide to move them, please make sure to update/clean them up. The proxy-maint team will also review your ebuilds, therefore making sure they land in Gentoo in good quality.

Once again, thank you for your contribution. We hope that you will still want to contribute to Gentoo, through proxy-maint or otherwise.


[1]:https://wiki.gentoo.org/wiki/Project:Proxy_Maintainers
[2]:https://gitweb.gentoo.org/proj/sunrise.git/