diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-09-04 05:16:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-09-04 05:16:09 +0000 |
commit | 20fffd8ccd61a85305f2390211d23039e090848b (patch) | |
tree | bcff2b90d57f0453f4a320693cc8c7e3b8a66b9a /sys-fs | |
parent | stable x86 (diff) | |
download | gentoo-2-20fffd8ccd61a85305f2390211d23039e090848b.tar.gz gentoo-2-20fffd8ccd61a85305f2390211d23039e090848b.tar.bz2 gentoo-2-20fffd8ccd61a85305f2390211d23039e090848b.zip |
Touchup doc install and fix sandbox issues #104711.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/xfsdump/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/xfsdump/files/xfsdump-2.2.30-docs.patch | 18 | ||||
-rw-r--r-- | sys-fs/xfsdump/xfsdump-2.2.30.ebuild | 7 |
3 files changed, 25 insertions, 7 deletions
diff --git a/sys-fs/xfsdump/ChangeLog b/sys-fs/xfsdump/ChangeLog index 086e722fc212..a1b002a3b15c 100644 --- a/sys-fs/xfsdump/ChangeLog +++ b/sys-fs/xfsdump/ChangeLog @@ -1,9 +1,10 @@ # ChangeLog for sys-fs/xfsdump # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/ChangeLog,v 1.22 2005/09/03 19:16:08 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/ChangeLog,v 1.23 2005/09/04 05:16:09 vapier Exp $ - 03 Sep 2005; Robin H. Johnson <robbat2@gentoo.org> xfsdump-2.2.30.ebuild: - Add symlink for xfsdq, and trying to debug bug #104771. + 04 Sep 2005; Mike Frysinger <vapier@gentoo.org> + +files/xfsdump-2.2.30-docs.patch, xfsdump-2.2.30.ebuild: + Touchup doc install and fix sandbox issues #104711. *xfsdump-2.2.30 (02 Sep 2005) diff --git a/sys-fs/xfsdump/files/xfsdump-2.2.30-docs.patch b/sys-fs/xfsdump/files/xfsdump-2.2.30-docs.patch new file mode 100644 index 000000000000..5abfc78f346a --- /dev/null +++ b/sys-fs/xfsdump/files/xfsdump-2.2.30-docs.patch @@ -0,0 +1,18 @@ +--- doc/Makefile ++++ doc/Makefile +@@ -52,13 +52,8 @@ + CHANGES.gz: + $(ZIP) --best -c < CHANGES > $@ + +-install: default ++install: + $(INSTALL) -m 755 -d $(PKG_DOC_DIR) +- $(INSTALL) -m 644 PORTING CHANGES.gz $(README) $(PKG_DOC_DIR) +-ifeq ($(PKG_DISTRIBUTION), debian) +- $(INSTALL) -S CHANGES.gz $(PKG_DOC_DIR)/changelog.gz +-else +- $(INSTALL) -m 644 COPYING $(PKG_DOC_DIR) +-endif ++ $(INSTALL) -m 644 PORTING CHANGES $(README) $(PKG_DOC_DIR) + + install-dev: diff --git a/sys-fs/xfsdump/xfsdump-2.2.30.ebuild b/sys-fs/xfsdump/xfsdump-2.2.30.ebuild index 732428c6a47e..83d6ce3434f2 100644 --- a/sys-fs/xfsdump/xfsdump-2.2.30.ebuild +++ b/sys-fs/xfsdump/xfsdump-2.2.30.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/xfsdump-2.2.30.ebuild,v 1.2 2005/09/03 19:16:08 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/xfsdump-2.2.30.ebuild,v 1.3 2005/09/04 05:16:09 vapier Exp $ inherit eutils @@ -21,6 +21,7 @@ DEPEND="sys-fs/e2fsprogs src_unpack() { unpack ${A} cd "${S}" + epatch "${FILESDIR}"/xfsdump-2.2.30-docs.patch sed -i \ -e "/^PKG_DOC_DIR/s:=.*:= /usr/share/doc/${PF}:" \ -e '/^GCFLAGS/s:-O1::' \ @@ -46,8 +47,6 @@ src_compile() { src_install() { make DIST_ROOT="${D}" install || die - einfo "Making symlinks" - dosym /sbin/xfsrestore /usr/bin/xfsrestore - dosym /sbin/xfsdump /usr/bin/xfsdump dosym /sbin/xfsdq /usr/bin/xfsdq + prepalldocs } |