diff options
author | 2006-01-15 16:34:23 +0000 | |
---|---|---|
committer | 2006-01-15 16:34:23 +0000 | |
commit | 0ec48324f252ffe958ee72aa8a250d9d2cb79484 (patch) | |
tree | ae8f3bd525c10fdaa9e03d302483259f368193e0 /app-misc/dnetc/dnetc-2.9011.497.ebuild | |
parent | * date typo fixed (diff) | |
download | gentoo-2-0ec48324f252ffe958ee72aa8a250d9d2cb79484.tar.gz gentoo-2-0ec48324f252ffe958ee72aa8a250d9d2cb79484.tar.bz2 gentoo-2-0ec48324f252ffe958ee72aa8a250d9d2cb79484.zip |
bug #117935
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'app-misc/dnetc/dnetc-2.9011.497.ebuild')
-rw-r--r-- | app-misc/dnetc/dnetc-2.9011.497.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/app-misc/dnetc/dnetc-2.9011.497.ebuild b/app-misc/dnetc/dnetc-2.9011.497.ebuild new file mode 100644 index 000000000000..958cf8a80b0c --- /dev/null +++ b/app-misc/dnetc/dnetc-2.9011.497.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/dnetc/dnetc-2.9011.497.ebuild,v 1.1 2006/01/15 16:34:23 voxus Exp $ + +inherit eutils versionator + +MAJ_PV="$(get_major_version).$(get_version_component_range 2)" +MIN_PV="$(get_version_component_range 3)" + +DESCRIPTION="distributed.net client" +HOMEPAGE="http://www.distributed.net" +SRC_URI="x86? (http://http.distributed.net/pub/dcti/prerelease/rc/dnetc${MIN_PV}-linux-x86-elf-uclibc.tar.gz)" +LICENSE="distributed.net" +SLOT="0" +KEYWORDS="~x86 -*" +RESTRICT="nomirror" +IUSE="" +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/dnetc${MIN_PV}-linux-x86-elf-uclibc" + +pkg_preinst() { + if [ -e /opt/distributed.net/dnetc ] && [ -e /etc/init.d/dnetc ]; then + ebegin "Flushing old buffers" + source /etc/conf.d/dnetc + + if [ -e /opt/distributed.net/dnetc.ini ]; then + # use ini file + /opt/distributed.net/dnetc -quiet -ini /opt/distributed.net/dnetc.ini -flush + elif [ ! -e /opt/distributed.net/dnetc.ini ] && [ ! -z ${EMAIL} ]; then + # email adress from config + /opt/distributed.net/dnetc -quiet -flush -e ${EMAIL} + fi + + eend ${?} + fi +} + +src_install() { + newinitd ${FILESDIR}/dnetc.init-r2 dnetc + newconfd ${FILESDIR}/dnetc.conf dnetc + + enewgroup dnetc + enewuser dnetc -1 -1 /opt/distributed.net dnetc + + local ownopts="--mode=0555 --group=dnetc --owner=dnetc" + + diropts ${ownopts} + dodir /opt/distributed.net + + exeopts ${ownopts} + exeinto /opt/distributed.net + doexe dnetc + + doman dnetc.1 + dodoc docs/CHANGES.txt docs/dnetc.txt docs/readme.* +} + +pkg_postinst() { + einfo "To run distributed.net client in the background at boot:" + einfo " rc-update add dnetc default" + einfo + einfo "Either configure your email address in /etc/conf.d/dnetc" + einfo "or create the configuration file /opt/distributed.net/dnetc.ini" +} + +pkg_postrm() { + if [ -d /opt/distributed.net ]; then + einfo "All files has not been removed from /opt/distributed.net" + einfo "Probably old init file and/or buffer files" + fi +} |