]> Pileus Git - ~andy/sunrise/commitdiff
sys-fs/unionfs-utils: added missing die statement, removed useless die statement...
authorChristian Ruppert <idl0r@gentoo.org>
Thu, 22 Jan 2009 23:21:36 +0000 (23:21 +0000)
committerChristian Ruppert <idl0r@gentoo.org>
Thu, 22 Jan 2009 23:21:36 +0000 (23:21 +0000)
svn path=/sunrise/; revision=7775

sys-fs/unionfs-utils/ChangeLog
sys-fs/unionfs-utils/Manifest
sys-fs/unionfs-utils/unionfs-utils-0.2.1.ebuild

index 70945423b58acc1e07e95f69246ba460c5a12a8c..46352f1845b37b571e0282aa4c9ab6c46bb0dad3 100644 (file)
@@ -1,7 +1,12 @@
 # ChangeLog for sys-fs/unionfs-utils
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  22 Jan 2009; Christian Ruppert (idl0r) <spooky85@gmail.com>
+  unionfs-utils-0.2.1.ebuild:
+  added missing die statement, removed useless die statement for econf,
+  removed local variable
+
   22 Jan 2008; Russell Harmon (eatnumber1) <eatnumber1@gmail.com>
   unionfs-utils-0.2.1.ebuild:
   Added block of sys-fs/unionfs
index e7385e1afc4eb8ec0b79fc83a3b46dd753dd649d..abc13d4d2ae2dadd6d6b7805486d0f0ae75e4d48 100644 (file)
@@ -1,4 +1,4 @@
 DIST unionfs_utils-0.2.1.tar.gz 321077 RMD160 273a454f1f4e80e3e83edeb633875f2fda6b4f92 SHA1 fd7fa1078462871922a9a073c2257d88f282aee8 SHA256 be3c689f0e9b4f2fc33684eefaddeff5fb6cc67197f2632290e5ac10c8e24638
-EBUILD unionfs-utils-0.2.1.ebuild 833 RMD160 45a6a29212f208960ea0c8867429642366384a6e SHA1 c6fa3a50da26ddf1f3c26a115bd4cc4b9b1a6313 SHA256 c6f7d4758b4c4da11bd083e2f9fde1e8b5e97c6e5c3b30431ac48ceadc7891ed
-MISC ChangeLog 627 RMD160 559f6def922f326cd589521b9ed87eb6a299a044 SHA1 2cd51f1ef2a5e3b939a1fb61712abdcf04ebd6cb SHA256 31498eccc25ee281ad44172b14dca2e362066184be46246f3627292dec4bdd9a
+EBUILD unionfs-utils-0.2.1.ebuild 798 RMD160 da3c4945caa256a29857be73ae334a8d30fa5dcc SHA1 fb06526b7e33f5e51f6d223a71e02ed0d71a6368 SHA256 b45e630c4fb8280ece5afebf0ab33462f9fe1100c152b969740d510035a706e0
+MISC ChangeLog 817 RMD160 8d1ca51760d166a2634414066fb5a0ca1be5708c SHA1 fb9f3cd55b849726009675db4e3d00e336b84e59 SHA256 06e49a3e44684c5218303376537de593e8b04f160eae750087cd517bf62286f4
 MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
index e412d5e7c417980cb70019c14ed793eae868d080..37973f676da7541ebb8268527cf3fe1a8c98895e 100644 (file)
@@ -1,10 +1,10 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
 DESCRIPTION="System utilities for UnionFS"
 HOMEPAGE="http://www.fsl.cs.sunysb.edu/project-unionfs.html"
-SRC_URI="ftp://ftp.fsl.cs.sunysb.edu/pub/unionfs/unionfs-utils-0.x/${P/-/_}.tar.gz"
+SRC_URI="ftp://ftp.fsl.cs.sunysb.edu/pub/unionfs/${PN}-0.x/${P/-/_}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
@@ -20,13 +20,11 @@ src_compile() {
        # --enable-static for this package is for libraries only.
        # livecd and initrd want these in /sbin static or not,
        # whereas the package puts them in /usr/bin.
-       local myconf="--bindir=/sbin --sbindir=/sbin"
-
-       econf ${myconf} || die "econf failed"
+       econf --bindir=/sbin --sbindir=/sbin
        emake || die "emake failed"
 }
 
 src_install () {
        emake DESTDIR="${D}" install || die "emake install failed"
-       dodoc ChangeLog NEWS README
+       dodoc ChangeLog NEWS README || die "dodoc failed"
 }