From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1KAwRt-0004Sw-Q2 for garchives@archives.gentoo.org; Tue, 24 Jun 2008 00:31:54 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4597E0304; Tue, 24 Jun 2008 00:31:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 99B82E0304 for ; Tue, 24 Jun 2008 00:31:52 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 8407965960 for ; Tue, 24 Jun 2008 00:31:51 +0000 (UTC) Received: from mrness by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1KAwRn-0006bL-Cn for gentoo-commits@lists.gentoo.org; Tue, 24 Jun 2008 00:31:47 +0000 From: "Alin Nastac (mrness)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mrness@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-mobilephone/kannel: kannel-1.4.1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: kannel-1.4.1.ebuild ChangeLog X-VCS-Directories: app-mobilephone/kannel X-VCS-Committer: mrness X-VCS-Committer-Name: Alin Nastac Content-Type: text/plain; charset=utf8 Message-Id: Sender: Alin Nastac Date: Tue, 24 Jun 2008 00:31:47 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: fdbf902f-a40e-497b-8a0c-987ef37e3379 X-Archives-Hash: 70a244e250cc7c8fdc2e6fac202a75a2 mrness 08/06/24 00:31:47 Modified: kannel-1.4.1.ebuild ChangeLog Log: Remove flex test during configure (#221365). Ebuild code cleanup. (Portage version: 2.1.4.4) Revision Changes Path 1.8 app-mobilephone/kannel/kannel-1.4.1.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/ka= nnel/kannel-1.4.1.ebuild?rev=3D1.8&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/ka= nnel/kannel-1.4.1.ebuild?rev=3D1.8&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/ka= nnel/kannel-1.4.1.ebuild?r1=3D1.7&r2=3D1.8 Index: kannel-1.4.1.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/app-mobilephone/kannel/kannel-1.4.1.ebu= ild,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- kannel-1.4.1.ebuild 21 May 2008 15:52:40 -0000 1.7 +++ kannel-1.4.1.ebuild 24 Jun 2008 00:31:46 -0000 1.8 @@ -1,7 +1,10 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/kannel/kannel-1.4.1.e= build,v 1.7 2008/05/21 15:52:40 dev-zero Exp $ -inherit eutils +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/kannel/kannel-1.4.1.e= build,v 1.8 2008/06/24 00:31:46 mrness Exp $ + +WANT_AUTOMAKE=3Dnone + +inherit eutils autotools flag-o-matic =20 DESCRIPTION=3D"Powerful SMS and WAP gateway" HOMEPAGE=3D"http://www.kannel.org/" @@ -38,17 +41,19 @@ src_unpack() { unpack ${A} =20 + cd "${S}" epatch "${FILESDIR}/${P}-custom-wap-ports.patch" + epatch "${FILESDIR}/${P}-nolex.patch" # flex is not used =20 - cd "${S}" #by default, use current directory for logging sed -i -e 's:/tmp/::' doc/examples/kannel.conf - #correct doc path - sed -i -e "s:share/doc/kannel:share/doc/${P}:" configure configure.in + + eautoconf } =20 src_compile() { - econf \ + append-flags -fno-strict-aliasing # some code breaks strict aliasing + econf --docdir=3D/usr/share/doc/${P} \ --enable-localtime \ --disable-start-stop-daemon \ $(use_enable pam) \ @@ -60,19 +65,21 @@ $(use_with sqlite) \ $(use_with sqlite3) \ $(use_with postgres pgsql) \ - || die "./configure failed" + || die "econf failed" =20 emake || die "emake failed" } =20 src_test() { - make check || die "make check failed" + emake check || die "make check failed" } =20 src_install() { - make DESTDIR=3D"${D}" install || die "make install failed" + emake DESTDIR=3D"${D}" install || die "emake install failed" =20 - use doc && make DESTDIR=3D"${D}" install-docs + if use doc; then + emake DESTDIR=3D"${D}" install-docs || die "emake install-docs failed" + fi dodoc README LICENSE =20 diropts -g kannel -m0750 1.17 app-mobilephone/kannel/ChangeLog file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/ka= nnel/ChangeLog?rev=3D1.17&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/ka= nnel/ChangeLog?rev=3D1.17&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/ka= nnel/ChangeLog?r1=3D1.16&r2=3D1.17 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/app-mobilephone/kannel/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 21 May 2008 15:52:40 -0000 1.16 +++ ChangeLog 24 Jun 2008 00:31:46 -0000 1.17 @@ -1,6 +1,10 @@ # ChangeLog for app-mobilephone/kannel # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/kannel/ChangeLog,v 1.= 16 2008/05/21 15:52:40 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/kannel/ChangeLog,v 1.= 17 2008/06/24 00:31:46 mrness Exp $ + + 24 Jun 2008; Alin N=C4=83stac + +files/kannel-1.4.1-nolex.patch, kannel-1.4.1.ebuild: + Remove flex test during configure (#221365). Ebuild code cleanup. =20 21 May 2008; Tiziano M=C3=BCller kannel-1.4.1.eb= uild: Changed dependency for postgresql from dev-db/postgresql to --=20 gentoo-commits@lists.gentoo.org mailing list