diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2008-07-09 13:10:26 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2008-07-09 13:10:26 +0000 |
commit | d405ede5c3c26e41b7c8070171af25e093018eb6 (patch) | |
tree | d84f5a64773ad9d21f9f8da50c8c30823af2b4bc /app-pda/multisync/multisync-0.83_pre20050414-r4.ebuild | |
parent | Sparc stable, Bug #231251 (only change is to force smp on, and all my (diff) | |
download | gentoo-2-d405ede5c3c26e41b7c8070171af25e093018eb6.tar.gz gentoo-2-d405ede5c3c26e41b7c8070171af25e093018eb6.tar.bz2 gentoo-2-d405ede5c3c26e41b7c8070171af25e093018eb6.zip |
Really fix libtool-2 this time. But this package is bitrotting.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)
Diffstat (limited to 'app-pda/multisync/multisync-0.83_pre20050414-r4.ebuild')
-rw-r--r-- | app-pda/multisync/multisync-0.83_pre20050414-r4.ebuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/app-pda/multisync/multisync-0.83_pre20050414-r4.ebuild b/app-pda/multisync/multisync-0.83_pre20050414-r4.ebuild index e7cb8d0df4f2..1a80104746f7 100644 --- a/app-pda/multisync/multisync-0.83_pre20050414-r4.ebuild +++ b/app-pda/multisync/multisync-0.83_pre20050414-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/multisync/multisync-0.83_pre20050414-r4.ebuild,v 1.11 2008/07/05 15:39:12 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/multisync/multisync-0.83_pre20050414-r4.ebuild,v 1.12 2008/07/09 13:10:26 loki_val Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -83,15 +83,17 @@ src_unpack() { epatch "${FILESDIR}/${PN}-gcc4.patch" epatch "${FILESDIR}/${P}-evo2.patch" + [[ -z "${PLUGINS}" ]] && make_plugin_list + cd "${S}" cp /usr/share/gettext/config.rpath "${S}" elibtoolize AT_M4DIR="plugins/opie_sync/macros" eautoreconf - cd "${S}"/plugins/backup_plugin/ - eautoreconf - cd "${S}"/plugins/syncml_plugin/ - eautoreconf - + for plugin_dir in ${PLUGINS} backup_plugin syncml_plugin + do + cd "${S}"/plugins/${plugin_dir}/ + eautoreconf + done } run_compile() { |