diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2003-01-04 01:31:30 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2003-01-04 01:31:30 +0000 |
commit | 3b110ddbc3cbc3a3d9a6be12ee3d542ddcc3686e (patch) | |
tree | b9b4de438a71ecbf6817ce5a60c26bd61eaf49cd /app-admin | |
parent | updated the description (diff) | |
download | historical-3b110ddbc3cbc3a3d9a6be12ee3d542ddcc3686e.tar.gz historical-3b110ddbc3cbc3a3d9a6be12ee3d542ddcc3686e.tar.bz2 historical-3b110ddbc3cbc3a3d9a6be12ee3d542ddcc3686e.zip |
Initial import
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/watchfolder/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/watchfolder/files/digest-watchfolder-0.3.1.1 | 1 | ||||
-rw-r--r-- | app-admin/watchfolder/watchfolder-0.3.1.1.ebuild | 36 |
3 files changed, 45 insertions, 0 deletions
diff --git a/app-admin/watchfolder/ChangeLog b/app-admin/watchfolder/ChangeLog new file mode 100644 index 000000000000..009bb9117088 --- /dev/null +++ b/app-admin/watchfolder/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-admin/watchfolder +# Copyright 2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/watchfolder/ChangeLog,v 1.1 2003/01/04 01:31:30 aliz Exp $ + +*watchfolder-0.3.1.1 (04 Jan 2003) + + 04 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> : + Initial import. Ebuild submitted by Peter Turczak <p_turczak@wiwa.de> in #11132. diff --git a/app-admin/watchfolder/files/digest-watchfolder-0.3.1.1 b/app-admin/watchfolder/files/digest-watchfolder-0.3.1.1 new file mode 100644 index 000000000000..962e7c96c442 --- /dev/null +++ b/app-admin/watchfolder/files/digest-watchfolder-0.3.1.1 @@ -0,0 +1 @@ +MD5 8926d5d86c1d0d68f69249c56a2304a1 watchfolder-0.3.1_p1.tar.gz 95848 diff --git a/app-admin/watchfolder/watchfolder-0.3.1.1.ebuild b/app-admin/watchfolder/watchfolder-0.3.1.1.ebuild new file mode 100644 index 000000000000..97590236a4e2 --- /dev/null +++ b/app-admin/watchfolder/watchfolder-0.3.1.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/watchfolder/watchfolder-0.3.1.1.ebuild,v 1.1 2003/01/04 01:31:30 aliz Exp $ + +MY_PV="${PV:0:5}_p1" + +DESCRIPTION="Watches directories and processes files, similar to the watchfolder option of Acrobat Distiller." +HOMEPAGE="" +SRC_URI="http://dstunrea.sdf-eu.org/files/${PN}-${MY_PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="" +#RDEPEND="" +S="${WORKDIR}/${PN}-${MY_PV}" + +src_unpack() { + unpack ${A} + cd ${S} + + mv Makefile Makefile.orig + sed "3s:OPT=:OPT=${CFLAGS} :" Makefile.orig >Makefile +} + +src_compile() { + emake || die +} + +src_install() { + dobin watchd + insinto /etc + doins watchd.conf + dodoc README doc/* +} |