public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/plowshare: ChangeLog plowshare-20120609.ebuild
@ 2012-06-14 21:41 Hanno Boeck (hanno)
  0 siblings, 0 replies; only message in thread
From: Hanno Boeck (hanno) @ 2012-06-14 21:41 UTC (permalink / raw
  To: gentoo-commits

hanno       12/06/14 21:41:49

  Modified:             ChangeLog
  Added:                plowshare-20120609.ebuild
  Log:
  plowshare version bump
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.17                 net-misc/plowshare/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/plowshare/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	18 Sep 2011 02:17:50 -0000	1.16
+++ ChangeLog	14 Jun 2012 21:41:49 -0000	1.17
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/plowshare
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/plowshare/ChangeLog,v 1.16 2011/09/18 02:17:50 volkmar Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/plowshare/ChangeLog,v 1.17 2012/06/14 21:41:49 hanno Exp $
+
+*plowshare-20120609 (14 Jun 2012)
+
+  14 Jun 2012; Hanno Boeck <hanno@gentoo.org> +plowshare-20120609.ebuild:
+  Version bump.
 
 *plowshare-20110914 (18 Sep 2011)
 



1.1                  net-misc/plowshare/plowshare-20120609.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/plowshare-20120609.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/plowshare/plowshare-20120609.ebuild?rev=1.1&content-type=text/plain

Index: plowshare-20120609.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/plowshare/plowshare-20120609.ebuild,v 1.1 2012/06/14 21:41:49 hanno Exp $

EAPI="2"

inherit bash-completion-r1

MY_P="${PN}-snapshot-git${PV}"

DESCRIPTION="Command-line downloader and uploader for file-sharing websites"
HOMEPAGE="http://code.google.com/p/plowshare/"
SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="bash-completion +javascript +perl scripts view-captcha"

RDEPEND="
	javascript? ( dev-lang/spidermonkey )
	perl? ( dev-lang/perl
		media-gfx/imagemagick[perl] )
	view-captcha? ( || ( media-gfx/aview media-libs/libcaca ) )
	app-shells/bash
	|| ( app-text/recode ( dev-lang/perl dev-perl/HTML-Parser ) )
	app-text/tesseract[tiff]
	|| ( media-gfx/imagemagick[tiff] media-gfx/graphicsmagick[imagemagick,tiff] )
	net-misc/curl
	sys-apps/util-linux"
DEPEND=""

S=${WORKDIR}/${MY_P}

# NOTES:
# spidermonkey dep should be any javascript interpreter using /usr/bin/js

# TODO:
# dev-java/rhino could probably be an alternative for spidermonkey

src_prepare() {
	if ! use javascript; then
		sed -i -e 's:^mediafire.*::' \
			-e 's:^zshare.*::' \
			-e 's:^badongo.*::' \
			-e 's:^dataport_cz.*::' \
			-e 's:^1fichier.*::' \
			src/modules/config || die "sed failed"
		rm src/modules/{mediafire,zshare,badongo,dataport_cz,1fichier}.sh || die "rm failed"
	fi
	if ! use perl; then
		sed -i -e 's:^netload_in.*::' \
			-e 's:^badongo.*::' \
			src/modules/config || die "sed failed"
		rm src/modules/netload_in.sh || die "rm failed"
		if use javascript; then
			rm src/modules/badongo.sh || die "rm failed"
		fi

		# Don't install perl file helpers.
		sed -i -e 's:\(.*src/core.sh\).*:\1:' Makefile || die "sed failed"
	fi

	# Don't let 'make install' install docs.
	sed -i -e "/INSTALL.*DOCDIR/d" Makefile || die "sed failed"

	if use bash-completion; then
		sed -i -e \
			's:CDIR=/usr/local/share/plowshare/modules/config:CDIR=/usr/share/plowshare/modules/config:' \
			etc/plowshare.completion || die "sed failed"
	fi
}

src_compile() {
	# There is a Makefile but it's not compiling anything, let's not try.
	:
}

src_test() {
	# Disable tests because all of them need a working Internet connection.
	:
}

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

	dodoc AUTHORS CHANGELOG README || die "dodoc failed"

	if use scripts; then
		exeinto /usr/bin/
		doexe contrib/{caturl,plowdown_{add_remote_loop,loop,parallel}}.sh \
			|| die "doins failed"
	fi

	if use bash-completion; then
		newbashcomp etc/${PN}.completion ${PN} || die "newbashcomp failed"
	fi
}

pkg_postinst() {
	if ! use javascript; then
		ewarn "Without javascript you will not be able to use:"
		ewarn " zshare, mediafire, badongo, dataport_cz and 1fichier."
	fi
	if ! use perl; then
		ewarn "Without perl you will not be able to use:"
		ewarn " netload.in and badongo."
	fi
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-06-14 21:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-14 21:41 [gentoo-commits] gentoo-x86 commit in net-misc/plowshare: ChangeLog plowshare-20120609.ebuild Hanno Boeck (hanno)

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