summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-06-14 11:10:03 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-06-14 11:10:03 +0000
commit2a4344f8e8bafec41621b87d0e6d7de53e9e14a6 (patch)
tree960ccb31d58012da426674cc0281e133ca10e811 /app-mobilephone/obexftp
parentAdd missing '|| die' (bug 507926). thanks nimiux (diff)
downloadgentoo-2-2a4344f8e8bafec41621b87d0e6d7de53e9e14a6.tar.gz
gentoo-2-2a4344f8e8bafec41621b87d0e6d7de53e9e14a6.tar.bz2
gentoo-2-2a4344f8e8bafec41621b87d0e6d7de53e9e14a6.zip
Cleanup old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-mobilephone/obexftp')
-rw-r--r--app-mobilephone/obexftp/ChangeLog5
-rw-r--r--app-mobilephone/obexftp/obexftp-0.23-r1.ebuild106
2 files changed, 4 insertions, 107 deletions
diff --git a/app-mobilephone/obexftp/ChangeLog b/app-mobilephone/obexftp/ChangeLog
index 216c46483939..97fe60eacdf4 100644
--- a/app-mobilephone/obexftp/ChangeLog
+++ b/app-mobilephone/obexftp/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-mobilephone/obexftp
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexftp/ChangeLog,v 1.70 2014/06/14 10:50:36 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexftp/ChangeLog,v 1.71 2014/06/14 11:10:03 mrueg Exp $
+
+ 14 Jun 2014; Manuel Rüger <mrueg@gentoo.org> -obexftp-0.23-r1.ebuild:
+ Cleanup old.
14 Jun 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> obexftp-0.23-r2.ebuild:
x86 stable wrt bug #505272
diff --git a/app-mobilephone/obexftp/obexftp-0.23-r1.ebuild b/app-mobilephone/obexftp/obexftp-0.23-r1.ebuild
deleted file mode 100644
index a2f6cf31622d..000000000000
--- a/app-mobilephone/obexftp/obexftp-0.23-r1.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexftp/obexftp-0.23-r1.ebuild,v 1.14 2013/08/21 19:34:38 creffett Exp $
-
-EAPI="5"
-
-PYTHON_COMPAT=( python{2_6,2_7} )
-GENTOO_DEPEND_ON_PERL=no
-
-inherit distutils-r1 eutils perl-module flag-o-matic autotools
-
-DESCRIPTION="File transfer over OBEX for mobile phones"
-HOMEPAGE="http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp"
-SRC_URI="mirror://sourceforge/openobex/${P}.tar.bz2"
-SLOT="0"
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 hppa ppc ~sparc x86"
-IUSE="bluetooth debug perl python ruby tcl"
-
-RDEPEND="dev-libs/openobex
- bluetooth? ( net-wireless/bluez )
- perl? ( dev-lang/perl )
- ruby? ( dev-lang/ruby:1.8 )
- tcl? ( dev-lang/tcl )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-fixruby.patch
- epatch "${FILESDIR}/${P}-gentoo.patch"
-
- # Python bindings are built/installed manually.
- sed -e "/MAYBE_PYTHON_ = python/d" -i swig/Makefile.am || die "sed failed"
-
- eautoreconf
-}
-
-src_configure() {
- if use debug ; then
- strip-flags
- append-flags "-g -DOBEXFTP_DEBUG=5"
- fi
-
- local MYRUBY
- use ruby && MYRUBY="RUBY=/usr/bin/ruby18"
-
- econf \
- $(use_enable bluetooth) \
- $(use_enable perl) \
- $(use_enable python) \
- $(use_enable tcl) \
- $(use_enable ruby) \
- ${MYRUBY}
-}
-
-src_compile() {
- default
-
- if use python; then
- pushd swig/python/
- distutils-r1_src_compile
- popd
- fi
-}
-
-src_install() {
- # -j1 because "make -fMakefile.ruby install" fails
- # upstream added -j1 to that command so it should be removed
- # from here in the next version bump
- emake -j1 DESTDIR="${D}" INSTALLDIRS=vendor install || die "emake install failed"
-
- if use python; then
- pushd swig/python/
- distutils-r1_src_install
- popd
- fi
-
- dodoc AUTHORS ChangeLog NEWS README* THANKS TODO
- dohtml doc/*.html
-
- # Install examples
- insinto /usr/share/doc/${PF}/examples
- doins examples/*.c
- use perl && doins examples/*.pl
- use python && doins examples/*.py
- use ruby && doins examples/*.rb
- use tcl && doins examples/*.tcl
-
- if use perl ; then
- perl_delete_localpod
- perl_delete_packlist
- fi
-}
-
-pkg_postinst() {
- use perl && perl-module_pkg_postinst
- use python && distutils-r1_pkg_postinst
-}
-
-pkg_postrm() {
- use perl && perl-module_pkg_postrm
- use python && distutils-r1_pkg_postrm
-}