From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JEhGd-0006dA-Pj for garchives@archives.gentoo.org; Tue, 15 Jan 2008 08:35:32 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87D1DE0964; Tue, 15 Jan 2008 08:35:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 43E15E0964 for ; Tue, 15 Jan 2008 08:35:30 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id BD24F65AF5 for ; Tue, 15 Jan 2008 08:35:29 +0000 (UTC) Received: from drac by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JEhGa-0004VB-Ox for gentoo-commits@lists.gentoo.org; Tue, 15 Jan 2008 08:35:28 +0000 From: "Samuli Suominen (drac)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, drac@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmfortune: wmfortune-0.241.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: wmfortune-0.241.ebuild ChangeLog X-VCS-Directories: x11-plugins/wmfortune X-VCS-Committer: drac X-VCS-Committer-Name: Samuli Suominen Content-Type: text/plain; charset=utf8 Message-Id: Sender: Samuli Suominen Date: Tue, 15 Jan 2008 08:35:28 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 2cde22b9-5310-4493-90a0-af5a8d849694 X-Archives-Hash: ae606ed662d1fbf4798883e0b8457bf6 drac 08/01/15 08:35:28 Modified: wmfortune-0.241.ebuild ChangeLog Log: Fixed QA warnings due to a missing include string.h. (Portage version: 2.1.4) Revision Changes Path 1.12 x11-plugins/wmfortune/wmfortune-0.241.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmfort= une/wmfortune-0.241.ebuild?rev=3D1.12&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmfort= une/wmfortune-0.241.ebuild?rev=3D1.12&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmfort= une/wmfortune-0.241.ebuild?r1=3D1.11&r2=3D1.12 Index: wmfortune-0.241.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmfortune/wmfortune-0.241.e= build,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- wmfortune-0.241.ebuild 22 Jul 2007 05:08:42 -0000 1.11 +++ wmfortune-0.241.ebuild 15 Jan 2008 08:35:28 -0000 1.12 @@ -1,15 +1,17 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfortune/wmfortune-0.241= .ebuild,v 1.11 2007/07/22 05:08:42 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfortune/wmfortune-0.241= .ebuild,v 1.12 2008/01/15 08:35:28 drac Exp $ =20 -IUSE=3D"" -DESCRIPTION=3D"dock-app that shows fortune messages" -HOMEPAGE=3D"http://www.dockapps.com/file.php/id/90" +inherit eutils multilib toolchain-funcs + +DESCRIPTION=3D"a dockapp showing fortune-mod messages." +HOMEPAGE=3D"http://dockapps.org/files/90/128" SRC_URI=3D"http://www.dockapps.com/download.php/id/128/${P}.tar.gz" =20 LICENSE=3D"GPL-1" SLOT=3D"0" -KEYWORDS=3D"x86 amd64 ppc ~sparc" +KEYWORDS=3D"amd64 ppc ~sparc x86" +IUSE=3D"" =20 RDEPEND=3D"games-misc/fortune-mod x11-libs/libX11 @@ -19,12 +21,18 @@ x11-proto/xproto x11-proto/xextproto" =20 +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-stringh.patch +} + src_compile() { - emake OPTIMIZE=3D"${CFLAGS}" || die + emake CC=3D"$(tc-getCC)" OPTIMIZE=3D"${CFLAGS}" \ + XLIBDIR=3D"/usr/$(get_libdir)" || die "emake failed." } =20 -src_install() -{ - dobin wmfortune +src_install() { + dobin ${PN} dodoc CHANGES README TODO } 1.10 x11-plugins/wmfortune/ChangeLog file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmfort= une/ChangeLog?rev=3D1.10&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmfort= une/ChangeLog?rev=3D1.10&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmfort= une/ChangeLog?r1=3D1.9&r2=3D1.10 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmfortune/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 22 Jul 2007 05:08:42 -0000 1.9 +++ ChangeLog 15 Jan 2008 08:35:28 -0000 1.10 @@ -1,6 +1,10 @@ # ChangeLog for x11-plugins/wmfortune -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfortune/ChangeLog,v 1.9= 2007/07/22 05:08:42 dberkholz Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfortune/ChangeLog,v 1.1= 0 2008/01/15 08:35:28 drac Exp $ + + 15 Jan 2008; Samuli Suominen + +files/wmfortune-0.241-stringh.patch, wmfortune-0.241.ebuild: + Fixed QA warnings due to a missing include string.h. =20 22 Jul 2007; Donnie Berkholz ; wmfortune-0.241.ebuild: --=20 gentoo-commits@lists.gentoo.org mailing list