summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Lieber <klieber@gentoo.org>2003-11-11 16:36:38 +0000
committerKurt Lieber <klieber@gentoo.org>2003-11-11 16:36:38 +0000
commit5dc511d57574b4cec14bef1b39e58c8e40113177 (patch)
tree53d41643e6c5b1f82c68f3627b90d5f84cfd0b49 /net-misc/cfengine
parentadded emacs support via USE flag, use exec within session file, fixed depends (diff)
downloadgentoo-2-5dc511d57574b4cec14bef1b39e58c8e40113177.tar.gz
gentoo-2-5dc511d57574b4cec14bef1b39e58c8e40113177.tar.bz2
gentoo-2-5dc511d57574b4cec14bef1b39e58c8e40113177.zip
removed older ebuilds
Diffstat (limited to 'net-misc/cfengine')
-rw-r--r--net-misc/cfengine/cfengine-2.0.6-r1.ebuild35
-rw-r--r--net-misc/cfengine/cfengine-2.1.0.ebuild63
2 files changed, 0 insertions, 98 deletions
diff --git a/net-misc/cfengine/cfengine-2.0.6-r1.ebuild b/net-misc/cfengine/cfengine-2.0.6-r1.ebuild
deleted file mode 100644
index 20727a8e6d42..000000000000
--- a/net-misc/cfengine/cfengine-2.0.6-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/cfengine/cfengine-2.0.6-r1.ebuild,v 1.3 2003/09/08 06:43:56 vapier Exp $
-
-DESCRIPTION="An agent/software robot and a high level policy language for building expert systems to administrate and configure large computer networks"
-HOMEPAGE="http://www.iu.hio.no/cfengine/"
-SRC_URI="ftp://ftp.iu.hio.no/pub/cfengine/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc"
-
-DEPEND="virtual/glibc
- >=sys-libs/db-3.2
- dev-libs/openssl"
-
-src_unpack(){
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-db4.diff
-}
-
-src_compile() {
- econf --with-berkeleydb=/usr || die
- emake || die
-}
-
-src_install() {
- emake DESTDIR=${D} install || die
- dodoc AUTHORS ChangeLog COPYING DOCUMENTATION NEWS README SURVEY TODO
- dodoc doc/*.html
- doinfo doc/*.info*
- dodoc ${D}/usr/share/cfengine/*.example
- rm -rf ${D}/usr/share/cfengine ${D}/usr/doc
-}
diff --git a/net-misc/cfengine/cfengine-2.1.0.ebuild b/net-misc/cfengine/cfengine-2.1.0.ebuild
deleted file mode 100644
index 6b4612105fc9..000000000000
--- a/net-misc/cfengine/cfengine-2.1.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $
-
-PARCH=${P/_beta/b}
-DESCRIPTION="An agent/software robot and a high level policy language for building expert systems to administrate and configure large computer networks"
-HOMEPAGE="http://www.iu.hio.no/cfengine/"
-SRC_URI="ftp://ftp.iu.hio.no/pub/cfengine/${PARCH}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ~ppc ~sparc"
-
-DEPEND="virtual/glibc
- >=sys-libs/db-3.2
- >=dev-libs/openssl-0.9.6k"
-
-S="${WORKDIR}/${PARCH}"
-
-src_compile() {
-
- # Enforce /var/cfengine for historical compatibility
- econf \
- --with-workdir=/var/cfengine \
- --with-berkeleydb=/usr || die
-
- # Fix Makefile to skip doc & inputs install to wrong locations
- sed -i -e 's/\(SUBDIRS.*\) inputs doc/\1/' Makefile
-
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc AUTHORS ChangeLog COPYING DOCUMENTATION README TODO
-
- # Manually install doc and inputs
- doinfo doc/*.info*
- dohtml doc/*.html
- dodoc inputs/*.example
-
- # Create cfengine working directory
- mkdir -p ${D}/var/cfengine
- fperms 700 /var/cfengine
- keepdir /var/cfengine/bin
- keepdir /var/cfengine/inputs
-}
-
-pkg_postinst() {
- if [ ! -f "/var/cfengine/ppkeys/localhost.priv" ]
- then
- einfo "Generating keys for localhost."
- /usr/sbin/cfkey
- fi
-
-
- # Copy cfagent into the cfengine tree otherwise cfexecd won't
- # find it. Most hosts cache their copy of the cfengine
- # binaries here. This is the default search location for the
- # binaries.
-
- cp /usr/sbin/cf{agent,servd,execd} /var/cfengine/bin/
-}