diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2009-12-30 15:32:38 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2009-12-30 15:32:38 +0000 |
commit | 39264850fb1db6e0dd5ca07b51a146b1e479035d (patch) | |
tree | dccdcd42194c8deaba07d8f261beef611eb7cdae /games-util/ucon64 | |
parent | Stable for HPPA PPC (bug #298173). (diff) | |
download | gentoo-2-39264850fb1db6e0dd5ca07b51a146b1e479035d.tar.gz gentoo-2-39264850fb1db6e0dd5ca07b51a146b1e479035d.tar.bz2 gentoo-2-39264850fb1db6e0dd5ca07b51a146b1e479035d.zip |
EAPI=2 and not installing missing files. Bug #298670
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-util/ucon64')
-rw-r--r-- | games-util/ucon64/ChangeLog | 8 | ||||
-rw-r--r-- | games-util/ucon64/ucon64-2.0.0.ebuild | 24 |
2 files changed, 17 insertions, 15 deletions
diff --git a/games-util/ucon64/ChangeLog b/games-util/ucon64/ChangeLog index 1dfef032a7de..bda39e9f9a70 100644 --- a/games-util/ucon64/ChangeLog +++ b/games-util/ucon64/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-util/ucon64 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ChangeLog,v 1.12 2009/06/06 17:49:56 nixnut Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ChangeLog,v 1.13 2009/12/30 15:32:37 tupone Exp $ + + 30 Dec 2009; Tupone Alfredo <tupone@gentoo.org> ucon64-2.0.0.ebuild: + EAPI=2 and not installing missing files. Bug #298670 by + flameeyes@gentoo.org 06 Jun 2009; nixnut <nixnut@gentoo.org> ucon64-2.0.0.ebuild: ppc stable #272437 diff --git a/games-util/ucon64/ucon64-2.0.0.ebuild b/games-util/ucon64/ucon64-2.0.0.ebuild index b56730b3eeae..e7d344eb20c5 100644 --- a/games-util/ucon64/ucon64-2.0.0.ebuild +++ b/games-util/ucon64/ucon64-2.0.0.ebuild @@ -1,6 +1,7 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ucon64-2.0.0.ebuild,v 1.7 2009/06/06 17:49:56 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/ucon64/ucon64-2.0.0.ebuild,v 1.8 2009/12/30 15:32:38 tupone Exp $ +EAPI=2 DESCRIPTION="The backup tool and wonderful emulator's Swiss Army knife program" HOMEPAGE="http://ucon64.sourceforge.net/" @@ -11,20 +12,19 @@ SLOT="0" KEYWORDS="~amd64 ppc x86" IUSE="" -DEPEND="sys-libs/zlib" +RDEPEND="" +DEPEND="" -S=${WORKDIR}/${P}-src +S=${WORKDIR}/${P}-src/src -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { sed -i \ -e "/^CFLAGS/s/-O3/${CFLAGS}/" \ -e "/^LDFLAGS/s/-s$/${LDFLAGS}/" \ - src/{,libdiscmage/}Makefile.in || die "sed failed" + {,libdiscmage/}Makefile.in || die "sed failed" } -src_compile() { +src_configure() { local myconf if [[ ! -e /usr/include/sys/io.h ]] ; then @@ -32,15 +32,13 @@ src_compile() { myconf="${myconf} --disable-parallel" fi - cd src econf ${myconf} || die - emake || die "emake failed" } src_install() { - dobin src/ucon64 || die "dobin failed" - dolib.so src/libdiscmage/discmage.so || die "dolib.so failed" - dodoc GoodCodes.txt + dobin ucon64 || die "dobin failed" + dolib.so libdiscmage/discmage.so || die "dolib.so failed" + cd .. dohtml -x src -r -A png,jpg * } |