diff options
author | Aron Griffis <agriffis@gentoo.org> | 2005-06-25 23:25:20 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2005-06-25 23:25:20 +0000 |
commit | 73c59b1cf0fb33d918efba6ca54b6f3dc323b191 (patch) | |
tree | 9ad573b75bc0ad721cfc060e066cf2281ec2fc03 /dev-perl/ConfigReader | |
parent | fixed incorrect changelog entry (diff) | |
download | gentoo-2-73c59b1cf0fb33d918efba6ca54b6f3dc323b191.tar.gz gentoo-2-73c59b1cf0fb33d918efba6ca54b6f3dc323b191.tar.bz2 gentoo-2-73c59b1cf0fb33d918efba6ca54b6f3dc323b191.zip |
Remove useless src_unpack function containing invalid fperms invocation
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'dev-perl/ConfigReader')
-rw-r--r-- | dev-perl/ConfigReader/ChangeLog | 5 | ||||
-rw-r--r-- | dev-perl/ConfigReader/ConfigReader-0.5.ebuild | 15 |
2 files changed, 8 insertions, 12 deletions
diff --git a/dev-perl/ConfigReader/ChangeLog b/dev-perl/ConfigReader/ChangeLog index 66303e619c8e..939e8c86713a 100644 --- a/dev-perl/ConfigReader/ChangeLog +++ b/dev-perl/ConfigReader/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-perl/ConfigReader # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/ConfigReader/ChangeLog,v 1.1 2005/06/06 20:34:55 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/ConfigReader/ChangeLog,v 1.2 2005/06/25 23:25:20 agriffis Exp $ + + 25 Jun 2005; Aron Griffis <agriffis@gentoo.org> ConfigReader-0.5.ebuild: + Remove useless src_unpack function containing invalid fperms invocation *ConfigReader-0.5 (06 Jun 2005) diff --git a/dev-perl/ConfigReader/ConfigReader-0.5.ebuild b/dev-perl/ConfigReader/ConfigReader-0.5.ebuild index becf814def72..a3adb47040b7 100644 --- a/dev-perl/ConfigReader/ConfigReader-0.5.ebuild +++ b/dev-perl/ConfigReader/ConfigReader-0.5.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/dev-perl/ConfigReader/ConfigReader-0.5.ebuild,v 1.1 2005/06/06 20:34:55 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/ConfigReader/ConfigReader-0.5.ebuild,v 1.2 2005/06/25 23:25:20 agriffis Exp $ # No sense in inheriting since this package is a flat set of files. # No Makefile.PL/Build.PL to work with at all. @@ -17,17 +17,10 @@ IUSE="" DEPEND="dev-lang/perl" -src_unpack() { - unpack ${A} - cd ${S} - fperms 444 * -} - src_install() { eval `perl '-V:installvendorlib'` - VENDOR_LIB=${installvendorlib} - dodir ${VENDOR_LIB}/${PN} - cp ${S}/*.pm ${D}/${VENDOR_LIB}/${PN} - cp ${PN}.pod ${D}/${VENDOR_LIB} + dodir ${installvendorlib}/${PN} + cp ${S}/*.pm ${D}/${installvendorlib}/${PN} + cp ${PN}.pod ${D}/${installvendorlib} dodoc README COPYING.LIB } |