summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2011-08-11 14:14:18 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2011-08-11 14:14:18 +0000
commita7543569f5beea9134299c0cfe49792576e5d175 (patch)
treeb70c3a7587a23827f3859f2e2385cede7085aa85 /media-libs
parentAdd message in pkg_postrm to inform user that modified kernel source is not c... (diff)
downloadgentoo-2-a7543569f5beea9134299c0cfe49792576e5d175.tar.gz
gentoo-2-a7543569f5beea9134299c0cfe49792576e5d175.tar.bz2
gentoo-2-a7543569f5beea9134299c0cfe49792576e5d175.zip
Allow building with static libs if desired.
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/libvisio/ChangeLog6
-rw-r--r--media-libs/libvisio/libvisio-0.0.4.ebuild6
-rw-r--r--media-libs/libvisio/libvisio-9999.ebuild6
3 files changed, 11 insertions, 7 deletions
diff --git a/media-libs/libvisio/ChangeLog b/media-libs/libvisio/ChangeLog
index 961cf799f9c0..c90d210677e9 100644
--- a/media-libs/libvisio/ChangeLog
+++ b/media-libs/libvisio/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libvisio
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.2 2011/08/10 08:59:17 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.3 2011/08/11 14:14:18 scarabeus Exp $
+
+ 11 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org> libvisio-0.0.4.ebuild,
+ libvisio-9999.ebuild:
+ Allow building with static libs if desired.
10 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org> libvisio-9999.ebuild:
Update ebuild to not build with werror, option so fare just in live ebuild,
diff --git a/media-libs/libvisio/libvisio-0.0.4.ebuild b/media-libs/libvisio/libvisio-0.0.4.ebuild
index 55c66297088c..e9cf34b19447 100644
--- a/media-libs/libvisio/libvisio-0.0.4.ebuild
+++ b/media-libs/libvisio/libvisio-0.0.4.ebuild
@@ -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/media-libs/libvisio/libvisio-0.0.4.ebuild,v 1.1 2011/08/09 18:13:21 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/libvisio-0.0.4.ebuild,v 1.2 2011/08/11 14:14:18 scarabeus Exp $
EAPI=4
@@ -16,7 +16,7 @@ HOMEPAGE="http://www.freedesktop.org/wiki/Software/libvisio"
LICENSE="LGPL-2.1"
SLOT="0"
[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~x86"
-IUSE="doc"
+IUSE="doc static-libs"
RDEPEND="
app-text/libwpd:0.9
@@ -33,7 +33,7 @@ src_prepare() {
src_configure() {
econf \
- --disable-static \
+ $(use_enable static-libs static) \
$(use_with doc docs)
}
diff --git a/media-libs/libvisio/libvisio-9999.ebuild b/media-libs/libvisio/libvisio-9999.ebuild
index 6b8b5e9f192c..0496ba5ff6b2 100644
--- a/media-libs/libvisio/libvisio-9999.ebuild
+++ b/media-libs/libvisio/libvisio-9999.ebuild
@@ -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/media-libs/libvisio/libvisio-9999.ebuild,v 1.2 2011/08/10 08:59:17 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/libvisio-9999.ebuild,v 1.3 2011/08/11 14:14:18 scarabeus Exp $
EAPI=4
@@ -16,7 +16,7 @@ HOMEPAGE="http://www.freedesktop.org/wiki/Software/libvisio"
LICENSE="LGPL-2.1"
SLOT="0"
[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~x86"
-IUSE="doc"
+IUSE="doc static-libs"
RDEPEND="
app-text/libwpd:0.9
@@ -33,7 +33,7 @@ src_prepare() {
src_configure() {
econf \
- --disable-static \
+ $(use_enable static-libs static) \
--disable-werror \
$(use_with doc docs)
}