public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: ChangeLog pilot-link-0.12.3.ebuild
@ 2007-12-19 21:09 Wulf Krueger (philantrop)
  0 siblings, 0 replies; 9+ messages in thread
From: Wulf Krueger (philantrop) @ 2007-12-19 21:09 UTC (permalink / raw
  To: gentoo-commits

philantrop    07/12/19 21:09:50

  Modified:             ChangeLog
  Added:                pilot-link-0.12.3.ebuild
  Log:
  Version bump as per bug 202383.
  (Portage version: 2.1.4_rc9)

Revision  Changes    Path
1.31                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	7 Oct 2007 17:15:16 -0000	1.30
+++ ChangeLog	19 Dec 2007 21:09:49 -0000	1.31
@@ -1,6 +1,13 @@
 # ChangeLog for app-pda/pilot-link
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.30 2007/10/07 17:15:16 philantrop Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.31 2007/12/19 21:09:49 philantrop Exp $
+
+*pilot-link-0.12.3 (19 Dec 2007)
+
+  19 Dec 2007; Wulf C. Krueger <philantrop@gentoo.org>
+  +files/pilot-link-0.12.3-java-install.patch,
+  +files/pilot-link-0.12.3-png.patch, +pilot-link-0.12.3.ebuild:
+  Version bump as per bug 202383.
 
   07 Oct 2007; Wulf C. Krueger <philantrop@gentoo.org>
   +files/pilot-link-0.12.2-werror_194921.patch, pilot-link-0.11.8.ebuild,



1.1                  app-pda/pilot-link/pilot-link-0.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.1&content-type=text/plain

Index: pilot-link-0.12.3.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.1 2007/12/19 21:09:49 philantrop Exp $

inherit perl-module java-pkg-opt-2 eutils autotools

DESCRIPTION="suite of tools for moving data between a Palm device and a desktop"
HOMEPAGE="http://www.pilot-link.org/"
SRC_URI="http://pilot-link.org/source/${P}.tar.bz2"

LICENSE="|| ( GPL-2 LGPL-2 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"

IUSE="perl java python png readline threads bluetooth usb debug"

BOTH_DEPEND="virtual/libiconv
	>=sys-libs/ncurses-5.6-r1
	>=dev-libs/popt-1.10.7
	perl? ( >=dev-lang/perl-5.8.8-r2 )
	python? ( >=dev-lang/python-2.4.4-r4 )
	png? ( >=media-libs/libpng-1.2.18-r1 )
	readline? ( >=sys-libs/readline-5.2_p4 )
	usb? ( >=dev-libs/libusb-0.1.12 )
	bluetooth? ( >=net-wireless/bluez-libs-3.10 )"

DEPEND="${BOTH_DEPEND}
	java? ( >=virtual/jdk-1.4 )"

RDEPEND="${BOTH_DEPEND}
	java? ( >=virtual/jre-1.4 )"

src_unpack() {
	unpack ${A}
	cd "${S}"

	# Fixing some broken configure switches and automagic deps.
	epatch "${FILESDIR}/${PN}-0.12.2-readline.patch"
	epatch "${FILESDIR}/${PN}-0.12.2-threads.patch"
	epatch "${FILESDIR}/${P}-png.patch"

	# Upstream's check for Werror was wrong. Fixes bug 194921.
	epatch "${FILESDIR}/${PN}-0.12.2-werror_194921.patch"

	# We install the Java bindings using the eclass functions so we disable
	# their installation here.
	use java && epatch "${FILESDIR}/${P}-java-install.patch"

	AT_M4DIR="m4" eautoreconf
}

src_compile() {
	# tcl/tk support is disabled as per upstream request.
	econf \
		--includedir=/usr/include/libpisock \
		--enable-conduits \
		--with-tcl=no \
		--without-included-popt \
		--disable-compile-werror \
		$(use_enable threads) \
		$(use_enable usb libusb) \
		$(use_enable debug) \
		$(use_with png libpng $(libpng-config --prefix)) \
		$(use_with bluetooth bluez) \
		$(use_with readline) \
		$(use_with perl) \
		$(use_with java) \
		$(use_with python) \
		|| die "econf failed"

	emake || die "emake failed"

	if use perl ; then
		cd "${S}/bindings/Perl"
		perl-module_src_prep
		perl-module_src_compile
	fi
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	dodoc ChangeLog README doc/README* doc/TODO NEWS AUTHORS || die "installing docs failed"

	if use java ; then
		cd "${S}/bindings/Java"
		java-pkg_newjar ${PN}.jar
		java-pkg_doso libjpisock.so
	fi

	if use perl ; then
		cd "${S}/bindings/Perl"
		perl-module_src_install
	fi
}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: ChangeLog pilot-link-0.12.3.ebuild
@ 2007-12-20 23:08 Wulf Krueger (philantrop)
  0 siblings, 0 replies; 9+ messages in thread
From: Wulf Krueger (philantrop) @ 2007-12-20 23:08 UTC (permalink / raw
  To: gentoo-commits

philantrop    07/12/20 23:08:58

  Modified:             ChangeLog pilot-link-0.12.3.ebuild
  Log:
  Added an upstream patch to fix 64-bit issues causing problems in some applications using pilot-link (e. g. jpilot, bug 87842). Disabled parallel make for now as it's badly broken (bug 202857).
  (Portage version: 2.1.4_rc9)

Revision  Changes    Path
1.32                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	19 Dec 2007 21:09:49 -0000	1.31
+++ ChangeLog	20 Dec 2007 23:08:58 -0000	1.32
@@ -1,6 +1,12 @@
 # ChangeLog for app-pda/pilot-link
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.31 2007/12/19 21:09:49 philantrop Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.32 2007/12/20 23:08:58 philantrop Exp $
+
+  20 Dec 2007; Wulf C. Krueger <philantrop@gentoo.org>
+  +files/pilot-link-0.12.3-int_types.patch, pilot-link-0.12.3.ebuild:
+  Added an upstream patch to fix 64-bit issues causing problems in some
+  applications using pilot-link (e. g. jpilot, bug 87842). Disabled parallel
+  make for now as it's badly broken (bug 202857).
 
 *pilot-link-0.12.3 (19 Dec 2007)
 



1.2                  app-pda/pilot-link/pilot-link-0.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?r1=1.1&r2=1.2

Index: pilot-link-0.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pilot-link-0.12.3.ebuild	19 Dec 2007 21:09:49 -0000	1.1
+++ pilot-link-0.12.3.ebuild	20 Dec 2007 23:08:58 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.1 2007/12/19 21:09:49 philantrop Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.2 2007/12/20 23:08:58 philantrop Exp $
 
 inherit perl-module java-pkg-opt-2 eutils autotools
 
@@ -30,6 +30,9 @@
 RDEPEND="${BOTH_DEPEND}
 	java? ( >=virtual/jre-1.4 )"
 
+# Unfortunately, parallel compilation is badly broken. cf. bug  202857.
+MAKEOPTS="${MAKEOPTS} -j1"
+
 src_unpack() {
 	unpack ${A}
 	cd "${S}"
@@ -46,6 +49,9 @@
 	# their installation here.
 	use java && epatch "${FILESDIR}/${P}-java-install.patch"
 
+	# Upstream patch to fix 64-bit issues.
+	epatch "${FILESDIR}/${P}-int_types.patch"
+
 	AT_M4DIR="m4" eautoreconf
 }
 



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: ChangeLog pilot-link-0.12.3.ebuild
@ 2008-01-28 19:34 Wulf Krueger (philantrop)
  0 siblings, 0 replies; 9+ messages in thread
From: Wulf Krueger (philantrop) @ 2008-01-28 19:34 UTC (permalink / raw
  To: gentoo-commits

philantrop    08/01/28 19:34:49

  Modified:             ChangeLog pilot-link-0.12.3.ebuild
  Log:
  Marked stable on amd64 as per bug 207634.
  (Portage version: 2.1.4)

Revision  Changes    Path
1.34                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	22 Dec 2007 14:49:18 -0000	1.33
+++ ChangeLog	28 Jan 2008 19:34:49 -0000	1.34
@@ -1,6 +1,10 @@
 # ChangeLog for app-pda/pilot-link
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.33 2007/12/22 14:49:18 philantrop Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.34 2008/01/28 19:34:49 philantrop Exp $
+
+  28 Jan 2008; Wulf C. Krueger <philantrop@gentoo.org>
+  pilot-link-0.12.3.ebuild:
+  Marked stable on amd64 as per bug 207634.
 
   22 Dec 2007; Wulf C. Krueger <philantrop@gentoo.org>
   files/pilot-link-0.12.3-int_types.patch:



1.3                  app-pda/pilot-link/pilot-link-0.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?r1=1.2&r2=1.3

Index: pilot-link-0.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pilot-link-0.12.3.ebuild	20 Dec 2007 23:08:58 -0000	1.2
+++ pilot-link-0.12.3.ebuild	28 Jan 2008 19:34:49 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.2 2007/12/20 23:08:58 philantrop Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.3 2008/01/28 19:34:49 philantrop Exp $
 
 inherit perl-module java-pkg-opt-2 eutils autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-2 LGPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc ~x86"
 
 IUSE="perl java python png readline threads bluetooth usb debug"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: ChangeLog pilot-link-0.12.3.ebuild
@ 2008-01-29 12:01 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2008-01-29 12:01 UTC (permalink / raw
  To: gentoo-commits

ranger      08/01/29 12:01:36

  Modified:             ChangeLog pilot-link-0.12.3.ebuild
  Log:
  Marking pilot-link-0.12.3 ~ppc64 for bug 207634
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.35                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	28 Jan 2008 19:34:49 -0000	1.34
+++ ChangeLog	29 Jan 2008 12:01:36 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for app-pda/pilot-link
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.34 2008/01/28 19:34:49 philantrop Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.35 2008/01/29 12:01:36 ranger Exp $
+
+  29 Jan 2008; Brent Baude <ranger@gentoo.org> pilot-link-0.12.3.ebuild:
+  Marking pilot-link-0.12.3 ~ppc64 for bug 207634
 
   28 Jan 2008; Wulf C. Krueger <philantrop@gentoo.org>
   pilot-link-0.12.3.ebuild:



1.4                  app-pda/pilot-link/pilot-link-0.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?r1=1.3&r2=1.4

Index: pilot-link-0.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pilot-link-0.12.3.ebuild	28 Jan 2008 19:34:49 -0000	1.3
+++ pilot-link-0.12.3.ebuild	29 Jan 2008 12:01:36 -0000	1.4
@@ -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-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.3 2008/01/28 19:34:49 philantrop Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.4 2008/01/29 12:01:36 ranger Exp $
 
 inherit perl-module java-pkg-opt-2 eutils autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-2 LGPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 IUSE="perl java python png readline threads bluetooth usb debug"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: ChangeLog pilot-link-0.12.3.ebuild
@ 2008-01-29 14:52 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2008-01-29 14:52 UTC (permalink / raw
  To: gentoo-commits

armin76     08/01/29 14:52:13

  Modified:             ChangeLog pilot-link-0.12.3.ebuild
  Log:
  alpha/ia64/sparc stable
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.36                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	29 Jan 2008 12:01:36 -0000	1.35
+++ ChangeLog	29 Jan 2008 14:52:13 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for app-pda/pilot-link
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.35 2008/01/29 12:01:36 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.36 2008/01/29 14:52:13 armin76 Exp $
+
+  29 Jan 2008; Raúl Porcel <armin76@gentoo.org> pilot-link-0.12.3.ebuild:
+  alpha/ia64/sparc stable wrt #207634
 
   29 Jan 2008; Brent Baude <ranger@gentoo.org> pilot-link-0.12.3.ebuild:
   Marking pilot-link-0.12.3 ~ppc64 for bug 207634



1.5                  app-pda/pilot-link/pilot-link-0.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?r1=1.4&r2=1.5

Index: pilot-link-0.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pilot-link-0.12.3.ebuild	29 Jan 2008 12:01:36 -0000	1.4
+++ pilot-link-0.12.3.ebuild	29 Jan 2008 14:52:13 -0000	1.5
@@ -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-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.4 2008/01/29 12:01:36 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.5 2008/01/29 14:52:13 armin76 Exp $
 
 inherit perl-module java-pkg-opt-2 eutils autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-2 LGPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 ia64 ~ppc ~ppc64 sparc ~x86"
 
 IUSE="perl java python png readline threads bluetooth usb debug"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: ChangeLog pilot-link-0.12.3.ebuild
@ 2008-01-30  7:36 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 9+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-01-30  7:36 UTC (permalink / raw
  To: gentoo-commits

opfer       08/01/30 07:36:37

  Modified:             ChangeLog pilot-link-0.12.3.ebuild
  Log:
  stable x86, bug 207634
  (Portage version: 2.1.3.19, RepoMan options: --force)

Revision  Changes    Path
1.37                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	29 Jan 2008 14:52:13 -0000	1.36
+++ ChangeLog	30 Jan 2008 07:36:37 -0000	1.37
@@ -1,6 +1,10 @@
 # ChangeLog for app-pda/pilot-link
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.36 2008/01/29 14:52:13 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.37 2008/01/30 07:36:37 opfer Exp $
+
+  30 Jan 2008; Christian Faulhammer <opfer@gentoo.org>
+  pilot-link-0.12.3.ebuild:
+  stable x86, bug 207634
 
   29 Jan 2008; Raúl Porcel <armin76@gentoo.org> pilot-link-0.12.3.ebuild:
   alpha/ia64/sparc stable wrt #207634



1.6                  app-pda/pilot-link/pilot-link-0.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?r1=1.5&r2=1.6

Index: pilot-link-0.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pilot-link-0.12.3.ebuild	29 Jan 2008 14:52:13 -0000	1.5
+++ pilot-link-0.12.3.ebuild	30 Jan 2008 07:36:37 -0000	1.6
@@ -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-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.5 2008/01/29 14:52:13 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.6 2008/01/30 07:36:37 opfer Exp $
 
 inherit perl-module java-pkg-opt-2 eutils autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-2 LGPL-2 )"
 SLOT="0"
-KEYWORDS="alpha amd64 ia64 ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 
 IUSE="perl java python png readline threads bluetooth usb debug"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: ChangeLog pilot-link-0.12.3.ebuild
@ 2008-01-31  1:59 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2008-01-31  1:59 UTC (permalink / raw
  To: gentoo-commits

ranger      08/01/31 01:59:04

  Modified:             ChangeLog pilot-link-0.12.3.ebuild
  Log:
  ppc for bug 207634
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.38                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	30 Jan 2008 07:36:37 -0000	1.37
+++ ChangeLog	31 Jan 2008 01:59:03 -0000	1.38
@@ -1,6 +1,9 @@
 # ChangeLog for app-pda/pilot-link
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.37 2008/01/30 07:36:37 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.38 2008/01/31 01:59:03 ranger Exp $
+
+  31 Jan 2008; Brent Baude <ranger@gentoo.org> pilot-link-0.12.3.ebuild:
+  Marking pilot-link-0.12.3 ppc for bug 207634
 
   30 Jan 2008; Christian Faulhammer <opfer@gentoo.org>
   pilot-link-0.12.3.ebuild:



1.7                  app-pda/pilot-link/pilot-link-0.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?r1=1.6&r2=1.7

Index: pilot-link-0.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pilot-link-0.12.3.ebuild	30 Jan 2008 07:36:37 -0000	1.6
+++ pilot-link-0.12.3.ebuild	31 Jan 2008 01:59:03 -0000	1.7
@@ -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-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.6 2008/01/30 07:36:37 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.7 2008/01/31 01:59:03 ranger Exp $
 
 inherit perl-module java-pkg-opt-2 eutils autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-2 LGPL-2 )"
 SLOT="0"
-KEYWORDS="alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 ia64 ppc ~ppc64 sparc x86"
 
 IUSE="perl java python png readline threads bluetooth usb debug"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: ChangeLog pilot-link-0.12.3.ebuild
@ 2008-02-24 22:03 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 9+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2008-02-24 22:03 UTC (permalink / raw
  To: gentoo-commits

eva         08/02/24 22:03:17

  Modified:             ChangeLog pilot-link-0.12.3.ebuild
  Log:
  fix python/distutils eclass use, bug #207667
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.39                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	31 Jan 2008 01:59:03 -0000	1.38
+++ ChangeLog	24 Feb 2008 22:03:16 -0000	1.39
@@ -1,6 +1,10 @@
 # ChangeLog for app-pda/pilot-link
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.38 2008/01/31 01:59:03 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.39 2008/02/24 22:03:16 eva Exp $
+
+  17 Feb 2008; Gilles Dartiguelongue <eva@gentoo.org>
+  +files/pilot-link-0.12.3-distutils.patch, pilot-link-0.12.3.ebuild:
+  fix python/distutils eclass use, bug #207667
 
   31 Jan 2008; Brent Baude <ranger@gentoo.org> pilot-link-0.12.3.ebuild:
   Marking pilot-link-0.12.3 ppc for bug 207634



1.8                  app-pda/pilot-link/pilot-link-0.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?r1=1.7&r2=1.8

Index: pilot-link-0.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pilot-link-0.12.3.ebuild	31 Jan 2008 01:59:03 -0000	1.7
+++ pilot-link-0.12.3.ebuild	24 Feb 2008 22:03:16 -0000	1.8
@@ -1,8 +1,8 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.7 2008/01/31 01:59:03 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.8 2008/02/24 22:03:16 eva Exp $
 
-inherit perl-module java-pkg-opt-2 eutils autotools
+inherit perl-module java-pkg-opt-2 eutils autotools distutils
 
 DESCRIPTION="suite of tools for moving data between a Palm device and a desktop"
 HOMEPAGE="http://www.pilot-link.org/"
@@ -49,6 +49,10 @@
 	# their installation here.
 	use java && epatch "${FILESDIR}/${P}-java-install.patch"
 
+	# We install the Python bindings using the eclass functions so we disable
+	# their makefile.am rules here
+	use python && epatch  "${FILESDIR}/${P}-distutils.patch"
+
 	# Upstream patch to fix 64-bit issues.
 	epatch "${FILESDIR}/${P}-int_types.patch"
 
@@ -81,6 +85,11 @@
 		perl-module_src_prep
 		perl-module_src_compile
 	fi
+
+	if use python; then
+		cd "${S}/bindings/Python"
+		distutils_src_compile
+	fi
 }
 
 src_install() {
@@ -98,4 +107,20 @@
 		cd "${S}/bindings/Perl"
 		perl-module_src_install
 	fi
+
+	if use python; then
+		cd "${S}/bindings/Python"
+		distutils_src_install
+	fi
+}
+
+pkg_postinst() {
+	if use python; then
+		python_version
+		python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages
+	fi
+}
+
+pkg_postrm() {
+	use python && distutils_pkg_postrm
 }



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: ChangeLog pilot-link-0.12.3.ebuild
@ 2008-05-15 14:36 Markus Rothe (corsair)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Rothe (corsair) @ 2008-05-15 14:36 UTC (permalink / raw
  To: gentoo-commits

corsair     08/05/15 14:36:00

  Modified:             ChangeLog pilot-link-0.12.3.ebuild
  Log:
  Stable on ppc64; bug #221063
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.41                 app-pda/pilot-link/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	8 Mar 2008 00:02:35 -0000	1.40
+++ ChangeLog	15 May 2008 14:36:00 -0000	1.41
@@ -1,6 +1,9 @@
 # ChangeLog for app-pda/pilot-link
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.40 2008/03/08 00:02:35 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.41 2008/05/15 14:36:00 corsair Exp $
+
+  15 May 2008; Markus Rothe <corsair@gentoo.org> pilot-link-0.12.3.ebuild:
+  Stable on ppc64; bug #221063
 
   08 Mar 2008; Petteri Räty <betelgeuse@gentoo.org>
   -pilot-link-0.12.2.ebuild:



1.9                  app-pda/pilot-link/pilot-link-0.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild?r1=1.8&r2=1.9

Index: pilot-link-0.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pilot-link-0.12.3.ebuild	24 Feb 2008 22:03:16 -0000	1.8
+++ pilot-link-0.12.3.ebuild	15 May 2008 14:36:00 -0000	1.9
@@ -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-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.8 2008/02/24 22:03:16 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/pilot-link-0.12.3.ebuild,v 1.9 2008/05/15 14:36:00 corsair Exp $
 
 inherit perl-module java-pkg-opt-2 eutils autotools distutils
 
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-2 LGPL-2 )"
 SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
 
 IUSE="perl java python png readline threads bluetooth usb debug"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

end of thread, other threads:[~2008-05-15 14:36 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-29 14:52 [gentoo-commits] gentoo-x86 commit in app-pda/pilot-link: ChangeLog pilot-link-0.12.3.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2008-05-15 14:36 Markus Rothe (corsair)
2008-02-24 22:03 Gilles Dartiguelongue (eva)
2008-01-31  1:59 Brent Baude (ranger)
2008-01-30  7:36 Christian Faulhammer (opfer)
2008-01-29 12:01 Brent Baude (ranger)
2008-01-28 19:34 Wulf Krueger (philantrop)
2007-12-20 23:08 Wulf Krueger (philantrop)
2007-12-19 21:09 Wulf Krueger (philantrop)

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