summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-admin/istatd/istatd-0.5.7.ebuild')
-rw-r--r--app-admin/istatd/istatd-0.5.7.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/app-admin/istatd/istatd-0.5.7.ebuild b/app-admin/istatd/istatd-0.5.7.ebuild
deleted file mode 100644
index 3df0a204c..000000000
--- a/app-admin/istatd/istatd-0.5.7.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-inherit user
-
-DESCRIPTION="Monitoring daemon serving statistics to your iStat iPhone application"
-HOMEPAGE="http://bjango.com/apps/istat/"
-SRC_URI="http://github.com/downloads/tiwilliam/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="qnaptemp"
-
-DEPEND="dev-libs/libxml2"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- enewgroup istatd
- enewuser istatd -1 -1 -1 "istatd"
-}
-
-src_configure() {
- econf $(use_with qnaptemp)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "Install failed"
-
- dodir /var/{run,cache}/${PN} || die
- fowners istatd:istatd /var/{run,cache}/${PN} || die
-
- newinitd "${FILESDIR}/istatd-init" ${PN} || die
- newconfd "${FILESDIR}/istatd-conf" ${PN} || die
-
- dodoc AUTHORS.txt DEVELOPERS.txt CHANGELOG.txt README.txt || die
-}