diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-05-22 15:56:27 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-05-22 15:56:27 +0000 |
commit | 33bff159de4162c396566e9c401d2279f0531c27 (patch) | |
tree | f92e0b01057a2b5012ff1cb258b626c5b9c3178d /sys-freebsd/freebsd-sbin | |
parent | arm/ia64/s390/sh stable wrt #269797 (diff) | |
download | gentoo-2-33bff159de4162c396566e9c401d2279f0531c27.tar.gz gentoo-2-33bff159de4162c396566e9c401d2279f0531c27.tar.bz2 gentoo-2-33bff159de4162c396566e9c401d2279f0531c27.zip |
make PATCHES a bash array
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-freebsd/freebsd-sbin')
-rw-r--r-- | sys-freebsd/freebsd-sbin/ChangeLog | 5 | ||||
-rw-r--r-- | sys-freebsd/freebsd-sbin/freebsd-sbin-7.2.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/sys-freebsd/freebsd-sbin/ChangeLog b/sys-freebsd/freebsd-sbin/ChangeLog index 5135bad3a03c..e4d7e30f1453 100644 --- a/sys-freebsd/freebsd-sbin/ChangeLog +++ b/sys-freebsd/freebsd-sbin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-freebsd/freebsd-sbin # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/ChangeLog,v 1.51 2009/05/22 13:48:12 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/ChangeLog,v 1.52 2009/05/22 15:56:27 aballier Exp $ + + 22 May 2009; Alexis Ballier <aballier@gentoo.org> freebsd-sbin-7.2.ebuild: + make PATCHES a bash array *freebsd-sbin-7.2 (22 May 2009) diff --git a/sys-freebsd/freebsd-sbin/freebsd-sbin-7.2.ebuild b/sys-freebsd/freebsd-sbin/freebsd-sbin-7.2.ebuild index 6755e00fba59..892db3b0b1ef 100644 --- a/sys-freebsd/freebsd-sbin/freebsd-sbin-7.2.ebuild +++ b/sys-freebsd/freebsd-sbin/freebsd-sbin-7.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/freebsd-sbin-7.2.ebuild,v 1.1 2009/05/22 13:48:13 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-sbin/freebsd-sbin-7.2.ebuild,v 1.2 2009/05/22 15:56:27 aballier Exp $ EAPI=2 @@ -49,10 +49,10 @@ pkg_setup() { REMOVE_SUBDIRS="dhclient pfctl pflogd rcorder" -PATCHES="${FILESDIR}/${PN}-setXid.patch - ${FILESDIR}/${PN}-7.1-zlib.patch - ${FILESDIR}/${PN}-6.2-ldconfig.patch - ${FILESDIR}/${PN}-6.1-pr102701.patch" +PATCHES=( "${FILESDIR}/${PN}-setXid.patch" + "${FILESDIR}/${PN}-7.1-zlib.patch" + "${FILESDIR}/${PN}-6.2-ldconfig.patch" + "${FILESDIR}/${PN}-6.1-pr102701.patch" ) src_prepare() { use build || ln -s "/usr/src/sys-${RV}" "${WORKDIR}/sys" |