diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-01-16 21:26:58 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-01-16 21:26:58 +0000 |
commit | 770b4041ea3c4059a169325270b35e56e68b7d7a (patch) | |
tree | 970170ec92ae1d99822c6a7bae857085bdd39cf9 /app-text | |
parent | Remove 13.0 server profiles as per mailing list discussion (diff) | |
download | gentoo-2-770b4041ea3c4059a169325270b35e56e68b7d7a.tar.gz gentoo-2-770b4041ea3c4059a169325270b35e56e68b7d7a.tar.bz2 gentoo-2-770b4041ea3c4059a169325270b35e56e68b7d7a.zip |
app-text/liblangtag: Fix for underlinking, #451546; patch sent upstream
(Portage version: 2.2.0_alpha154/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/liblangtag/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/liblangtag/files/liblangtag-0.4.0-module.patch | 15 | ||||
-rw-r--r-- | app-text/liblangtag/liblangtag-0.4.0-r1.ebuild | 41 | ||||
-rw-r--r-- | app-text/liblangtag/metadata.xml | 8 |
4 files changed, 67 insertions, 5 deletions
diff --git a/app-text/liblangtag/ChangeLog b/app-text/liblangtag/ChangeLog index dfe0f8a24aa3..ef3182cb05fe 100644 --- a/app-text/liblangtag/ChangeLog +++ b/app-text/liblangtag/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/liblangtag # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/liblangtag/ChangeLog,v 1.7 2013/01/12 13:20:59 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/liblangtag/ChangeLog,v 1.8 2013/01/16 21:26:58 jlec Exp $ + +*liblangtag-0.4.0-r1 (16 Jan 2013) + + 16 Jan 2013; Justin Lecher <jlec@gentoo.org> +liblangtag-0.4.0-r1.ebuild, + +files/liblangtag-0.4.0-module.patch, metadata.xml: + Fix for underlinking, #451546; patch sent upstream 12 Jan 2013; Tomáš Chvátal <scarabeus@gentoo.org> liblangtag-0.4.0.ebuild: New homepage/download uri. diff --git a/app-text/liblangtag/files/liblangtag-0.4.0-module.patch b/app-text/liblangtag/files/liblangtag-0.4.0-module.patch new file mode 100644 index 000000000000..3ee79c4f2e00 --- /dev/null +++ b/app-text/liblangtag/files/liblangtag-0.4.0-module.patch @@ -0,0 +1,15 @@ + liblangtag/Makefile.am | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/liblangtag/Makefile.am b/liblangtag/Makefile.am +index a0bbaa3..921ccb4 100644 +--- a/liblangtag/Makefile.am ++++ b/liblangtag/Makefile.am +@@ -203,6 +203,7 @@ liblangtag_la_CFLAGS = \ + liblangtag_la_LIBADD = \ + $(LIBS) \ + $(included_modules) \ ++ @MODULE_LIBS@ \ + $(NULL) + liblangtag_la_DEPENDENCIES = \ + $(included_modules) \ diff --git a/app-text/liblangtag/liblangtag-0.4.0-r1.ebuild b/app-text/liblangtag/liblangtag-0.4.0-r1.ebuild new file mode 100644 index 000000000000..720ede77ae07 --- /dev/null +++ b/app-text/liblangtag/liblangtag-0.4.0-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/liblangtag/liblangtag-0.4.0-r1.ebuild,v 1.1 2013/01/16 21:26:58 jlec Exp $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=true + +inherit autotools-utils + +DESCRIPTION="An interface library to access tags for identifying languages" +HOMEPAGE="http://tagoh.bitbucket.org/liblangtag/" +SRC_URI="https://bitbucket.org/tagoh/${PN}/downloads/${P}.tar.bz2" + +LICENSE="|| ( LGPL-3 MPL-1.1 )" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="introspection static-libs test" + +RDEPEND=" + dev-libs/glib + dev-libs/libxml2 + introspection? ( >=dev-libs/gobject-introspection-0.10.8 ) +" +DEPEND="${RDEPEND} + sys-devel/gettext + test? ( dev-libs/check ) +" + +# Upstream expect liblangtag to be installed when one runs tests... +RESTRICT="test" + +PATCHES=( "${FILESDIR}"/${P}-module.patch ) + +src_configure() { + local myeconfargs=( + $(use_enable introspection) + $(use_enable test) + ) + autotools-utils_src_configure +} diff --git a/app-text/liblangtag/metadata.xml b/app-text/liblangtag/metadata.xml index 6e74494a71e1..5aa863f210a2 100644 --- a/app-text/liblangtag/metadata.xml +++ b/app-text/liblangtag/metadata.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <herd>openoffice</herd> - <use> - <flag name="introspection">Use <pkg>dev-libs/gobject-introspection</pkg> for introspection</flag> - </use> + <herd>openoffice</herd> + <use> + <flag name="introspection">Use <pkg>dev-libs/gobject-introspection</pkg> for introspection</flag> + </use> </pkgmetadata> |