diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2004-10-25 13:57:02 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2004-10-25 13:57:02 +0000 |
commit | bba35c48a7dd258227251d36c221dadcb0965e8d (patch) | |
tree | 2e735d49c382cd5fa90a300447344ad2ab3f9c3a /app-misc/ondir | |
parent | gpgme mask changes (diff) | |
download | gentoo-2-bba35c48a7dd258227251d36c221dadcb0965e8d.tar.gz gentoo-2-bba35c48a7dd258227251d36c221dadcb0965e8d.tar.bz2 gentoo-2-bba35c48a7dd258227251d36c221dadcb0965e8d.zip |
Version bump; updated HOMEPAGE and SRC_URI; respect user CFLAGS; use make install instead of a sleu of do* functions.
Diffstat (limited to 'app-misc/ondir')
-rw-r--r-- | app-misc/ondir/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/ondir/Manifest | 14 | ||||
-rw-r--r-- | app-misc/ondir/files/digest-ondir-0.2.2 | 1 | ||||
-rw-r--r-- | app-misc/ondir/ondir-0.2.2.ebuild | 34 |
4 files changed, 45 insertions, 12 deletions
diff --git a/app-misc/ondir/ChangeLog b/app-misc/ondir/ChangeLog index 31af7040afb7..16a4a93ded30 100644 --- a/app-misc/ondir/ChangeLog +++ b/app-misc/ondir/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-misc/ondir # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/ondir/ChangeLog,v 1.6 2004/10/21 14:27:44 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/ondir/ChangeLog,v 1.7 2004/10/25 13:57:02 ka0ttic Exp $ + +*ondir-0.2.2 (25 Oct 2004) + + 25 Oct 2004; Aaron Walker <ka0ttic@gentoo.org> +ondir-0.2.2.ebuild: + Version bump; updated HOMEPAGE and SRC_URI; respect user CFLAGS; use make + install instead of a sleu of do* functions. 21 Oct 2004; Aaron Walker <ka0ttic@gentoo.org> +metadata.xml: Add metadata (shell-tools) diff --git a/app-misc/ondir/Manifest b/app-misc/ondir/Manifest index fe68e092e497..26f526f23c2d 100644 --- a/app-misc/ondir/Manifest +++ b/app-misc/ondir/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 30084fcb434ca58607b0295dc7e0216f ondir-0.2.1.ebuild 869 -MD5 73d573a867506e56f183e752b93263af ChangeLog 773 +MD5 eb817de9b1290ef43bce618afc1b9699 ChangeLog 994 MD5 0c131a7201c4670302767f93643876fa metadata.xml 165 +MD5 ef9411f822fb8c57dc06d3f788c40d61 ondir-0.2.2.ebuild 870 MD5 60c8f133ff798b83676f2909366dbfbf files/digest-ondir-0.2.1 62 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.6 (GNU/Linux) - -iD8DBQFBd8dpEZCkKN40op4RAigHAJ9PX9fRJiJpS2qvlGR7wLhExVYXRwCgjZIB -cohPCy8s9QL+ANiQ8GBxxrA= -=3t3B ------END PGP SIGNATURE----- +MD5 62c60a68887b0d75738e24cd63fe1a23 files/digest-ondir-0.2.2 62 diff --git a/app-misc/ondir/files/digest-ondir-0.2.2 b/app-misc/ondir/files/digest-ondir-0.2.2 new file mode 100644 index 000000000000..1fd817b07b07 --- /dev/null +++ b/app-misc/ondir/files/digest-ondir-0.2.2 @@ -0,0 +1 @@ +MD5 892592d33f82f0264f27f63d9df9db75 ondir-0.2.2.tar.gz 20138 diff --git a/app-misc/ondir/ondir-0.2.2.ebuild b/app-misc/ondir/ondir-0.2.2.ebuild new file mode 100644 index 000000000000..5f36394c90c3 --- /dev/null +++ b/app-misc/ondir/ondir-0.2.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ondir/ondir-0.2.2.ebuild,v 1.1 2004/10/25 13:57:02 ka0ttic Exp $ + +DESCRIPTION="program that automatically executes scripts as you traverse directories" +HOMEPAGE="http://swapoff.org/OnDir" +SRC_URI="http://swapoff.org/files/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="virtual/libc + sys-apps/sed" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i \ + -e "s:\(/man/.*$\):/share\1:g" \ + -e "s:-g:${CFLAGS}:" Makefile || die "sed Makefile failed" +} + +src_compile() { + emake CC="${CC:-gcc}" || die +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog README INSTALL scripts.tcsh scripts.sh + newdoc ondirrc.eg ondirrc.example + dohtml changelog.html ondir.1.html +} |