diff options
author | Marinus Schraal <foser@gentoo.org> | 2005-01-08 16:22:34 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2005-01-08 16:22:34 +0000 |
commit | 8ca71cede590e8ee08f5ac3f877bd764130aba53 (patch) | |
tree | a204568f351256a72e886581ca208c709234b74b /app-admin | |
parent | removed src_clean (diff) | |
download | historical-8ca71cede590e8ee08f5ac3f877bd764130aba53.tar.gz historical-8ca71cede590e8ee08f5ac3f877bd764130aba53.tar.bz2 historical-8ca71cede590e8ee08f5ac3f877bd764130aba53.zip |
new release
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/gamin/Manifest | 8 | ||||
-rw-r--r-- | app-admin/gamin/files/digest-gamin-0.0.20 | 1 | ||||
-rw-r--r-- | app-admin/gamin/gamin-0.0.20.ebuild | 40 |
3 files changed, 46 insertions, 3 deletions
diff --git a/app-admin/gamin/Manifest b/app-admin/gamin/Manifest index 2b0e3b573403..ad838a9cb91a 100644 --- a/app-admin/gamin/Manifest +++ b/app-admin/gamin/Manifest @@ -1,8 +1,10 @@ +MD5 e14b51caa6ba40b1982f36284c19f75b gamin-0.0.19.ebuild 833 +MD5 1a12b6356c49807d6a034d775c96575f gamin-0.0.20.ebuild 828 +MD5 2695c38fbf4b4e11fe5d9c4d6f080ffc gamin-0.0.18.ebuild 889 MD5 1147e7127b117b4354323f720b5bba42 ChangeLog 3323 MD5 875135e8740bafa4dab79ee592cf9744 metadata.xml 279 -MD5 e14b51caa6ba40b1982f36284c19f75b gamin-0.0.19.ebuild 833 MD5 39ade60322eb86b40eca5ba38fd6d522 gamin-0.0.15.ebuild 842 -MD5 2695c38fbf4b4e11fe5d9c4d6f080ffc gamin-0.0.18.ebuild 889 -MD5 35d7d4d3208d674f62e4f2d7ef7d383f files/digest-gamin-0.0.19 64 MD5 c576a2ec43ce151b5bc78b77e0f58c9a files/digest-gamin-0.0.15 64 MD5 b183176dcfe9a0ad1609767f11cafc12 files/digest-gamin-0.0.18 64 +MD5 35d7d4d3208d674f62e4f2d7ef7d383f files/digest-gamin-0.0.19 64 +MD5 04ae13b77ce72f4c93d0460b1bbcfd57 files/digest-gamin-0.0.20 64 diff --git a/app-admin/gamin/files/digest-gamin-0.0.20 b/app-admin/gamin/files/digest-gamin-0.0.20 new file mode 100644 index 000000000000..8a7fddf47e8b --- /dev/null +++ b/app-admin/gamin/files/digest-gamin-0.0.20 @@ -0,0 +1 @@ +MD5 6fef61914cca3b6cdd6cce3e391024bb gamin-0.0.20.tar.gz 449163 diff --git a/app-admin/gamin/gamin-0.0.20.ebuild b/app-admin/gamin/gamin-0.0.20.ebuild new file mode 100644 index 000000000000..b2045ed7db3b --- /dev/null +++ b/app-admin/gamin/gamin-0.0.20.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/gamin/gamin-0.0.20.ebuild,v 1.1 2005/01/08 16:22:33 foser Exp $ + +DESCRIPTION="Library providing the FAM File Alteration Monitor API" +HOMEPAGE="http://www.gnome.org/~veillard/gamin/" +SRC_URI="http://www.gnome.org/~veillard/gamin/sources/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~arm ~hppa ~ia64 ~ppc ~s390" +IUSE="debug" + +RDEPEND="virtual/libc + >=dev-libs/glib-2 + !app-admin/fam" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +PROVIDE="virtual/fam" + +src_compile() { + + econf \ + --enable-inotify \ + `use_enable debug` \ + || die + + emake || die "emake failed" + +} + +src_install() { + + make DESTDIR="${D}" install || die + + dodoc AUTHORS ChangeLog README TODO NEWS + +} |