From 86fcecaacf1cab8c58fded79a14774b6ad7988bb Mon Sep 17 00:00:00 2001 From: Jakub Moc Date: Thu, 20 Dec 2007 11:10:54 +0000 Subject: InCVS now svn path=/sunrise/; revision=5292 --- sys-process/incron/ChangeLog | 15 ---- sys-process/incron/Manifest | 5 -- sys-process/incron/files/incron-0.5.5-gentoo.patch | 80 ---------------------- sys-process/incron/incron-0.5.5.ebuild | 34 --------- sys-process/incron/metadata.xml | 5 -- 5 files changed, 139 deletions(-) delete mode 100644 sys-process/incron/ChangeLog delete mode 100644 sys-process/incron/Manifest delete mode 100644 sys-process/incron/files/incron-0.5.5-gentoo.patch delete mode 100644 sys-process/incron/incron-0.5.5.ebuild delete mode 100644 sys-process/incron/metadata.xml (limited to 'sys-process') diff --git a/sys-process/incron/ChangeLog b/sys-process/incron/ChangeLog deleted file mode 100644 index 71bfc6a5b..000000000 --- a/sys-process/incron/ChangeLog +++ /dev/null @@ -1,15 +0,0 @@ -# ChangeLog for sys-process/incron -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 02 Jul 2007; Santiago M. Mola incron-0.5.5.ebuild: - Add ~x86 - - 24 Feb 2007; Jakub Moc incron-0.5.5.ebuild, - files/incron-0.5.5-gentoo.patch: - Fix crosscompile, honor CXXFLAGS, fix quoting, use linux-info eclass properly - - 23 Feb 2007; Christian Berendt (lhunephel) - +incron-0.5.5.ebuild, +files/incron-0.5.5-gentoo.patch, +metadata.xml: - updated ebuild for bug #162346 - diff --git a/sys-process/incron/Manifest b/sys-process/incron/Manifest deleted file mode 100644 index 70d8137be..000000000 --- a/sys-process/incron/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX incron-0.5.5-gentoo.patch 2083 RMD160 d701eacc4fadbd77ff6c3bf0140b0cc3853dbd38 SHA1 bb8865b81d067ef064303a2396f1a14400a97308 SHA256 1efa1a88e77fee5fea435510dee894dd17f062b464c5773151d671a19f49142a -DIST incron-0.5.5.tar.gz 176622 RMD160 d63b4fd65559115e1a9d46a6cefe4228c35bd2e0 SHA1 7e2dcbe86c08922ae29cddb3c614d94e44a3cbb6 SHA256 4b51f9f8b8cb019b3061817a8629eadf4d8a78085134fa9cc3b8fc04a464ea3a -EBUILD incron-0.5.5.ebuild 729 RMD160 53b1f21822ac8b14e341c7d05c3f411698c061b7 SHA1 e7069d393d545b619e2304a2ace965b775b50f51 SHA256 23ffcf4bcd6232c8877226dfc5a948c9552c4c0cd0dbd5ed0da4df79642877fd -MISC ChangeLog 566 RMD160 4f76a30a6c49a246ecc18350170a3d8bdf96dc3e SHA1 558268540c630433b6b12fadaad213ad830518f3 SHA256 416708a79372fa194f02e83213280b37d519e1d5fc95881432bc43d3b1031d20 -MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/sys-process/incron/files/incron-0.5.5-gentoo.patch b/sys-process/incron/files/incron-0.5.5-gentoo.patch deleted file mode 100644 index c16f6082c..000000000 --- a/sys-process/incron/files/incron-0.5.5-gentoo.patch +++ /dev/null @@ -1,80 +0,0 @@ -diff -Nur incron-0.5.5/Makefile incron-0.5.5-r1/Makefile ---- incron-0.5.5/Makefile 2007-02-14 15:54:33.000000000 +0100 -+++ incron-0.5.5-r1/Makefile 2007-02-23 09:57:16.000000000 +0100 -@@ -1,15 +1,16 @@ - --PREFIX = /usr/local --USERDATADIR = /var/spool/incron --SYSDATADIR = /etc/incron.d --CFGDIR = /etc --MANPATH = /usr/share/man -+PREFIX = $(DESTDIR)usr -+USERDATADIR = $(DESTDIR)var/spool/incron -+SYSDATADIR = $(DESTDIR)etc/incron.d -+CFGDIR = $(DESTDIR)etc -+MANPATH = $(DESTDIR)usr/share/man -+INITDIR = $(DESTDIR)etc/init.d - RELEASE = incron-`cat VERSION` - RELEASEDIR = /tmp/$(RELEASE) - - USER = root - --CXX = g++ -+CXX := g++ - INSTALL = install - - OPTIMIZE = -O2 -@@ -17,8 +18,8 @@ - WARNINGS = -Wall - CXXAUX = -pipe - --CXXFLAGS = $(OPTIMIZE) $(DEBUG) $(WARNINGS) $(CXXAUX) --LDFLAGS = $(WARNINGS) -+CXXFLAGS := $(OPTIMIZE) $(DEBUG) $(WARNINGS) $(CXXAUX) -+LDFLAGS += $(WARNINGS) - - PROGRAMS = incrond incrontab - -@@ -45,11 +46,15 @@ - - install: all install-man - [ -d $(PREFIX) ] -+ $(INSTALL) -m 0755 -d $(PREFIX)/bin -+ $(INSTALL) -m 0755 -d $(PREFIX)/sbin -+ $(INSTALL) -m 0755 -d $(INITDIR)/ - $(INSTALL) -m 04755 -o $(USER) incrontab $(PREFIX)/bin/ - $(INSTALL) -m 0755 incrond $(PREFIX)/sbin/ - $(INSTALL) -m 0755 -o $(USER) -d $(USERDATADIR) - $(INSTALL) -m 0755 -o $(USER) -d $(SYSDATADIR) - $(INSTALL) -m 0644 -o $(USER) incron.conf.example $(CFGDIR) -+ $(INSTALL) -m 0755 incrond-init.d $(INITDIR)/incrond - - install-man: incrontab.1 incrontab.5 incrond.8 incron.conf.5 - $(INSTALL) -m 0755 -d $(MANPATH)/man1 - -diff -Nur incron-0.5.5/incrond-init.d incron-0.5.5-r1/incrond-init.d ---- incron-0.5.5/incrond-init.d 1970-01-01 01:00:00.000000000 +0100 -+++ incron-0.5.5-r1/incrond-init.d 2007-02-23 09:53:59.000000000 +0100 -@@ -0,0 +1,22 @@ -+#!/sbin/runscript -+# Copyright 1999-2004 Gentoo Foundation -+# Distributed under the terms of the GNU General Public License v2 -+# $Header: $ -+ -+ -+depend() { -+ need localmount -+ use logger -+} -+ -+start() { -+ ebegin "Starting incrond" -+ /usr/sbin/incrond -+ eend ${?} -+} -+ -+stop() { -+ ebegin "Stopping incrond" -+ /usr/sbin/incrond -k -+ eend ${?} -+} diff --git a/sys-process/incron/incron-0.5.5.ebuild b/sys-process/incron/incron-0.5.5.ebuild deleted file mode 100644 index 60fc2cbef..000000000 --- a/sys-process/incron/incron-0.5.5.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit eutils linux-info toolchain-funcs - -DESCRIPTION="INotify based cron daemon" -HOMEPAGE="http://incron.aiken.cz/" -SRC_URI="http://inotify.aiken.cz/download/incron/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND="" - -CONFIG_CHECK="INOTIFY" -ERROR_INOTIFY="Recompile your kernel with inotify support - CONFIG_INOTIFY" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}"-gentoo.patch -} - -src_compile() { - emake CXX=$(tc-getCXX) CXXFLAGS="${CXXFLAGS}" || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" -} diff --git a/sys-process/incron/metadata.xml b/sys-process/incron/metadata.xml deleted file mode 100644 index 7e3286984..000000000 --- a/sys-process/incron/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - -maintainer-wanted - -- cgit v1.2.3-65-gdbad