diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2008-03-08 00:02:35 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2008-03-08 00:02:35 +0000 |
commit | 6da82c57d794f7a9f05bad95204887a1a8f3a530 (patch) | |
tree | c06980a0cd3d3c733528d28024cdb6734c722c0e /app-pda | |
parent | QA cleanup: Fix quoting. (diff) | |
download | gentoo-2-6da82c57d794f7a9f05bad95204887a1a8f3a530.tar.gz gentoo-2-6da82c57d794f7a9f05bad95204887a1a8f3a530.tar.bz2 gentoo-2-6da82c57d794f7a9f05bad95204887a1a8f3a530.zip |
Remove old version.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-pda')
-rw-r--r-- | app-pda/pilot-link/ChangeLog | 6 | ||||
-rw-r--r-- | app-pda/pilot-link/pilot-link-0.12.2.ebuild | 101 |
2 files changed, 5 insertions, 102 deletions
diff --git a/app-pda/pilot-link/ChangeLog b/app-pda/pilot-link/ChangeLog index f832c557a9cb..f74f8772ce93 100644 --- a/app-pda/pilot-link/ChangeLog +++ b/app-pda/pilot-link/ChangeLog @@ -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.39 2008/02/24 22:03:16 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/pilot-link/ChangeLog,v 1.40 2008/03/08 00:02:35 betelgeuse Exp $ + + 08 Mar 2008; Petteri Räty <betelgeuse@gentoo.org> + -pilot-link-0.12.2.ebuild: + Remove old version. 17 Feb 2008; Gilles Dartiguelongue <eva@gentoo.org> +files/pilot-link-0.12.3-distutils.patch, pilot-link-0.12.3.ebuild: diff --git a/app-pda/pilot-link/pilot-link-0.12.2.ebuild b/app-pda/pilot-link/pilot-link-0.12.2.ebuild deleted file mode 100644 index b177dbf63e4e..000000000000 --- a/app-pda/pilot-link/pilot-link-0.12.2.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# 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.2.ebuild,v 1.2 2007/10/07 17:15:16 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}" - - # Fix a syntax error. - epatch "${FILESDIR}/${P}-m4.patch" - - # Patch away a *lot* of broken configure switches and automagic deps. - epatch "${FILESDIR}/${P}-bluez.patch" - epatch "${FILESDIR}/${P}-png.patch" - epatch "${FILESDIR}/${P}-readline.patch" - epatch "${FILESDIR}/${P}-threads.patch" - - # Upstream's check for Werror was wrong. Fxies bug 194921. - epatch "${FILESDIR}/${P}-werror_194921.patch" - - # Some Java fixes. - if use java ; then - epatch "${FILESDIR}/${P}-java-compile.patch" - epatch "${FILESDIR}/${P}-java-install.patch" - fi - - 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 -} |