summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorStefan Schweizer <genstef@gentoo.org>2005-03-05 07:47:06 +0000
committerStefan Schweizer <genstef@gentoo.org>2005-03-05 07:47:06 +0000
commit639d5c72cb317716683b56788624705e5c89923b (patch)
treee599bcbc21972ba2e2f33d3cae3452d1d3db2fa8 /sys-fs
parentVersion bump for bug 84117. (diff)
downloadgentoo-2-639d5c72cb317716683b56788624705e5c89923b.tar.gz
gentoo-2-639d5c72cb317716683b56788624705e5c89923b.tar.bz2
gentoo-2-639d5c72cb317716683b56788624705e5c89923b.zip
Cleaning up old versions
(Portage version: 2.0.51.19)
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/captive/ChangeLog6
-rw-r--r--sys-fs/captive/captive-1.1.5-r1.ebuild104
-rw-r--r--sys-fs/captive/files/digest-captive-1.1.5-r11
3 files changed, 5 insertions, 106 deletions
diff --git a/sys-fs/captive/ChangeLog b/sys-fs/captive/ChangeLog
index 0287f9e00633..12df53a71388 100644
--- a/sys-fs/captive/ChangeLog
+++ b/sys-fs/captive/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-fs/captive
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/captive/ChangeLog,v 1.5 2005/02/15 17:57:46 genstef Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/captive/ChangeLog,v 1.6 2005/03/05 07:47:06 genstef Exp $
+
+ 05 Mar 2005; Stefan Schweizer <genstef@gentoo.org>
+ -captive-1.1.5-r1.ebuild:
+ Cleaning up old versions
15 Feb 2005; Stefan Schweizer <genstef@gentoo.org>
captive-1.1.5-r2.ebuild:
diff --git a/sys-fs/captive/captive-1.1.5-r1.ebuild b/sys-fs/captive/captive-1.1.5-r1.ebuild
deleted file mode 100644
index c06762096f77..000000000000
--- a/sys-fs/captive/captive-1.1.5-r1.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/captive/captive-1.1.5-r1.ebuild,v 1.2 2005/02/13 21:02:25 genstef Exp $
-
-inherit eutils
-
-DESCRIPTION="Captive uses binary Windows drivers for full NTFS r/w access."
-HOMEPAGE="http://www.jankratochvil.net/project/captive/"
-SRC_URI="http://www.jankratochvil.net/project/captive/dist/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-
-IUSE="debug gtk static"
-
- # sys-fs/lufis-0.2(fuse) or sys-fs/lufs not needed for compiling,
- # but for luf(i)s mounting, gnomevfs works w/o it though..
-RDEPEND="sys-libs/readline
- >=gnome-base/orbit-2.8.2
- gnome-base/gnome-vfs
- dev-libs/popt
- dev-libs/glib
- >=dev-libs/openssl-0.9.7c
- >=dev-libs/libxml2-2.4.29
- sys-fs/lufis
- gtk? (
- gnome-extra/gnome-vfs-httpcaptive
- gnome-base/libbonobo
- gnome-base/libgnomeui
- )"
-
-DEPEND="${RDEPEND}
- sys-fs/ntfsprogs"
-
-pkg_setup() {
- einfo "Adding captive user and group"
- enewgroup captive || die "enewgroup captive failed"
- enewuser captive -1 /bin/false /dev/null captive \
- || die "enewuser captive failed"
-}
-
-src_unpack() {
- unpack ${A}
-
- # This is needed because that scripts will cause an sandbox violation
- # if Xvnc is installed and its not needed anyways
- # if it breaks, use the virtualx eclass and Xeconf
- cd ${S}
- epatch ${FILESDIR}/do-not-check-for-lufsd.patch
- epatch ${FILESDIR}/use-lufis-for-mount-t-captive.patch
- cp -f configure configure.orig
- grep -v 'sh ./macros/glade-w' configure.orig > configure
-}
-
-src_compile() {
- # disable some tests to save time ;)
- econf `use_enable debug bug-replay` \
- `use_enable static` \
- `use_enable gtk install-pkg` \
- --with-readline \
- --enable-lufs \
- --enable-sandbox-setuid=captive \
- --enable-sandbox-setgid=captive \
- --enable-sandbox-chroot=/var/lib/captive \
- --enable-man-pages \
- --enable-sbin-mountdir=/sbin \
- --enable-sbin-mount-fs=ntfs:fastfat:cdfs:ext2fsd \
- --disable-gtk-doc \
- --with-orbit-line=link \
- --disable-glibtest --disable-orbittest \
- --with-tmpdir=/tmp --localstatedir=/var || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dodir /var/lib/captive
- diropts -m1777
- dodir /var/lib/captive/tmp
- keepdir /var/lib/captive/tmp
-
- dodoc AUTHORS COPYING* ChangeLog* NEWS README* TODO \
- || die "dodoc failed"
-}
-
-pkg_postinst() {
- if use gtk; then
- einfo "Use /usr/sbin/captive-install-acquire to search for and"
- einfo "install the needed drivers for captive NTFS."
- einfo ""
- fi
- einfo "Please use \"mount -t captive-ntfs /dev/hda1 /mnt/ntfs\" to mount ntfs partitions."
-}
-
-pkg_postrm() {
- #einfo Removing captive user
- #userdel captive
- #einfo Removing captive group
- #groupdel captive
- einfo ""
- einfo "You will have to remove captive user and group manually"
- einfo ""
-}
diff --git a/sys-fs/captive/files/digest-captive-1.1.5-r1 b/sys-fs/captive/files/digest-captive-1.1.5-r1
deleted file mode 100644
index a61cef8f5473..000000000000
--- a/sys-fs/captive/files/digest-captive-1.1.5-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 dfb7ce617745695e7a908609b9370fd6 captive-1.1.5.tar.gz 2547676