public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-plugins/asclock: ChangeLog asclock-2.0.12-r1.ebuild
@ 2009-05-03  2:13 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 4+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-05-03  2:13 UTC (permalink / raw
  To: gentoo-commits

arfrever    09/05/03 02:13:08

  Modified:             ChangeLog asclock-2.0.12-r1.ebuild
  Log:
  Respect LDFLAGS (bug #171351).
  (Portage version: 13598-svn/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 x11-plugins/asclock/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	26 Jun 2008 12:50:53 -0000	1.20
+++ ChangeLog	3 May 2009 02:13:07 -0000	1.21
@@ -1,6 +1,10 @@
 # ChangeLog for x11-plugins/asclock
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v 1.20 2008/06/26 12:50:53 drac Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v 1.21 2009/05/03 02:13:07 arfrever Exp $
+
+  03 May 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  asclock-2.0.12-r1.ebuild:
+  Respect LDFLAGS (bug #171351).
 
   08 Dec 2006; Michael Sterrett <mr_bones_@gentoo.org>
   asclock-2.0.12.ebuild:



1.7                  x11-plugins/asclock/asclock-2.0.12-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?r1=1.6&r2=1.7

Index: asclock-2.0.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- asclock-2.0.12-r1.ebuild	29 Jun 2008 13:47:54 -0000	1.6
+++ asclock-2.0.12-r1.ebuild	3 May 2009 02:13:07 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v 1.6 2008/06/29 13:47:54 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v 1.7 2009/05/03 02:13:07 arfrever Exp $
 
 inherit eutils toolchain-funcs
 
@@ -29,25 +29,25 @@
 	for x in asclock parser symbols config
 	do
 		$(tc-getCC) \
-			    ${CFLAGS} \
-			    -I/usr/include \
-			    -Dlinux -D__i386__ \
-			    -D_POSIX_C_SOURCE=199309L \
-			    -D_POSIX_SOURCE \
-			    -D_XOPEN_SOURCE \
-			    -D_BSD_SOURCE \
-			    -D_SVID_SOURCE \
-			    -DFUNCPROTO=15 \
-			    -DNARROWPROTO \
-			    -c -o ${x}.o ${x}.c || die "compile failed"
+			${CPPFLAGS} ${CFLAGS} ${ASFLAGS} \
+			-I/usr/include \
+			-Dlinux -D__i386__ \
+			-D_POSIX_C_SOURCE=199309L \
+			-D_POSIX_SOURCE \
+			-D_XOPEN_SOURCE \
+			-D_BSD_SOURCE \
+			-D_SVID_SOURCE \
+			-DFUNCPROTO=15 \
+			-DNARROWPROTO \
+			-c -o ${x}.o ${x}.c || die "compile asclock failed"
 	done
 	$(tc-getCC) \
-		    ${CFLAGS} \
-		    -o asclock \
-		    asclock.o parser.o symbols.o config.o \
-		    -L/usr/lib \
-		    -L/usr/lib/X11 \
-		    -lXpm -lXext -lX11 || die "compile asclock failed"
+		${LDFLAGS} \
+		-o asclock \
+		asclock.o parser.o symbols.o config.o \
+		-L/usr/lib \
+		-L/usr/lib/X11 \
+		-lXpm -lXext -lX11 || die "link asclock failed"
 }
 
 src_install() {






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-plugins/asclock: ChangeLog asclock-2.0.12-r1.ebuild
@ 2009-11-03 15:27 Bernard Cafarelli (voyageur)
  0 siblings, 0 replies; 4+ messages in thread
From: Bernard Cafarelli (voyageur) @ 2009-11-03 15:27 UTC (permalink / raw
  To: gentoo-commits

voyageur    09/11/03 15:27:09

  Modified:             ChangeLog asclock-2.0.12-r1.ebuild
  Log:
  ~amd64 fix and keyword, bug #234642
  (Portage version: 2.2_rc48/cvs/Linux x86_64)

Revision  Changes    Path
1.22                 x11-plugins/asclock/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	3 May 2009 02:13:07 -0000	1.21
+++ ChangeLog	3 Nov 2009 15:27:09 -0000	1.22
@@ -1,6 +1,10 @@
 # ChangeLog for x11-plugins/asclock
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v 1.21 2009/05/03 02:13:07 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v 1.22 2009/11/03 15:27:09 voyageur Exp $
+
+  03 Nov 2009; Bernard Cafarelli <voyageur@gentoo.org>
+  asclock-2.0.12-r1.ebuild:
+  ~amd64 fix and keyword, bug #234642
 
   03 May 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   asclock-2.0.12-r1.ebuild:



1.8                  x11-plugins/asclock/asclock-2.0.12-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?r1=1.7&r2=1.8

Index: asclock-2.0.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- asclock-2.0.12-r1.ebuild	3 May 2009 02:13:07 -0000	1.7
+++ asclock-2.0.12-r1.ebuild	3 Nov 2009 15:27:09 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v 1.7 2009/05/03 02:13:07 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v 1.8 2009/11/03 15:27:09 voyageur Exp $
 
 inherit eutils toolchain-funcs
 
@@ -10,7 +10,7 @@
 HOMEPAGE="http://www.tigr.net/afterstep/list.pl"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~mips ppc sparc x86"
+KEYWORDS="~amd64 ~mips ppc sparc x86"
 
 DEPEND="x11-libs/libXpm"
 RDEPEND="${DEPEND}
@@ -31,7 +31,7 @@
 		$(tc-getCC) \
 			${CPPFLAGS} ${CFLAGS} ${ASFLAGS} \
 			-I/usr/include \
-			-Dlinux -D__i386__ \
+			-Dlinux \
 			-D_POSIX_C_SOURCE=199309L \
 			-D_POSIX_SOURCE \
 			-D_XOPEN_SOURCE \






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-plugins/asclock: ChangeLog asclock-2.0.12-r1.ebuild
@ 2010-08-25 15:41 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeremy Olexa (darkside) @ 2010-08-25 15:41 UTC (permalink / raw
  To: gentoo-commits

darkside    10/08/25 15:41:16

  Modified:             ChangeLog asclock-2.0.12-r1.ebuild
  Log:
  Migrate changes from Gentoo Prefix overlay. KEYWORDS, EAPI3, CFLAG handling. Approved by maintainer
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 x11-plugins/asclock/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	3 Nov 2009 15:27:09 -0000	1.22
+++ ChangeLog	25 Aug 2010 15:41:16 -0000	1.23
@@ -1,6 +1,10 @@
 # ChangeLog for x11-plugins/asclock
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v 1.22 2009/11/03 15:27:09 voyageur Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v 1.23 2010/08/25 15:41:16 darkside Exp $
+
+  25 Aug 2010; Jeremy Olexa <darkside@gentoo.org> asclock-2.0.12-r1.ebuild:
+  Migrate changes from Gentoo Prefix overlay. KEYWORDS, EAPI3, CFLAG
+  handling. Approved by maintainer
 
   03 Nov 2009; Bernard Cafarelli <voyageur@gentoo.org>
   asclock-2.0.12-r1.ebuild:



1.9                  x11-plugins/asclock/asclock-2.0.12-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?r1=1.8&r2=1.9

Index: asclock-2.0.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- asclock-2.0.12-r1.ebuild	3 Nov 2009 15:27:09 -0000	1.8
+++ asclock-2.0.12-r1.ebuild	25 Aug 2010 15:41:16 -0000	1.9
@@ -1,7 +1,8 @@
-# Copyright 1999-2009 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/asclock/asclock-2.0.12-r1.ebuild,v 1.8 2009/11/03 15:27:09 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v 1.9 2010/08/25 15:41:16 darkside Exp $
 
+EAPI=3
 inherit eutils toolchain-funcs
 
 IUSE=""
@@ -10,31 +11,33 @@
 HOMEPAGE="http://www.tigr.net/afterstep/list.pl"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ppc sparc x86"
+KEYWORDS="~amd64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~x64-solaris"
 
 DEPEND="x11-libs/libXpm"
 RDEPEND="${DEPEND}
 	x11-proto/xextproto
 	x11-proto/xproto"
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
+src_prepare() {
 	epatch "${FILESDIR}"/${PN}-gcc41.patch
 	ln -s themes/classic default_theme
 }
 
+src_configure() { :; }
+
 src_compile() {
 	local x
+	# will break Solaris
+	[[ ${CHOST} == *-linux-gnu ]] && CFLAGS="${CFLAGS} \
+		-Dlinux \
+		-D_POSIX_C_SOURCE=199309L \
+		-D_POSIX_SOURCE \
+		-D_XOPEN_SOURCE"
 	for x in asclock parser symbols config
 	do
 		$(tc-getCC) \
 			${CPPFLAGS} ${CFLAGS} ${ASFLAGS} \
-			-I/usr/include \
-			-Dlinux \
-			-D_POSIX_C_SOURCE=199309L \
-			-D_POSIX_SOURCE \
-			-D_XOPEN_SOURCE \
+			-I"${EPREFIX}"/usr/include \
 			-D_BSD_SOURCE \
 			-D_SVID_SOURCE \
 			-DFUNCPROTO=15 \
@@ -45,8 +48,8 @@
 		${LDFLAGS} \
 		-o asclock \
 		asclock.o parser.o symbols.o config.o \
-		-L/usr/lib \
-		-L/usr/lib/X11 \
+		-L"${EPREFIX}"/usr/lib \
+		-L"${EPREFIX}"/usr/lib/X11 \
 		-lXpm -lXext -lX11 || die "link asclock failed"
 }
 






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-plugins/asclock: ChangeLog asclock-2.0.12-r1.ebuild
@ 2012-06-12 13:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-12 13:32 UTC (permalink / raw
  To: gentoo-commits

ago         12/06/12 13:32:15

  Modified:             ChangeLog asclock-2.0.12-r1.ebuild
  Log:
  Stable for amd64, wrt bug #418669
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.24                 x11-plugins/asclock/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	25 Aug 2010 15:41:16 -0000	1.23
+++ ChangeLog	12 Jun 2012 13:32:15 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for x11-plugins/asclock
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v 1.23 2010/08/25 15:41:16 darkside Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/ChangeLog,v 1.24 2012/06/12 13:32:15 ago Exp $
+
+  12 Jun 2012; Agostino Sarubbo <ago@gentoo.org> asclock-2.0.12-r1.ebuild:
+  Stable for amd64, wrt bug #418669
 
   25 Aug 2010; Jeremy Olexa <darkside@gentoo.org> asclock-2.0.12-r1.ebuild:
   Migrate changes from Gentoo Prefix overlay. KEYWORDS, EAPI3, CFLAG



1.10                 x11-plugins/asclock/asclock-2.0.12-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild?r1=1.9&r2=1.10

Index: asclock-2.0.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- asclock-2.0.12-r1.ebuild	25 Aug 2010 15:41:16 -0000	1.9
+++ asclock-2.0.12-r1.ebuild	12 Jun 2012 13:32:15 -0000	1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v 1.9 2010/08/25 15:41:16 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asclock/asclock-2.0.12-r1.ebuild,v 1.10 2012/06/12 13:32:15 ago Exp $
 
 EAPI=3
 inherit eutils toolchain-funcs
@@ -11,7 +11,7 @@
 HOMEPAGE="http://www.tigr.net/afterstep/list.pl"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~x64-solaris"
+KEYWORDS="amd64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~x64-solaris"
 
 DEPEND="x11-libs/libXpm"
 RDEPEND="${DEPEND}






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-06-12 13:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-12 13:32 [gentoo-commits] gentoo-x86 commit in x11-plugins/asclock: ChangeLog asclock-2.0.12-r1.ebuild Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2010-08-25 15:41 Jeremy Olexa (darkside)
2009-11-03 15:27 Bernard Cafarelli (voyageur)
2009-05-03  2:13 Arfrever Frehtes Taifersar Arahesis (arfrever)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox