* [gentoo-commits] gentoo-x86 commit in x11-plugins/wmload: ChangeLog wmload-0.9.2.ebuild
@ 2010-08-25 15:54 Jeremy Olexa (darkside)
0 siblings, 0 replies; 2+ messages in thread
From: Jeremy Olexa (darkside) @ 2010-08-25 15:54 UTC (permalink / raw
To: gentoo-commits
darkside 10/08/25 15:54:04
Modified: ChangeLog wmload-0.9.2.ebuild
Log:
Migrate changes from Gentoo Prefix overlay. KEYWORDS, EAPI3, specific patches. Approved by maintainer. Also respect LDFLAGS as an extra QA commit.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.11 x11-plugins/wmload/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/ChangeLog?r1=1.10&r2=1.11
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmload/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog 26 Nov 2008 00:01:43 -0000 1.10
+++ ChangeLog 25 Aug 2010 15:54:04 -0000 1.11
@@ -1,6 +1,12 @@
# ChangeLog for x11-plugins/wmload
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmload/ChangeLog,v 1.10 2008/11/26 00:01:43 tcunha Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmload/ChangeLog,v 1.11 2010/08/25 15:54:04 darkside Exp $
+
+ 25 Aug 2010; Jeremy Olexa <darkside@gentoo.org> wmload-0.9.2.ebuild,
+ +files/wmload-0.9.2-prefix.patch, +files/wmload.solaris.patch:
+ Migrate changes from Gentoo Prefix overlay. KEYWORDS, EAPI3, specific
+ patches. Approved by maintainer. Also respect LDFLAGS as an extra QA
+ commit.
26 Nov 2008; Tiago Cunha <tcunha@gentoo.org> wmload-0.9.2.ebuild:
stable sparc, bug 215651
1.11 x11-plugins/wmload/wmload-0.9.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild?r1=1.10&r2=1.11
Index: wmload-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- wmload-0.9.2.ebuild 26 Nov 2008 00:01:43 -0000 1.10
+++ wmload-0.9.2.ebuild 25 Aug 2010 15:54:04 -0000 1.11
@@ -1,7 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild,v 1.10 2008/11/26 00:01:43 tcunha Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild,v 1.11 2010/08/25 15:54:04 darkside Exp $
+EAPI=3
inherit eutils
IUSE=""
@@ -20,21 +21,28 @@
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~amd64 ppc sparc x86"
+KEYWORDS="~amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
epatch "${FILESDIR}"/${PN}-ComplexProgramTargetNoMan.patch
+ epatch "${FILESDIR}"/${PN}.solaris.patch
+ epatch "${FILESDIR}"/${P}-prefix.patch
+ [[ ${CHOST} == *-solaris* ]] && \
+ sed -i -e 's/\(^XPMLIB = \)\(.*$\)/\1-lkstat \2/' Imakefile
}
-src_compile() {
+src_configure() {
xmkmf || die "xmkmf failed."
- emake CDEBUGFLAGS="${CFLAGS}" || die "emake failed."
+}
+
+src_compile() {
+ emake CDEBUGFLAGS="${CFLAGS}" LOCAL_LDFLAGS="${LDFLAGS}" \
+ || die "emake failed."
}
src_install() {
- einstall DESTDIR="${D}" BINDIR=/usr/bin || die "einstall failed."
+ einstall DESTDIR="${D}" BINDIR="${EPREFIX}"/usr/bin \
+ || die "einstall failed."
dodoc README
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-plugins/wmload: ChangeLog wmload-0.9.2.ebuild
@ 2014-09-01 15:32 Bernard Cafarelli (voyageur)
0 siblings, 0 replies; 2+ messages in thread
From: Bernard Cafarelli (voyageur) @ 2014-09-01 15:32 UTC (permalink / raw
To: gentoo-commits
voyageur 14/09/01 15:32:15
Modified: ChangeLog wmload-0.9.2.ebuild
Log:
Replace einstall with emake install, bug #521684
(Portage version: 2.2.12-r1/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
Revision Changes Path
1.13 x11-plugins/wmload/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/ChangeLog?r1=1.12&r2=1.13
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmload/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog 5 Sep 2012 08:17:42 -0000 1.12
+++ ChangeLog 1 Sep 2014 15:32:15 -0000 1.13
@@ -1,6 +1,9 @@
# ChangeLog for x11-plugins/wmload
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmload/ChangeLog,v 1.12 2012/09/05 08:17:42 jlec Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmload/ChangeLog,v 1.13 2014/09/01 15:32:15 voyageur Exp $
+
+ 01 Sep 2014; Bernard Cafarelli <voyageur@gentoo.org> wmload-0.9.2.ebuild:
+ Replace einstall with emake install, bug #521684
05 Sep 2012; Justin Lecher <jlec@gentoo.org> wmload-0.9.2.ebuild:
Use domenu instead insinto + doins to install .desktop files
1.13 x11-plugins/wmload/wmload-0.9.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild?r1=1.12&r2=1.13
Index: wmload-0.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- wmload-0.9.2.ebuild 5 Sep 2012 08:17:42 -0000 1.12
+++ wmload-0.9.2.ebuild 1 Sep 2014 15:32:15 -0000 1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild,v 1.12 2012/09/05 08:17:42 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmload/wmload-0.9.2.ebuild,v 1.13 2014/09/01 15:32:15 voyageur Exp $
EAPI=3
inherit eutils
@@ -41,8 +41,8 @@
}
src_install() {
- einstall DESTDIR="${D}" BINDIR="${EPREFIX}"/usr/bin \
- || die "einstall failed."
+ emake DESTDIR="${D}" BINDIR="${EPREFIX}"/usr/bin install \
+ || die "install failed."
dodoc README
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-09-01 15:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-01 15:32 [gentoo-commits] gentoo-x86 commit in x11-plugins/wmload: ChangeLog wmload-0.9.2.ebuild Bernard Cafarelli (voyageur)
-- strict thread matches above, loose matches on Subject: below --
2010-08-25 15:54 Jeremy Olexa (darkside)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox