public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/pcmciautils: ChangeLog pcmciautils-017.ebuild
@ 2010-05-26 10:16 Thilo Bangert (bangert)
  0 siblings, 0 replies; 3+ messages in thread
From: Thilo Bangert (bangert) @ 2010-05-26 10:16 UTC (permalink / raw
  To: gentoo-commits

bangert     10/05/26 10:16:17

  Modified:             ChangeLog
  Added:                pcmciautils-017.ebuild
  Log:
  version bump (#300810)
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.37                 sys-apps/pcmciautils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	16 Oct 2009 19:19:38 -0000	1.36
+++ ChangeLog	26 May 2010 10:16:17 -0000	1.37
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/pcmciautils
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/ChangeLog,v 1.36 2009/10/16 19:19:38 bangert Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/ChangeLog,v 1.37 2010/05/26 10:16:17 bangert Exp $
+
+*pcmciautils-017 (26 May 2010)
+
+  26 May 2010; Thilo Bangert <bangert@gentoo.org> +pcmciautils-017.ebuild:
+  version bump (#300810)
 
 *pcmciautils-016 (16 Oct 2009)
 



1.1                  sys-apps/pcmciautils/pcmciautils-017.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild?rev=1.1&content-type=text/plain

Index: pcmciautils-017.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild,v 1.1 2010/05/26 10:16:17 bangert Exp $

inherit eutils flag-o-matic toolchain-funcs linux-info

DESCRIPTION="PCMCIA userspace utilities for Linux kernel 2.6.13 and beyond"
HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html"
SRC_URI="mirror://kernel/linux/utils/kernel/pcmcia/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sh ~x86"
IUSE="debug static staticsocket"

RDEPEND=">=sys-fs/sysfsutils-1.3.0
	>=sys-apps/module-init-tools-3.2_pre4"
DEPEND="${RDEPEND}
	dev-util/yacc
	sys-devel/flex"

CONFIG_CHECK="~PCMCIA"
ERROR_PCMCIA="${P} requires 16-bit PCMCIA support (CONFIG_PCMCIA)"

pkg_setup() {
	linux-info_pkg_setup
	kernel_is lt 2 6 13 && ewarn "${P} requires at least kernel 2.6.13."
}

use_tf() { use $1 && echo true || echo false ; }
src_unpack() {
	unpack ${A}
	cd "${S}"
	sed -i \
		-e '/^DEBUG\>/s:=.*:= false:' \
		-e '/^UDEV\>/s:=.*:= true:' \
		-e '/CFLAGS/s:-fomit-frame-pointer::' \
		-e '/^STATIC\>/s:=.*:= '$(use_tf static)':' \
		-e '/^STARTUP\>/s:=.*:= '$(use_tf staticsocket)':' \
		Makefile || die
	use debug && append-flags -DDEBUG
}

src_compile() {
	emake \
		OPTIMIZATION="${CFLAGS} ${CPPFLAGS}" \
		V="true" \
		CC="$(tc-getCC)" \
		LD="$(tc-getCC)" \
		STRIP="true" \
		|| die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	dodoc doc/*.txt
}

pkg_postinst() {
	ewarn "If you relied on pcmcia-cs to automatically load the appropriate"
	ewarn "PCMCIA-related modules upon boot, you need to add 'pcmcia' and the"
	ewarn "PCMCIA socket driver you need for this system (yenta-socket,"
	ewarn "i82092, i82365, ...) to /etc/modules.autoload.d/kernel-2.6"
}






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/pcmciautils: ChangeLog pcmciautils-017.ebuild
@ 2012-10-31 19:19 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-10-31 19:19 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/10/31 19:19:36

  Modified:             ChangeLog pcmciautils-017.ebuild
  Log:
  Use udev.eclass for determining correct udevdir value from udev.pc pkg-config file by using the udev_get_udevdir() function.
  
  (Portage version: 2.2.0_alpha135/cvs/Linux x86_64)

Revision  Changes    Path
1.39                 sys-apps/pcmciautils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	25 Feb 2012 06:43:55 -0000	1.38
+++ ChangeLog	31 Oct 2012 19:19:36 -0000	1.39
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/pcmciautils
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/ChangeLog,v 1.38 2012/02/25 06:43:55 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/ChangeLog,v 1.39 2012/10/31 19:19:36 ssuominen Exp $
+
+  31 Oct 2012; Samuli Suominen <ssuominen@gentoo.org> pcmciautils-017.ebuild:
+  Use udev.eclass for determining correct udevdir value from udev.pc pkg-config
+  file by using the udev_get_udevdir() function.
 
   25 Feb 2012; Robin H. Johnson <robbat2@gentoo.org> pcmciautils-014-r1.ebuild,
   pcmciautils-015.ebuild, pcmciautils-016.ebuild, pcmciautils-017.ebuild:



1.3                  sys-apps/pcmciautils/pcmciautils-017.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild?r1=1.2&r2=1.3

Index: pcmciautils-017.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pcmciautils-017.ebuild	25 Feb 2012 06:43:55 -0000	1.2
+++ pcmciautils-017.ebuild	31 Oct 2012 19:19:36 -0000	1.3
@@ -1,11 +1,12 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild,v 1.2 2012/02/25 06:43:55 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild,v 1.3 2012/10/31 19:19:36 ssuominen Exp $
 
-inherit eutils flag-o-matic toolchain-funcs linux-info
+EAPI=4
+inherit flag-o-matic linux-info toolchain-funcs udev
 
 DESCRIPTION="PCMCIA userspace utilities for Linux kernel 2.6.13 and beyond"
-HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html"
+HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/pcmcia/"
 SRC_URI="mirror://kernel/linux/utils/kernel/pcmcia/${P}.tar.bz2"
 
 LICENSE="GPL-2"
@@ -28,9 +29,7 @@
 }
 
 use_tf() { use $1 && echo true || echo false ; }
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
+src_prepare() {
 	sed -i \
 		-e '/^DEBUG\>/s:=.*:= false:' \
 		-e '/^UDEV\>/s:=.*:= true:' \
@@ -44,15 +43,18 @@
 src_compile() {
 	emake \
 		OPTIMIZATION="${CFLAGS} ${CPPFLAGS}" \
-		V="true" \
+		V=true \
 		CC="$(tc-getCC)" \
 		LD="$(tc-getCC)" \
-		STRIP="true" \
-		|| die "emake failed"
+		STRIP=true
 }
 
 src_install() {
-	emake DESTDIR="${D}" install || die "make install failed"
+	emake \
+		DESTDIR="${D}" \
+		udevdir="$(udev_get_udevdir)" \
+		install
+
 	dodoc doc/*.txt
 }
 





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/pcmciautils: ChangeLog pcmciautils-017.ebuild
@ 2012-10-31 19:24 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-10-31 19:24 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/10/31 19:24:28

  Modified:             ChangeLog pcmciautils-017.ebuild
  Log:
  Use virtual/yacc instead of hardcoding dev-util/yacc wrt #425756 by David Carlos Manuelda
  
  (Portage version: 2.2.0_alpha135/cvs/Linux x86_64)

Revision  Changes    Path
1.40                 sys-apps/pcmciautils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	31 Oct 2012 19:19:36 -0000	1.39
+++ ChangeLog	31 Oct 2012 19:24:28 -0000	1.40
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/pcmciautils
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/ChangeLog,v 1.39 2012/10/31 19:19:36 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/ChangeLog,v 1.40 2012/10/31 19:24:28 ssuominen Exp $
+
+  31 Oct 2012; Samuli Suominen <ssuominen@gentoo.org> pcmciautils-017.ebuild:
+  Use virtual/yacc instead of hardcoding dev-util/yacc wrt #425756 by David
+  Carlos Manuelda
 
   31 Oct 2012; Samuli Suominen <ssuominen@gentoo.org> pcmciautils-017.ebuild:
   Use udev.eclass for determining correct udevdir value from udev.pc pkg-config



1.4                  sys-apps/pcmciautils/pcmciautils-017.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild?r1=1.3&r2=1.4

Index: pcmciautils-017.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pcmciautils-017.ebuild	31 Oct 2012 19:19:36 -0000	1.3
+++ pcmciautils-017.ebuild	31 Oct 2012 19:24:28 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild,v 1.3 2012/10/31 19:19:36 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/pcmciautils-017.ebuild,v 1.4 2012/10/31 19:24:28 ssuominen Exp $
 
 EAPI=4
 inherit flag-o-matic linux-info toolchain-funcs udev
@@ -17,7 +17,7 @@
 RDEPEND=">=sys-fs/sysfsutils-1.3.0
 	virtual/modutils"
 DEPEND="${RDEPEND}
-	dev-util/yacc
+	virtual/yacc
 	sys-devel/flex"
 
 CONFIG_CHECK="~PCMCIA"





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

end of thread, other threads:[~2012-10-31 19:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-31 19:24 [gentoo-commits] gentoo-x86 commit in sys-apps/pcmciautils: ChangeLog pcmciautils-017.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2012-10-31 19:19 Samuli Suominen (ssuominen)
2010-05-26 10:16 Thilo Bangert (bangert)

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