public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-misc/alock: ChangeLog alock-60-r3.ebuild
@ 2009-08-16  9:29 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 3+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-08-16  9:29 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    09/08/16 09:29:02

  Modified:             ChangeLog alock-60-r3.ebuild
  Log:
  Migrate to EAPI 2 in order to drop built_with_use call.
  (Portage version: 2.2_rc38/cvs/Linux i686)

Revision  Changes    Path
1.14                 x11-misc/alock/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/alock/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/alock/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/alock/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	12 May 2008 08:42:34 -0000	1.13
+++ ChangeLog	16 Aug 2009 09:29:02 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/alock
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v 1.13 2008/05/12 08:42:34 nelchael Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v 1.14 2009/08/16 09:29:02 betelgeuse Exp $
+
+  16 Aug 2009; Petteri Räty <betelgeuse@gentoo.org> alock-60-r3.ebuild:
+  Migrate to EAPI 2 in order to drop built_with_use call.
 
   12 May 2008; Krzysiek Pawlik <nelchael@gentoo.org> alock-60-r3.ebuild:
   Add imlib and pam useflags, see bug #220425.



1.6                  x11-misc/alock/alock-60-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/alock/alock-60-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/alock/alock-60-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/alock/alock-60-r3.ebuild?r1=1.5&r2=1.6

Index: alock-60-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/alock/alock-60-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- alock-60-r3.ebuild	12 May 2008 08:42:34 -0000	1.5
+++ alock-60-r3.ebuild	16 Aug 2009 09:29:02 -0000	1.6
@@ -1,6 +1,8 @@
-# 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-misc/alock/alock-60-r3.ebuild,v 1.5 2008/05/12 08:42:34 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/alock-60-r3.ebuild,v 1.6 2009/08/16 09:29:02 betelgeuse Exp $
+
+EAPI="2"
 
 inherit eutils
 
@@ -17,43 +19,34 @@
 DEPEND="x11-libs/libX11
 	x11-libs/libXext
 	x11-libs/libXpm
-	imlib? ( media-libs/imlib2 )
+	imlib? ( media-libs/imlib2[X] )
 	pam? ( virtual/pam )"
 RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/alock-svn-${PV}
 
-pkg_setup() {
-	if use imlib && ! built_with_use media-libs/imlib2 X ; then
-		eerror "media-libs/imlib2 has to be built with X support"
-		die "emerge media-libs/imlib2 with USE=\"X\""
-	fi
-}
-
-src_unpack() {
-	unpack ${A}
+src_prepare() {
 	sed -i 's|\$(DESTDIR)\$(prefix)/man|\$(DESTDIR)\$(prefix)/share/man|g' \
 		"${S}"/Makefile || die "sed failed"
 }
 
-src_compile() {
+src_configure() {
 	econf --with-all \
 		$(use_with pam) \
 		$(use_with imlib) \
 	|| die "configure failed"
-	emake || die "make failed"
 }
 
 src_install() {
-	dobin src/alock
-	doman alock.1
-	dodoc README.txt LICENSE.txt CHANGELOG.txt
+	dobin src/alock || die
+	doman alock.1 || die
+	dodoc README.txt LICENSE.txt CHANGELOG.txt || die
 
 	insinto /usr/share/alock/xcursors
-	doins contrib/xcursor-*
+	doins contrib/xcursor-* || die
 
 	insinto /usr/share/alock/bitmaps
-	doins bitmaps/*
+	doins bitmaps/* || die
 }
 
 pkg_postinst() {






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/alock: ChangeLog alock-60-r3.ebuild
@ 2010-01-09 15:22 Patrick Lauer (patrick)
  0 siblings, 0 replies; 3+ messages in thread
From: Patrick Lauer (patrick) @ 2010-01-09 15:22 UTC (permalink / raw
  To: gentoo-commits

patrick     10/01/09 15:22:26

  Modified:             ChangeLog alock-60-r3.ebuild
  Log:
  Fixing deps for #227715
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 x11-misc/alock/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/alock/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/alock/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/alock/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	16 Aug 2009 09:29:02 -0000	1.14
+++ ChangeLog	9 Jan 2010 15:22:25 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/alock
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v 1.14 2009/08/16 09:29:02 betelgeuse Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v 1.15 2010/01/09 15:22:25 patrick Exp $
+
+  09 Jan 2010; Patrick Lauer <patrick@gentoo.org> alock-60-r3.ebuild:
+  Fixing deps for #227715
 
   16 Aug 2009; Petteri Räty <betelgeuse@gentoo.org> alock-60-r3.ebuild:
   Migrate to EAPI 2 in order to drop built_with_use call.



1.7                  x11-misc/alock/alock-60-r3.ebuild

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

Index: alock-60-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/alock/alock-60-r3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- alock-60-r3.ebuild	16 Aug 2009 09:29:02 -0000	1.6
+++ alock-60-r3.ebuild	9 Jan 2010 15:22:25 -0000	1.7
@@ -1,6 +1,6 @@
-# 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-misc/alock/alock-60-r3.ebuild,v 1.6 2009/08/16 09:29:02 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/alock-60-r3.ebuild,v 1.7 2010/01/09 15:22:25 patrick Exp $
 
 EAPI="2"
 
@@ -19,6 +19,8 @@
 DEPEND="x11-libs/libX11
 	x11-libs/libXext
 	x11-libs/libXpm
+	x11-libs/libXrender
+	x11-libs/libXcursor
 	imlib? ( media-libs/imlib2[X] )
 	pam? ( virtual/pam )"
 RDEPEND="${DEPEND}"






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/alock: ChangeLog alock-60-r3.ebuild
@ 2015-06-28  2:17 Manuel Rueger (mrueg)
  0 siblings, 0 replies; 3+ messages in thread
From: Manuel Rueger (mrueg) @ 2015-06-28  2:17 UTC (permalink / raw
  To: gentoo-commits

mrueg       15/06/28 02:17:01

  Modified:             ChangeLog
  Removed:              alock-60-r3.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.22                 x11-misc/alock/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	13 Jul 2011 19:49:48 -0000	1.21
+++ ChangeLog	28 Jun 2015 02:17:01 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/alock
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v 1.21 2011/07/13 19:49:48 maekke Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v 1.22 2015/06/28 02:17:01 mrueg Exp $
+
+  28 Jun 2015; Manuel Rüger <mrueg@gentoo.org> -alock-60-r3.ebuild:
+  Remove old.
 
   13 Jul 2011; Markus Meier <maekke@gentoo.org> alock-94.ebuild:
   x86 stable, bug #371979





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

end of thread, other threads:[~2015-06-28  2:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-28  2:17 [gentoo-commits] gentoo-x86 commit in x11-misc/alock: ChangeLog alock-60-r3.ebuild Manuel Rueger (mrueg)
  -- strict thread matches above, loose matches on Subject: below --
2010-01-09 15:22 Patrick Lauer (patrick)
2009-08-16  9:29 Petteri Raty (betelgeuse)

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