summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2006-03-10 13:53:11 +0000
committerMarinus Schraal <foser@gentoo.org>2006-03-10 13:53:11 +0000
commit0812c3cedbcdbdece49d49d019185e40fad6b9ba (patch)
tree6c1635b1091e953684aebb43427089dacaadcc7a /app-admin/fam/fam-2.7.0.ebuild
parentVersion bump (#125464). Fix compile warnings and CFLAGS. (diff)
downloadgentoo-2-0812c3cedbcdbdece49d49d019185e40fad6b9ba.tar.gz
gentoo-2-0812c3cedbcdbdece49d49d019185e40fad6b9ba.tar.bz2
gentoo-2-0812c3cedbcdbdece49d49d019185e40fad6b9ba.zip
remove old versions and large patch (#123634)
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'app-admin/fam/fam-2.7.0.ebuild')
-rw-r--r--app-admin/fam/fam-2.7.0.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/app-admin/fam/fam-2.7.0.ebuild b/app-admin/fam/fam-2.7.0.ebuild
deleted file mode 100644
index 5d84b3ca24b5..000000000000
--- a/app-admin/fam/fam-2.7.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/fam/fam-2.7.0.ebuild,v 1.22 2005/01/01 10:58:49 eradicator Exp $
-
-inherit libtool eutils gnuconfig
-
-DESCRIPTION="FAM, the File Alteration Monitor"
-HOMEPAGE="http://oss.sgi.com/projects/fam/"
-SRC_URI="ftp://oss.sgi.com/projects/fam/download/stable/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc s390 sparc x86"
-IUSE=""
-
-DEPEND=">=net-nds/portmap-5b-r6"
-
-PROVIDE="virtual/fam"
-
-src_unpack() {
- unpack ${A}
-
- # Fix permission problems with user* in FEATURES (#35307)
- chmod u+w ${S}/configure
-
- # Please do not remove this again - fixes $S and $D in libtool linker
- # scripts (.la files)
- cd ${S}; elibtoolize
-
- gnuconfig_update
-}
-
-src_install() {
- make install DESTDIR="${D}" || die
-
- dosed "s:local_only = false:local_only = true:g" conf/fam.conf
-
- exeinto /etc/init.d
- doexe ${FILESDIR}/famd
-
- dodoc AUTHORS ChangeLog INSTALL NEWS TODO README
-}
-
-pkg_postinst() {
- einfo "To enable fam on boot you will have to add it to the"
- einfo "default profile, issue the following command as root to do so."
- echo
- einfo "rc-update add famd default"
-
- # temporary warning for people upgrading
- # 6-12-03 foser <foser@gentoo.org>
- echo
- echo
- ewarn "IMPORTANT INFO FOR USERS UPGRADING FROM OLDER (<2.7.0) FAM VERSIONS :"
- echo
- einfo "With the 2.7.0 version the fam daemon moved to sbin and was"
- einfo "renamed from 'fam' to 'famd'. These changes are for consistency"
- einfo "reasons also applied to the Gentoo init script. This means you"
- einfo "will have to remove fam from the default runlevel and add famd."
- einfo "This can be done by issueing the following commands :"
- echo
- einfo "rc-update del fam"
- einfo "rc-update add famd default"
- einfo "rm /etc/init.d/fam"
- echo
- einfo "The last command removes the old init script."
-}