public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/schroot: ChangeLog schroot-1.4.14.ebuild
@ 2010-10-03 22:06 Jonathan Callen (abcd)
  0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Callen (abcd) @ 2010-10-03 22:06 UTC (permalink / raw
  To: gentoo-commits

abcd        10/10/03 22:06:06

  Modified:             ChangeLog
  Added:                schroot-1.4.14.ebuild
  Log:
  Upstream version bump; only change from 1.4.13 is updated translation (vi)
  
  (Portage version: 2.2_rc86_p7/cvs/Linux i686)

Revision  Changes    Path
1.20                 dev-util/schroot/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	30 Sep 2010 02:50:46 -0000	1.19
+++ ChangeLog	3 Oct 2010 22:06:06 -0000	1.20
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/schroot
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v 1.19 2010/09/30 02:50:46 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v 1.20 2010/10/03 22:06:06 abcd Exp $
+
+*schroot-1.4.14 (03 Oct 2010)
+
+  03 Oct 2010; Jonathan Callen <abcd@gentoo.org> +schroot-1.4.14.ebuild:
+  Upstream version bump; only change from 1.4.13 is updated translation (vi)
 
 *schroot-1.4.13 (30 Sep 2010)
 



1.1                  dev-util/schroot/schroot-1.4.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?rev=1.1&content-type=text/plain

Index: schroot-1.4.14.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v 1.1 2010/10/03 22:06:06 abcd Exp $

EAPI="3"
WANT_AUTOMAKE="1.11"

inherit autotools base pam

MY_P=${PN}_${PV}

DESCRIPTION="Utility to execute commands in a chroot environment"
HOMEPAGE="http://packages.debian.org/source/sid/schroot"
SRC_URI="mirror://debian/pool/main/${PN::1}/${PN}/${MY_P}.orig.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="btrfs +dchroot debug doc lvm nls pam test"

COMMON_DEPEND="
	>=dev-libs/boost-1.42.0
	dev-libs/lockdev
	>=sys-apps/util-linux-2.16
	btrfs? ( sys-fs/btrfs-progs )
	lvm? ( sys-fs/lvm2 )
	pam? ( sys-libs/pam )
"

DEPEND="${COMMON_DEPEND}
	doc? (
		app-doc/doxygen
		media-gfx/graphviz
	)
	nls? ( sys-devel/gettext )
	test? ( >=dev-util/cppunit-1.10.0 )
"
RDEPEND="${COMMON_DEPEND}
	sys-apps/debianutils
	dchroot? ( !sys-apps/dchroot )
	nls? ( virtual/libintl )
"

PATCHES=(
	"${FILESDIR}/${PN}-1.4.7-tests.patch"
)

src_prepare() {
	base_src_prepare

	# Don't depend on cppunit unless we are testing
	use test || sed -i '/AM_PATH_CPPUNIT/d' configure.ac

	eautoreconf
}

src_configure() {
	root_tests=no
	use test && (( EUID == 0 )) && root_tests=yes
	econf \
		$(use_enable btrfs btrfs-snapshot) \
		$(use_enable doc doxygen) \
		$(use_enable dchroot) \
		$(use_enable dchroot dchroot-dsa) \
		$(use_enable debug) \
		$(use_enable lvm lvm-snapshot) \
		$(use_enable nls) \
		$(use_enable pam) \
		--enable-block-device \
		--enable-loopback \
		--enable-uuid \
		--enable-root-tests=$root_tests \
		--enable-shared \
		--disable-static \
		--localstatedir="${EPREFIX}"/var \
		--with-bash-completion-dir="${EPREFIX}"/usr/share/bash-completion
}

src_test() {
	if [[ $root_tests == yes && $EUID -ne 0 ]]; then
		ewarn "Disabling tests because you are no longer root"
		return 0
	fi
	default
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	insinto /usr/share/doc/${PF}/contrib/setup.d
	doins contrib/setup.d/09fsck contrib/setup.d/10mount-ssh || die "installation of contrib scripts failed"

	newinitd "${FILESDIR}"/schroot.initd schroot || die "installation of init.d script failed"
	newconfd "${FILESDIR}"/schroot.confd schroot || die "installation of conf.d file failed"

	dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die "installation of docs failed"

	if use doc; then
		docinto html/sbuild
		dohtml doc/sbuild/html/* || die "installation of html docs failed"
		docinto html/schroot
		dohtml doc/schroot/html/* || die "installation of html docs failed"
	fi

	if use pam; then
		rm -f "${ED}"etc/pam.d/schroot
		pamd_mimic_system schroot auth account session
	fi

	# Remove *.la files
	find "${D}" -name "*.la" -exec rm {} + || die "removal of *.la files failed"
}

pkg_preinst() {
	export had_older_1_4_1=false
	has_version "<dev-util/schroot-1.4.1" && had_older_1_4_1=true
	if ${had_older_1_4_1}; then
		einfo "Moving config files to new location..."
		mkdir "${EROOT}etc/schroot/default"
		mv_conffile etc/schroot/script-defaults etc/schroot/default/config
		mv_conffile etc/schroot/mount-defaults etc/schroot/default/fstab
		mv_conffile etc/schroot/copyfiles-defaults etc/schroot/default/copyfiles
		mv_conffile etc/schroot/nssdatabases-defaults etc/schroot/default/nssdatabases
	fi
}

mv_conffile() {
	local OLDFILE=${EROOT}$1
	local NEWFILE=${EROOT}$2

	# if the old file doesn't exist, or is a symlink, stop
	[[ -f ${OLDFILE} ]] || return 0
	[[ -L ${OLDFILE} ]] && return 0

	# if the new file already exists, then we have a problem...
	if [[ -e ${NEWFILE} ]]; then
		# but if they are the same, then don't worry about it
		if cmp -s "${OLDFILE}" "${NEWFILE}"; then
			rm -f "${OLDFILE}"
		else
			ewarn "${NEWFILE} already exists, not moving ${OLDFILE}"
		fi
	else
		mv "${OLDFILE}" "${NEWFILE}"
	fi

	local x y
	# now move all the unmerged config files as well
	for x in "${OLDFILE%/*}"/._cfg????_"${OLDFILE##*/}"; do
		[[ -f ${x} ]] || continue
		# /etc/schroot/._cfg0000_script-defaults -> /etc/schroot/default/._cfg0000_config
		y=${x##*/}
		y=${NEWFILE%*/}${y%${OLDFILE##*/}}${NEWFILE##*/}
		mv "${x}" "${y}"
	done
}

pkg_postinst() {
	local x
	if ${had_older_1_4_1}; then
		for x in script:config mount:fstab copyfiles nssdatabases; do
			if [[ ! -e ${EROOT}etc/schroot/${x%:*}-defaults && -f ${EROOT}etc/schroot/default/${x#*:} ]]; then
				einfo "Creating compatibility symlink for ${x%:*}-defaults"
				ln -sf "default/${x#*:}" "${ROOT}etc/schroot/${x%:*}-defaults"
			fi
		done

		ewarn "Your config files have been moved to the new location in"
		ewarn "/etc/schroot/default. Compatibility symlinks have been installed in"
		ewarn "/etc/schroot, and may be removed if no running chroot refers to them."
	fi
}






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/schroot: ChangeLog schroot-1.4.14.ebuild
@ 2010-10-19  2:32 Jonathan Callen (abcd)
  0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Callen (abcd) @ 2010-10-19  2:32 UTC (permalink / raw
  To: gentoo-commits

abcd        10/10/19 02:32:52

  Modified:             ChangeLog schroot-1.4.14.ebuild
  Log:
  Fix build with USE=doc (bug 340078)
  
  (Portage version: 2.2_rc86_p7/cvs/Linux i686)

Revision  Changes    Path
1.21                 dev-util/schroot/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	3 Oct 2010 22:06:06 -0000	1.20
+++ ChangeLog	19 Oct 2010 02:32:52 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/schroot
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v 1.20 2010/10/03 22:06:06 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v 1.21 2010/10/19 02:32:52 abcd Exp $
+
+  19 Oct 2010; Jonathan Callen <abcd@gentoo.org> schroot-1.4.14.ebuild:
+  Fix build with USE=doc (bug 340078)
 
 *schroot-1.4.14 (03 Oct 2010)
 



1.2                  dev-util/schroot/schroot-1.4.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?r1=1.1&r2=1.2

Index: schroot-1.4.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- schroot-1.4.14.ebuild	3 Oct 2010 22:06:06 -0000	1.1
+++ schroot-1.4.14.ebuild	19 Oct 2010 02:32:52 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v 1.1 2010/10/03 22:06:06 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v 1.2 2010/10/19 02:32:52 abcd Exp $
 
 EAPI="3"
 WANT_AUTOMAKE="1.11"
@@ -76,6 +76,10 @@
 		--with-bash-completion-dir="${EPREFIX}"/usr/share/bash-completion
 }
 
+src_compile() {
+	emake all $(usev doc) || die "emake failed"
+}
+
 src_test() {
 	if [[ $root_tests == yes && $EUID -ne 0 ]]; then
 		ewarn "Disabling tests because you are no longer root"






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/schroot: ChangeLog schroot-1.4.14.ebuild
@ 2011-01-24 12:20 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 5+ messages in thread
From: Christian Faulhammer (fauli) @ 2011-01-24 12:20 UTC (permalink / raw
  To: gentoo-commits

fauli       11/01/24 12:20:32

  Modified:             ChangeLog schroot-1.4.14.ebuild
  Log:
  stable x86, bug 344615
  
  (Portage version: 2.1.9.34/cvs/Linux i686)

Revision  Changes    Path
1.24                 dev-util/schroot/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	23 Jan 2011 20:18:17 -0000	1.23
+++ ChangeLog	24 Jan 2011 12:20:32 -0000	1.24
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/schroot
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v 1.23 2011/01/23 20:18:17 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v 1.24 2011/01/24 12:20:32 fauli Exp $
+
+  24 Jan 2011; Christian Faulhammer <fauli@gentoo.org>
+  schroot-1.4.14.ebuild:
+  stable x86, bug 344615
 
   23 Jan 2011; Jonathan Callen <abcd@gentoo.org> schroot-1.4.14.ebuild,
   +files/schroot-1.4.14-debug.patch, schroot-1.4.17.ebuild:



1.4                  dev-util/schroot/schroot-1.4.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?r1=1.3&r2=1.4

Index: schroot-1.4.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- schroot-1.4.14.ebuild	23 Jan 2011 20:18:17 -0000	1.3
+++ schroot-1.4.14.ebuild	24 Jan 2011 12:20:32 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v 1.3 2011/01/23 20:18:17 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v 1.4 2011/01/24 12:20:32 fauli Exp $
 
 EAPI="3"
 WANT_AUTOMAKE="1.11"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="btrfs +dchroot debug doc lvm nls pam test"
 
 COMMON_DEPEND="






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/schroot: ChangeLog schroot-1.4.14.ebuild
@ 2011-01-25 15:15 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-01-25 15:15 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/01/25 15:15:57

  Modified:             ChangeLog schroot-1.4.14.ebuild
  Log:
  Stable on amd64 wrt bug #344615
  
  (Portage version: 2.1.9.33/cvs/Linux x86_64)

Revision  Changes    Path
1.25                 dev-util/schroot/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	24 Jan 2011 12:20:32 -0000	1.24
+++ ChangeLog	25 Jan 2011 15:15:57 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/schroot
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v 1.24 2011/01/24 12:20:32 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v 1.25 2011/01/25 15:15:57 hwoarang Exp $
+
+  25 Jan 2011; Markos Chandras <hwoarang@gentoo.org> schroot-1.4.14.ebuild:
+  Stable on amd64 wrt bug #344615
 
   24 Jan 2011; Christian Faulhammer <fauli@gentoo.org>
   schroot-1.4.14.ebuild:



1.5                  dev-util/schroot/schroot-1.4.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?r1=1.4&r2=1.5

Index: schroot-1.4.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- schroot-1.4.14.ebuild	24 Jan 2011 12:20:32 -0000	1.4
+++ schroot-1.4.14.ebuild	25 Jan 2011 15:15:57 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v 1.4 2011/01/24 12:20:32 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v 1.5 2011/01/25 15:15:57 hwoarang Exp $
 
 EAPI="3"
 WANT_AUTOMAKE="1.11"
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="btrfs +dchroot debug doc lvm nls pam test"
 
 COMMON_DEPEND="






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/schroot: ChangeLog schroot-1.4.14.ebuild
@ 2011-08-05 14:28 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-08-05 14:28 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/08/05 14:28:42

  Modified:             ChangeLog schroot-1.4.14.ebuild
  Log:
  Append -DBOOST_FILESYSTEM_VERSION=2 to C{XX}FLAGS to compile with new boost releases. Bug #377795
  
  (Portage version: 2.2.0_alpha46/cvs/Linux x86_64)

Revision  Changes    Path
1.27                 dev-util/schroot/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	22 Mar 2011 06:56:01 -0000	1.26
+++ ChangeLog	5 Aug 2011 14:28:42 -0000	1.27
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/schroot
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v 1.26 2011/03/22 06:56:01 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/ChangeLog,v 1.27 2011/08/05 14:28:42 hwoarang Exp $
+
+  05 Aug 2011; Markos Chandras <hwoarang@gentoo.org> schroot-1.4.14.ebuild:
+  Append -DBOOST_FILESYSTEM_VERSION=2 to C{XX}FLAGS to compile with new boost
+  releases. Bug #377795
 
 *schroot-1.4.21 (22 Mar 2011)
 



1.6                  dev-util/schroot/schroot-1.4.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild?r1=1.5&r2=1.6

Index: schroot-1.4.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- schroot-1.4.14.ebuild	25 Jan 2011 15:15:57 -0000	1.5
+++ schroot-1.4.14.ebuild	5 Aug 2011 14:28:42 -0000	1.6
@@ -1,11 +1,11 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v 1.5 2011/01/25 15:15:57 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/schroot/schroot-1.4.14.ebuild,v 1.6 2011/08/05 14:28:42 hwoarang Exp $
 
 EAPI="3"
 WANT_AUTOMAKE="1.11"
 
-inherit autotools base pam
+inherit autotools base flag-o-matic pam
 
 MY_P=${PN}_${PV}
 
@@ -49,6 +49,8 @@
 src_prepare() {
 	base_src_prepare
 
+	append-flags -DBOOST_FILESYSTEM_VERSION=2
+
 	# Don't depend on cppunit unless we are testing
 	use test || sed -i '/AM_PATH_CPPUNIT/d' configure.ac
 






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-08-05 15:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-03 22:06 [gentoo-commits] gentoo-x86 commit in dev-util/schroot: ChangeLog schroot-1.4.14.ebuild Jonathan Callen (abcd)
  -- strict thread matches above, loose matches on Subject: below --
2010-10-19  2:32 Jonathan Callen (abcd)
2011-01-24 12:20 Christian Faulhammer (fauli)
2011-01-25 15:15 Markos Chandras (hwoarang)
2011-08-05 14:28 Markos Chandras (hwoarang)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox