summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schweizer <genstef@gentoo.org>2005-04-26 12:01:57 +0000
committerStefan Schweizer <genstef@gentoo.org>2005-04-26 12:01:57 +0000
commitbc634e0b99368ab26a78fabef2e9aedb5fe1363c (patch)
treeb7bd7f6ba36dbf684c65511b71cad4ddcc6fd443 /sys-apps/ivman
parentbug fixes (diff)
downloadhistorical-bc634e0b99368ab26a78fabef2e9aedb5fe1363c.tar.gz
historical-bc634e0b99368ab26a78fabef2e9aedb5fe1363c.tar.bz2
historical-bc634e0b99368ab26a78fabef2e9aedb5fe1363c.zip
Version bump thanks to Rohan McGovern <rohan.pm@gmail.com> in bug 90319
Package-Manager: portage-1.586-cvs
Diffstat (limited to 'sys-apps/ivman')
-rw-r--r--sys-apps/ivman/ChangeLog7
-rw-r--r--sys-apps/ivman/files/digest-ivman-0.5_pre31
-rw-r--r--sys-apps/ivman/ivman-0.5_pre3.ebuild40
3 files changed, 47 insertions, 1 deletions
diff --git a/sys-apps/ivman/ChangeLog b/sys-apps/ivman/ChangeLog
index 6f72dc13fb08..d5e584a330ce 100644
--- a/sys-apps/ivman/ChangeLog
+++ b/sys-apps/ivman/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/ivman
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/ivman/ChangeLog,v 1.13 2005/02/27 06:49:44 genstef Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/ivman/ChangeLog,v 1.14 2005/04/26 12:01:57 genstef Exp $
+
+*ivman-0.5_pre3 (26 Apr 2005)
+
+ 26 Apr 2005; Stefan Schweizer <genstef@gentoo.org> +ivman-0.5_pre3.ebuild:
+ Version bump thanks to Rohan McGovern <rohan.pm@gmail.com> in bug 90319
27 Feb 2005; Stefan Schweizer <genstef@gentoo.org>
-files/ivman-0.3-cvs.update, -ivman-0.3-r1.ebuild, -ivman-0.3.ebuild,
diff --git a/sys-apps/ivman/files/digest-ivman-0.5_pre3 b/sys-apps/ivman/files/digest-ivman-0.5_pre3
new file mode 100644
index 000000000000..026aee214135
--- /dev/null
+++ b/sys-apps/ivman/files/digest-ivman-0.5_pre3
@@ -0,0 +1 @@
+MD5 3e94a6b41c1ac93d638835ae1c1c0047 ivman-0.5_pre3.tar.bz2 234306
diff --git a/sys-apps/ivman/ivman-0.5_pre3.ebuild b/sys-apps/ivman/ivman-0.5_pre3.ebuild
new file mode 100644
index 000000000000..b1fcdc210651
--- /dev/null
+++ b/sys-apps/ivman/ivman-0.5_pre3.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/sys-apps/ivman/ivman-0.5_pre3.ebuild,v 1.1 2005/04/26 12:01:57 genstef Exp $
+
+DESCRIPTION="Daemon to mount/unmount devices, based on info from HAL"
+HOMEPAGE="http://ivman.sf.net"
+SRC_URI="mirror://sourceforge/ivman/${P}.tar.bz2"
+LICENSE="QPL"
+KEYWORDS="~amd64 ~x86 ~ppc"
+IUSE="debug"
+SLOT="0"
+
+RDEPEND=">=dev-libs/glib-2.2
+ dev-libs/libxml2
+ >=sys-apps/hal-0.2.98"
+DEPEND="${RDEPEND}
+ >=sys-devel/libtool-1.5
+ dev-util/pkgconfig"
+
+src_compile() {
+ econf $(use_enable debug) || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die "make install failed"
+
+ exeinto /etc/init.d/
+ newexe ${FILESDIR}/ivman-0.3.init ivman
+}
+
+pkg_postinst() {
+ einfo "Note that the configuration syntax has changed slightly from"
+ einfo "previous versions. If you are only using the default options,"
+ einfo "just merge the new files with etc-update. Otherwise, in your"
+ einfo "existing rules, replace %m with \$hal.volume.mount_point\$ and"
+ einfo "replace %d with \$hal.block.device\$. Individual users may also"
+ einfo "wish to remove their \${HOME}/.ivman directories and have default"
+ einfo "files re-created with the new syntax."
+}