summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/daemonize/daemonize-1.6.ebuild')
-rw-r--r--sys-apps/daemonize/daemonize-1.6.ebuild31
1 files changed, 0 insertions, 31 deletions
diff --git a/sys-apps/daemonize/daemonize-1.6.ebuild b/sys-apps/daemonize/daemonize-1.6.ebuild
deleted file mode 100644
index 3e84ea785..000000000
--- a/sys-apps/daemonize/daemonize-1.6.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-
-DESCRIPTION="Runs a command as an Unix daemon"
-HOMEPAGE="http://bmc.github.com/daemonize/"
-SRC_URI="http://github.com/bmc/${PN}/tarball/release-${PV} -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-src_unpack() {
- unpack ${A}
- # Workaround commit suffix from github.
- mv "${WORKDIR}"/bmc-${PN}-* "${S}" || die
-}
-
-src_prepare() {
- sed -i \
- -e 's:\($(CC)\) $(CFLAGS) \(.*\.o\):\1 $(LDFLAGS) \2:' \
- Makefile.in || die
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc README.md CHANGELOG || die
-}