* [gentoo-commits] gentoo-x86 commit in app-misc/egads: egads-0.9.5.ebuild ChangeLog
@ 2008-02-08 2:04 Robin H. Johnson (robbat2)
0 siblings, 0 replies; 4+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-02-08 2:04 UTC (permalink / raw
To: gentoo-commits
robbat2 08/02/08 02:04:27
Modified: egads-0.9.5.ebuild ChangeLog
Log:
Clean up ebuild after 4 years of bitrot. Now 64-bit compile-safe and no sandbox errors.
(Portage version: 2.1.4.1)
Revision Changes Path
1.7 app-misc/egads/egads-0.9.5.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?r1=1.6&r2=1.7
Index: egads-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -p -w -b -B -u -u -r1.6 -r1.7
--- egads-0.9.5.ebuild 21 Jul 2005 17:17:26 -0000 1.6
+++ egads-0.9.5.ebuild 8 Feb 2008 02:04:27 -0000 1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v 1.6 2005/07/21 17:17:26 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v 1.7 2008/02/08 02:04:27 robbat2 Exp $
DESCRIPTION="Entropy Gathering And Distribution System"
HOMEPAGE="http://www.securesoftware.com/download_${PN}.htm"
@@ -8,22 +8,39 @@ SRC_URI="http://www.securesoftware.com/$
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~ppc x86"
+KEYWORDS="~ppc x86 ~amd64"
IUSE=""
DEPEND="virtual/libc"
egadsdatadir=/var/run/egads
+src_unpack() {
+ unpack "${A}"
+ sed -i \
+ -e '/^BINDIR/d' \
+ -e '/^LIBDIR/d' \
+ -e '/^INCLUDEDIR/d' \
+ ${S}/Makefile.in || die "Failed to fix Makefile.in"
+}
+
src_compile() {
- econf --with-egads-datadir="${egadsdatadir}" --with-bindir=/usr/sbin || die
- emake || die
+ econf \
+ --with-egads-datadir="${egadsdatadir}" \
+ --with-bindir=/usr/sbin \
+ || die
+ emake LIBDIR="/usr/$(get_libdir)" || die
}
src_install() {
keepdir ${egadsdatadir}
- fperm +t ${egadsdatadir}
- einstall BINDIR=${D}/usr/sbin || die
+ fperms +t ${egadsdatadir}
+ # NOT parallel safe, and no DESTDIR support
+ emake -j1 install \
+ BINDIR="${D}"/usr/sbin \
+ LIBDIR="${D}"/usr/$(get_libdir) \
+ INCLUDEDIR="${D}"/usr/include \
+ || die
dodoc README* doc/*.txt
dohtml doc/*.html
}
1.8 app-misc/egads/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/ChangeLog?r1=1.7&r2=1.8
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -p -w -b -B -u -u -r1.7 -r1.8
--- ChangeLog 9 Feb 2007 07:15:02 -0000 1.7
+++ ChangeLog 8 Feb 2008 02:04:27 -0000 1.8
@@ -1,6 +1,10 @@
# ChangeLog for app-misc/egads
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v 1.7 2007/02/09 07:15:02 flameeyes Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v 1.8 2008/02/08 02:04:27 robbat2 Exp $
+
+ 08 Feb 2008; Robin H. Johnson <robbat2@gentoo.org> egads-0.9.5.ebuild:
+ Clean up ebuild after 4 years of bitrot. Now 64-bit compile-safe and no
+ sandbox errors.
09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
Regenerate digest in Manifest2 format.
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-misc/egads: egads-0.9.5.ebuild ChangeLog
@ 2008-02-08 2:05 Robin H. Johnson (robbat2)
0 siblings, 0 replies; 4+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-02-08 2:05 UTC (permalink / raw
To: gentoo-commits
robbat2 08/02/08 02:05:09
Modified: egads-0.9.5.ebuild ChangeLog
Log:
Fix quotes.
(Portage version: 2.1.4.1)
Revision Changes Path
1.8 app-misc/egads/egads-0.9.5.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?r1=1.7&r2=1.8
Index: egads-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -p -w -b -B -u -u -r1.7 -r1.8
--- egads-0.9.5.ebuild 8 Feb 2008 02:04:27 -0000 1.7
+++ egads-0.9.5.ebuild 8 Feb 2008 02:05:08 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v 1.7 2008/02/08 02:04:27 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v 1.8 2008/02/08 02:05:08 robbat2 Exp $
DESCRIPTION="Entropy Gathering And Distribution System"
HOMEPAGE="http://www.securesoftware.com/download_${PN}.htm"
@@ -16,12 +16,12 @@ DEPEND="virtual/libc"
egadsdatadir=/var/run/egads
src_unpack() {
- unpack "${A}"
+ unpack ${A}
sed -i \
-e '/^BINDIR/d' \
-e '/^LIBDIR/d' \
-e '/^INCLUDEDIR/d' \
- ${S}/Makefile.in || die "Failed to fix Makefile.in"
+ "${S}"/Makefile.in || die "Failed to fix Makefile.in"
}
src_compile() {
1.9 app-misc/egads/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -p -w -b -B -u -u -r1.8 -r1.9
--- ChangeLog 8 Feb 2008 02:04:27 -0000 1.8
+++ ChangeLog 8 Feb 2008 02:05:08 -0000 1.9
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/egads
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v 1.8 2008/02/08 02:04:27 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v 1.9 2008/02/08 02:05:08 robbat2 Exp $
+
+ 08 Feb 2008; Robin H. Johnson <robbat2@gentoo.org> egads-0.9.5.ebuild:
+ Fix quotes.
08 Feb 2008; Robin H. Johnson <robbat2@gentoo.org> egads-0.9.5.ebuild:
Clean up ebuild after 4 years of bitrot. Now 64-bit compile-safe and no
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-misc/egads: egads-0.9.5.ebuild ChangeLog
@ 2008-10-05 17:50 Diego Petteno (flameeyes)
0 siblings, 0 replies; 4+ messages in thread
From: Diego Petteno (flameeyes) @ 2008-10-05 17:50 UTC (permalink / raw
To: gentoo-commits
flameeyes 08/10/05 17:50:28
Modified: egads-0.9.5.ebuild ChangeLog
Log:
Add missing multilib inherit line.
(Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)
Revision Changes Path
1.9 app-misc/egads/egads-0.9.5.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?r1=1.8&r2=1.9
Index: egads-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- egads-0.9.5.ebuild 8 Feb 2008 02:05:08 -0000 1.8
+++ egads-0.9.5.ebuild 5 Oct 2008 17:50:28 -0000 1.9
@@ -1,6 +1,8 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v 1.8 2008/02/08 02:05:08 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v 1.9 2008/10/05 17:50:28 flameeyes Exp $
+
+inherit multilib
DESCRIPTION="Entropy Gathering And Distribution System"
HOMEPAGE="http://www.securesoftware.com/download_${PN}.htm"
1.10 app-misc/egads/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/egads/ChangeLog?r1=1.9&r2=1.10
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog 8 Feb 2008 02:05:08 -0000 1.9
+++ ChangeLog 5 Oct 2008 17:50:28 -0000 1.10
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/egads
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v 1.9 2008/02/08 02:05:08 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v 1.10 2008/10/05 17:50:28 flameeyes Exp $
+
+ 05 Oct 2008; Diego Pettenò <flameeyes@gentoo.org> egads-0.9.5.ebuild:
+ Add missing multilib inherit line.
08 Feb 2008; Robin H. Johnson <robbat2@gentoo.org> egads-0.9.5.ebuild:
Fix quotes.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-misc/egads: egads-0.9.5.ebuild ChangeLog
@ 2012-10-05 18:24 Agostino Sarubbo (ago)
0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-10-05 18:24 UTC (permalink / raw
To: gentoo-commits
ago 12/10/05 18:24:09
Modified: egads-0.9.5.ebuild ChangeLog
Log:
Respect CC,AR,RANLIB wrt to bug #243636
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Revision Changes Path
1.11 app-misc/egads/egads-0.9.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild?r1=1.10&r2=1.11
Index: egads-0.9.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- egads-0.9.5.ebuild 23 Sep 2009 16:02:21 -0000 1.10
+++ egads-0.9.5.ebuild 5 Oct 2012 18:24:09 -0000 1.11
@@ -1,8 +1,8 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v 1.10 2009/09/23 16:02:21 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v 1.11 2012/10/05 18:24:09 ago Exp $
-inherit multilib
+inherit multilib toolchain-funcs
DESCRIPTION="Entropy Gathering And Distribution System"
HOMEPAGE="http://www.securesoftware.com/download_${PN}.htm"
@@ -14,6 +14,7 @@
IUSE=""
DEPEND=""
+RDEPEND=""
egadsdatadir=/var/run/egads
@@ -24,6 +25,7 @@
-e '/^LIBDIR/d' \
-e '/^INCLUDEDIR/d' \
"${S}"/Makefile.in || die "Failed to fix Makefile.in"
+ tc-export CC AR RANLIB
}
src_compile() {
1.12 app-misc/egads/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/egads/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/egads/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/egads/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 23 Sep 2009 16:02:21 -0000 1.11
+++ ChangeLog 5 Oct 2012 18:24:09 -0000 1.12
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/egads
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v 1.11 2009/09/23 16:02:21 patrick Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/ChangeLog,v 1.12 2012/10/05 18:24:09 ago Exp $
+
+ 05 Oct 2012; Agostino Sarubbo <ago@gentoo.org> egads-0.9.5.ebuild:
+ Respect CC,AR,RANLIB wrt to bug #243636
23 Sep 2009; Patrick Lauer <patrick@gentoo.org> egads-0.9.5.ebuild:
Remove virtual/libc
@@ -35,4 +38,3 @@
05 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> egads-0.9.5.ebuild:
initial commit, ebuild by robbat2@gentoo.org.
-
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-10-05 18:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-08 2:05 [gentoo-commits] gentoo-x86 commit in app-misc/egads: egads-0.9.5.ebuild ChangeLog Robin H. Johnson (robbat2)
-- strict thread matches above, loose matches on Subject: below --
2012-10-05 18:24 Agostino Sarubbo (ago)
2008-10-05 17:50 Diego Petteno (flameeyes)
2008-02-08 2:04 Robin H. Johnson (robbat2)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox