Added net-p2p section

This commit is contained in:
Torsten Kurbad 2012-11-14 15:06:41 +01:00
parent 46e55e6027
commit 890c097eb5
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,2 @@
AUX jdownloader.initd 349 SHA256 1cf85c764d57e8069aec791570767558f36fd76fd725b844e51d225f6864d325 SHA512 72f6036b558a259136a5e7372c4947842393f696184ca0df029ce37bcbda11d2015a7384736fddc8c0fc50627d3ac7d96ef6a7774e58378e9927623050085cda WHIRLPOOL e1a6812a1837d1ebd5f79c42fd619364b656b841c6f96dfe3615d9d9d01b0bbd780e60fd7373c26dc5863bf7a3bcb398c03573fefe5667f47c230aa42f217f98
EBUILD jdownloader-9999.ebuild 527 SHA256 025daf9e633fee0d851f62ff8ef18c49f02355c1c725e0119bc3687f938c8c8f SHA512 1706315d5feac3a1c6c503f9bea48e7a88f02d269c75729ae6cacf651a6cfa8aa18af05e08e11efe3377e3d04bc07ed100501c5ebd8ef725f83342bb3c416646 WHIRLPOOL f081d33f86f53be55a4df64b0a966d00aee4e21ad645ce3fa3c848be45ff192b53a3cf3bba4556bf65955fdebcfb64da6981fbaa224996ab95cab563af6208b2

View File

@ -0,0 +1,20 @@
#!/sbin/runscript
depend() {
need net
}
start() {
ebegin "Starting jDownloader web interface"
[ -x "/usr/bin/Xvfb" ] && /usr/bin/Xvfb :100 -ac >/dev/null 2>&1 &
cd "${JD_HOME}"
DISPLAY=":100.0" /usr/bin/java -Xmx768m -jar JDownloader.jar >/dev/null 2>&1 &
eend $?
}
stop() {
ebegin "Stopping jDownloader"
killall Xvfb
sleep 1
eend $?
}

View File

@ -0,0 +1,23 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
inherit subversion
DESCRIPTION="Platform Independent Tool to Download Files from One-Click-Hosting Sites"
HOMEPAGE="http://jdownloader.org"
ESVN_REPO_URI="svn://svn.jdownloader.org/jdownloader
svn://svn.appwork.org/utils
svn://svn.appwork.org/updclient
svn://svn.jdownloader.org/jdownloader/browser"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND=">=virtual/jre-1.5"