Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Dec 2012 22:45:00 +0000 (UTC)
From:      "Jason E. Hale" <jhale@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r308177 - in head/textproc/ebook-tools: . files
Message-ID:  <201212032245.qB3Mj0U3070221@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhale
Date: Mon Dec  3 22:44:59 2012
New Revision: 308177
URL: http://svnweb.freebsd.org/changeset/ports/308177

Log:
  - Update to 0.2.2
  - Improve grammar in COMMENT
  - Drop ABI version numbers from LIB_DEPENDS
  - Drop unneeded pkgconf dependency
  - Trim Makefile header
  - Tab -> space in pkg-descr WWW line
  
  Feature safe:	yes

Added:
  head/textproc/ebook-tools/files/
  head/textproc/ebook-tools/files/patch-src__libepub__CMakeLists.txt   (contents, props changed)
  head/textproc/ebook-tools/files/patch-src__libepub__epub_version.h   (contents, props changed)
Modified:
  head/textproc/ebook-tools/Makefile   (contents, props changed)
  head/textproc/ebook-tools/distinfo   (contents, props changed)
  head/textproc/ebook-tools/pkg-descr   (contents, props changed)
  head/textproc/ebook-tools/pkg-plist   (contents, props changed)

Modified: head/textproc/ebook-tools/Makefile
==============================================================================
--- head/textproc/ebook-tools/Makefile	Mon Dec  3 21:20:37 2012	(r308176)
+++ head/textproc/ebook-tools/Makefile	Mon Dec  3 22:44:59 2012	(r308177)
@@ -1,23 +1,18 @@
-# New ports collection makefile for:	ebook-tools
-# Date created:		2008-07-13
-# Whom:			Martin Wilke <miwi@FreeBSD.org>
-#
+# Created by: Martin Wilke <miwi@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	ebook-tools
-PORTVERSION=	0.2.1
-PORTREVISION=	1
+PORTVERSION=	0.2.2
 CATEGORIES=	textproc kde
 MASTER_SITES=	SF
 
 MAINTAINER=	kde@FreeBSD.org
-COMMENT=	Accessing and converting various ebook file formats
+COMMENT=	Accesses and converts various ebook file formats
 
-LIB_DEPENDS=	zip.3:${PORTSDIR}/archivers/libzip
+LIB_DEPENDS=	zip:${PORTSDIR}/archivers/libzip
 
 USE_CMAKE=	yes
 USE_LDCONFIG=	yes
-USE_GNOME=	libxml2 pkgconfig
+USE_GNOME=	libxml2
 
 .include <bsd.port.mk>

Modified: head/textproc/ebook-tools/distinfo
==============================================================================
--- head/textproc/ebook-tools/distinfo	Mon Dec  3 21:20:37 2012	(r308176)
+++ head/textproc/ebook-tools/distinfo	Mon Dec  3 22:44:59 2012	(r308177)
@@ -1,2 +1,2 @@
-SHA256 (ebook-tools-0.2.1.tar.gz) = c243cbfdac8c34bf4098bf5380541c914aec1507b2642fcd788e73399a6efc71
-SIZE (ebook-tools-0.2.1.tar.gz) = 44793
+SHA256 (ebook-tools-0.2.2.tar.gz) = cbc35996e911144fa62925366ad6a6212d6af2588f1e39075954973bbee627ae
+SIZE (ebook-tools-0.2.2.tar.gz) = 46889

Added: head/textproc/ebook-tools/files/patch-src__libepub__CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/ebook-tools/files/patch-src__libepub__CMakeLists.txt	Mon Dec  3 22:44:59 2012	(r308177)
@@ -0,0 +1,11 @@
+--- ./src/libepub/CMakeLists.txt.orig	2012-09-13 11:31:34.000000000 -0400
++++ ./src/libepub/CMakeLists.txt	2012-09-13 11:31:44.000000000 -0400
+@@ -2,7 +2,7 @@
+ add_library (epub SHARED epub.c ocf.c opf.c linklist.c list.c)
+ target_link_libraries (epub ${LIBZIP_LIBRARY} ${LIBXML2_LIBRARIES})
+ 
+-set_target_properties (epub PROPERTIES VERSION 0.2.1 SOVERSION 0)
++set_target_properties (epub PROPERTIES VERSION 0.2.2 SOVERSION 0)
+ 
+ install ( TARGETS epub RUNTIME DESTINATION bin LIBRARY DESTINATION lib${LIB_SUFFIX} ARCHIVE DESTINATION lib${LIB_SUFFIX} )
+ install ( FILES epub.h epub_shared.h epub_version.h DESTINATION include )

Added: head/textproc/ebook-tools/files/patch-src__libepub__epub_version.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/ebook-tools/files/patch-src__libepub__epub_version.h	Mon Dec  3 22:44:59 2012	(r308177)
@@ -0,0 +1,15 @@
+--- ./src/libepub/epub_version.h.orig	2012-09-13 11:30:51.000000000 -0400
++++ ./src/libepub/epub_version.h	2012-09-13 11:31:14.000000000 -0400
+@@ -1,10 +1,10 @@
+ #ifndef _LIBEPUB_VERSION_H_
+ #define _LIBEPUB_VERSION_H_
+ 
+-#define LIBEPUB_VERSION_STRING "0.2.1"
++#define LIBEPUB_VERSION_STRING "0.2.2"
+ #define LIBEPUB_VERSION_MAJOR 0
+ #define LIBEPUB_VERSION_MINOR 2
+-#define LIBEPUB_VERSION_RELEASE 1
++#define LIBEPUB_VERSION_RELEASE 2
+ #define LIBEPUB_MAKE_VERSION( a,b,c ) (((a) << 16) | ((b) << 8) | (c))
+ 
+ #define LIBEPUB_VERSION \

Modified: head/textproc/ebook-tools/pkg-descr
==============================================================================
--- head/textproc/ebook-tools/pkg-descr	Mon Dec  3 21:20:37 2012	(r308176)
+++ head/textproc/ebook-tools/pkg-descr	Mon Dec  3 22:44:59 2012	(r308177)
@@ -1,4 +1,4 @@
 ebook-tools provides tools for accessing and converting
 various ebook file formats. 
 
-WWW:	http://sourceforge.net/projects/ebook-tools
+WWW: http://sourceforge.net/projects/ebook-tools

Modified: head/textproc/ebook-tools/pkg-plist
==============================================================================
--- head/textproc/ebook-tools/pkg-plist	Mon Dec  3 21:20:37 2012	(r308176)
+++ head/textproc/ebook-tools/pkg-plist	Mon Dec  3 22:44:59 2012	(r308177)
@@ -5,4 +5,4 @@ include/epub_shared.h
 include/epub_version.h
 lib/libepub.so
 lib/libepub.so.0
-lib/libepub.so.0.2.1
+lib/libepub.so.0.2.2



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212032245.qB3Mj0U3070221>