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 | ab0c555b64ad4c816393f22b056bd9f639181b7b (patch) | |
tree | a65657db4ddbd3d7a732bc3005ebf2fa66c19261 /app-misc | |
parent | gpgme mask changes (diff) | |
download | historical-ab0c555b64ad4c816393f22b056bd9f639181b7b.tar.gz historical-ab0c555b64ad4c816393f22b056bd9f639181b7b.tar.bz2 historical-ab0c555b64ad4c816393f22b056bd9f639181b7b.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')
-rw-r--r-- | app-misc/ondir/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/ondir/Manifest | 10 | ||||
-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, 48 insertions, 5 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..325692d87ecd 100644 --- a/app-misc/ondir/Manifest +++ b/app-misc/ondir/Manifest @@ -2,13 +2,15 @@ Hash: SHA1 MD5 30084fcb434ca58607b0295dc7e0216f ondir-0.2.1.ebuild 869 -MD5 73d573a867506e56f183e752b93263af ChangeLog 773 +MD5 3c5f052a9541d2d29c7843384ecfff87 ChangeLog 994 MD5 0c131a7201c4670302767f93643876fa metadata.xml 165 +MD5 0ddfc27cfe3b6a79b47172c60216cfb5 ondir-0.2.2.ebuild 871 MD5 60c8f133ff798b83676f2909366dbfbf files/digest-ondir-0.2.1 62 +MD5 62c60a68887b0d75738e24cd63fe1a23 files/digest-ondir-0.2.2 62 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (GNU/Linux) -iD8DBQFBd8dpEZCkKN40op4RAigHAJ9PX9fRJiJpS2qvlGR7wLhExVYXRwCgjZIB -cohPCy8s9QL+ANiQ8GBxxrA= -=3t3B +iD8DBQFBfQY3EZCkKN40op4RAs2FAJ91EXqtgkuDQ9CxLZVNYdI+67exiACdHiOw +/WL+d/Y0p8zgSjbFK1XzygA= +=KDlU -----END PGP SIGNATURE----- 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 +} |