From bfc20f51d0fe1163c37617f7702c24a2036341e0 Mon Sep 17 00:00:00 2001 From: BOB CHENGBIN Date: Fri, 22 Aug 2014 17:46:03 +0800 Subject: [PATCH] Create phpdaemon-0.1.ebuild --- app-admin/phpdaemon/phpdaemon-0.1.ebuild | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 app-admin/phpdaemon/phpdaemon-0.1.ebuild diff --git a/app-admin/phpdaemon/phpdaemon-0.1.ebuild b/app-admin/phpdaemon/phpdaemon-0.1.ebuild new file mode 100644 index 00000000000..244de91f244 --- /dev/null +++ b/app-admin/phpdaemon/phpdaemon-0.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + + +DESCRIPTION="php script daemon" +HOMEPAGE="https://github.com/bobchengbin/phpdaemon" +EGIT_BRANCH="master" +EGIT_REPO_URI="https://github.com/bobchengbin/phpdaemon.git" +inherit git-2 eutils + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-lang/php" +RDEPEND="${DEPEND}" + +src_install(){ + dobin phpdaemon + doinitd phpdaemon_link + dodoc README.txt +}