dev-cpp/libbinio: DEPEND on sys-apps/texinfo (bug #589628 by bitlord).
authorJeroen Roovers <jer@gentoo.org>
Sun, 24 Jul 2016 20:34:55 +0000 (22:34 +0200)
committerJeroen Roovers <jer@gentoo.org>
Sun, 24 Jul 2016 20:34:55 +0000 (22:34 +0200)
Package-Manager: portage-2.3.0

dev-cpp/libbinio/files/libbinio-1.4-cstdio.patch
dev-cpp/libbinio/files/libbinio-1.4-texi.patch
dev-cpp/libbinio/libbinio-1.4-r1.ebuild [new file with mode: 0644]

index f5ee5e99e0d24f23686eda256c3ad6c75e65300c..f9455a561314b00d985c8bb45087316951f2fa5d 100644 (file)
@@ -1,6 +1,5 @@
-diff -Naurp libbinio-1.4-orig/src/binwrap.cpp libbinio-1.4/src/binwrap.cpp
---- libbinio-1.4-orig/src/binwrap.cpp  2009-05-16 15:02:48.000000000 +0200
-+++ libbinio-1.4/src/binwrap.cpp       2009-05-16 15:05:45.000000000 +0200
+--- a/src/binwrap.cpp
++++ b/src/binwrap.cpp
 @@ -18,6 +18,7 @@
   */
  
index da55e9836ee06e710210071cadcfdf0203e273b2..b7a4798848b2014569ed8c6404f9b693911d15b9 100644 (file)
@@ -1,6 +1,6 @@
 Patch from http://libbinio.cvs.sourceforge.net/viewvc/libbinio/libbinio/doc/libbinio.texi?r1=1.13&r2=1.14
---- doc/libbinio.texi  2004/08/18 19:55:22     1.13
-+++ doc/libbinio.texi  2006/05/14 21:36:13     1.14
+--- a/doc/libbinio.texi
++++ b/doc/libbinio.texi
 @@ -9,7 +9,7 @@
  This manual documents the binary I/O stream class library, version
  @value{VERSION}. It was last updated on @value{UPDATED}.
diff --git a/dev-cpp/libbinio/libbinio-1.4-r1.ebuild b/dev-cpp/libbinio/libbinio-1.4-r1.ebuild
new file mode 100644 (file)
index 0000000..e4695da
--- /dev/null
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="Binary I/O stream class library"
+HOMEPAGE="http://libbinio.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="static-libs"
+
+DOCS=( AUTHORS NEWS README )
+
+DEPEND="
+       sys-apps/texinfo
+"
+
+PATCHES=(
+       "${FILESDIR}"/${P}-cstdio.patch
+       "${FILESDIR}"/${P}-texi.patch
+)
+
+src_configure() {
+       econf $(use_enable static-libs static)
+}
+
+src_install() {
+       default
+       prune_libtool_files
+}