diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-07 00:53:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-07 00:53:36 +0000 |
commit | d868927250be1b01a70818d47d9062c0514ebd86 (patch) | |
tree | b2743adbfaa650ff5331041652ed07da996c9dea /net-libs/linc | |
parent | Fixed less than stellar profile handling of PATH. (diff) | |
download | gentoo-2-d868927250be1b01a70818d47d9062c0514ebd86.tar.gz gentoo-2-d868927250be1b01a70818d47d9062c0514ebd86.tar.bz2 gentoo-2-d868927250be1b01a70818d47d9062c0514ebd86.zip |
Fix underquoting in m4 file.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-libs/linc')
-rw-r--r-- | net-libs/linc/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/linc/files/linc-1.0.3-m4.patch | 8 | ||||
-rw-r--r-- | net-libs/linc/linc-1.0.3-r1.ebuild | 20 |
3 files changed, 24 insertions, 12 deletions
diff --git a/net-libs/linc/ChangeLog b/net-libs/linc/ChangeLog index 94df7ae6d177..3ab49467219d 100644 --- a/net-libs/linc/ChangeLog +++ b/net-libs/linc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/linc -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/linc/ChangeLog,v 1.32 2005/04/27 11:31:08 azarah Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/linc/ChangeLog,v 1.33 2005/08/07 00:53:36 vapier Exp $ + + 07 Aug 2005; Mike Frysinger <vapier@gentoo.org> + +files/linc-1.0.3-m4.patch, linc-1.0.3-r1.ebuild: + Fix underquoting in m4 file. *linc-1.0.3-r1 (27 Apr 2005) diff --git a/net-libs/linc/files/linc-1.0.3-m4.patch b/net-libs/linc/files/linc-1.0.3-m4.patch new file mode 100644 index 000000000000..593b4bc19639 --- /dev/null +++ b/net-libs/linc/files/linc-1.0.3-m4.patch @@ -0,0 +1,8 @@ +--- linc.m4 ++++ linc.m4 +@@ -1,4 +1,4 @@ +-AC_DEFUN(AM_PATH_LINC, ++AC_DEFUN([AM_PATH_LINC], + [dnl + dnl Get the cflags and libs from the linc-config script + dnl diff --git a/net-libs/linc/linc-1.0.3-r1.ebuild b/net-libs/linc/linc-1.0.3-r1.ebuild index d35b6897cc89..d676c0a5e8a7 100644 --- a/net-libs/linc/linc-1.0.3-r1.ebuild +++ b/net-libs/linc/linc-1.0.3-r1.ebuild @@ -1,35 +1,35 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/linc/linc-1.0.3-r1.ebuild,v 1.1 2005/04/27 11:31:08 azarah Exp $ - -IUSE="doc ssl" +# $Header: /var/cvsroot/gentoo-x86/net-libs/linc/linc-1.0.3-r1.ebuild,v 1.2 2005/08/07 00:53:36 vapier Exp $ inherit eutils gnome2 DESCRIPTION="A library to ease the writing of networked applications" HOMEPAGE="http://www.gnome.org/" -SLOT="0" LICENSE="LGPL-2" -KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="doc ssl" RDEPEND=">=dev-libs/glib-2 ssl? ( >=dev-libs/openssl-0.9.6 )" - DEPEND="${RDEPEND} doc? ( >=dev-util/gtk-doc-0.6 ) >=dev-util/pkgconfig-0.12.0" G2CONF="${G2CONF} $(use_with ssl openssl)" -DOCS="AUTHORS ChangeLog COPYING HACKING MAINTAINERS README* NEWS TODO" +DOCS="AUTHORS ChangeLog HACKING MAINTAINERS README* NEWS TODO" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # Avoid docbook conflicts. See bug #46692. - epatch ${FILESDIR}/${P}-gtkdoc_fix.patch + epatch "${FILESDIR}"/${P}-gtkdoc_fix.patch # Fix building with gcc4. - epatch ${FILESDIR}/${P}-gcc4.patch + epatch "${FILESDIR}"/${P}-gcc4.patch + # Make sure we quote enough + epatch "${FILESDIR}"/${P}-m4.patch } |