From owner-svn-ports-all@FreeBSD.ORG Wed Mar 20 19:10:16 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2DD75AEE; Wed, 20 Mar 2013 19:10:16 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1FF3EEF3; Wed, 20 Mar 2013 19:10:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2KJAGsD047157; Wed, 20 Mar 2013 19:10:16 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2KJAFff047153; Wed, 20 Mar 2013 19:10:15 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201303201910.r2KJAFff047153@svn.freebsd.org> From: Pawel Pekala Date: Wed, 20 Mar 2013 19:10:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r314756 - head/graphics/qcomicbook X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 19:10:16 -0000 Author: pawel Date: Wed Mar 20 19:10:15 2013 New Revision: 314756 URL: http://svnweb.freebsd.org/changeset/ports/314756 Log: - Update to version 0.9.0 - Convert to OptionsNG - Fix spelling in COMMENT, pkg-descr - Remove support for old OSVERSIONs PR: ports/174770 Submitted by: myself Approved by: maintainer timeout Deleted: head/graphics/qcomicbook/pkg-plist Modified: head/graphics/qcomicbook/Makefile (contents, props changed) head/graphics/qcomicbook/distinfo (contents, props changed) head/graphics/qcomicbook/pkg-descr (contents, props changed) Modified: head/graphics/qcomicbook/Makefile ============================================================================== --- head/graphics/qcomicbook/Makefile Wed Mar 20 19:08:49 2013 (r314755) +++ head/graphics/qcomicbook/Makefile Wed Mar 20 19:10:15 2013 (r314756) @@ -1,30 +1,22 @@ -# New ports collection makefile for: qcomicbook -# Date created: 24 April, 2005 -# Whom: Adam Weinberger -# +# Created by: Adam Weinberger # $FreeBSD$ -# PORTNAME= qcomicbook -PORTVERSION= 0.8.1 -PORTREVISION= 3 +PORTVERSION= 0.9.0 CATEGORIES= graphics MASTER_SITES= http://qcomicbook.linux-projects.net/releases/ MAINTAINER= lioux@FreeBSD.org -COMMENT= QT-based comic book archive viewer +COMMENT= Qt-based comic book archive viewer LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= lrelease-qt4:${PORTSDIR}/devel/qt4-linguist -LIB_DEPENDS= poppler-qt4.3:${PORTSDIR}/graphics/poppler-qt4 +LIB_DEPENDS= poppler-qt4:${PORTSDIR}/graphics/poppler-qt4 RUN_DEPENDS= unzip:${PORTSDIR}/archivers/unzip \ unrar:${PORTSDIR}/archivers/unrar - -USE_QT4= corelib gui moc_build qmake_build rcc_build uic_build \ - xml -USE_CMAKE= yes +USE_QT4= corelib gui linguist_build moc_build qmake_build rcc_build \ + uic_build xml +USES= cmake MAKE_JOBS_SAFE= yes PLIST_FILES= \ @@ -33,6 +25,7 @@ PLIST_FILES= \ share/pixmaps/qcomicbook.png \ share/qcomicbook/i18n/qcomicbook_cs_CZ.qm \ share/qcomicbook/i18n/qcomicbook_de_DE.qm \ + share/qcomicbook/i18n/qcomicbook_en_EN.qm \ share/qcomicbook/i18n/qcomicbook_es_ES.qm \ share/qcomicbook/i18n/qcomicbook_it_IT.qm \ share/qcomicbook/i18n/qcomicbook_fi_FI.qm \ @@ -46,15 +39,17 @@ PLIST_FILES= \ share/qcomicbook/i18n/qcomicbook_uk_UA.qm \ share/qcomicbook/i18n/qcomicbook_zh_CN.qm -# PLIST_DIRS= share/qcomicbook/i18n \ share/qcomicbook MAN1= qcomicbook.1 NO_MANCOMPRESS= yes -OPTIONS= 7ZIP "Enable support for 7-Zip (.cb7) comic book archives" on \ - ACE "Enable support for ACE (.cba) comic book archives" on +OPTIONS_DEFINE= 7ZIP ACE +OPTIONS_DEFAULT=7ZIP ACE + +7ZIP_DESC= 7-Zip (.cb7) comic book archives support +ACE_DESC= ACE (.cba) comic book archives support post-patch: # fix man install directory @@ -66,25 +61,16 @@ post-patch: -e 's|(qcomicbook.png)|${PREFIX}/share/pixmaps/\1|' \ ${WRKSRC}/data/qcomicbook.desktop -.include - -.if ${OSVERSION} < 700042 -CPPFLAGS+= ${PTHREAD_CFLAGS} -QTCFGLIBS+= ${PTHREAD_LIBS} -.endif - -.if ${OSVERSION} < 700000 -BROKEN= does not link on 6.X -.endif +.include # 7-Zip (.cb7) support -.if !defined(WITHOUT_7ZIP) +.if ${PORT_OPTIONS:M7ZIP} RUN_DEPENDS+= 7z:${PORTSDIR}/archivers/p7zip .endif # ACE (.cba) support -.if !defined(WITHOUT_ACE) +.if ${PORT_OPTIONS:MACE} RUN_DEPENDS+= unace:${PORTSDIR}/archivers/unace .endif -.include +.include Modified: head/graphics/qcomicbook/distinfo ============================================================================== --- head/graphics/qcomicbook/distinfo Wed Mar 20 19:08:49 2013 (r314755) +++ head/graphics/qcomicbook/distinfo Wed Mar 20 19:10:15 2013 (r314756) @@ -1,2 +1,2 @@ -SHA256 (qcomicbook-0.8.1.tar.gz) = 1f9f8d8d49571da507a57ec69a59338fe9d268784758fd232842a4b0c3d3124e -SIZE (qcomicbook-0.8.1.tar.gz) = 716588 +SHA256 (qcomicbook-0.9.0.tar.gz) = 8e36f94d7b55798258b6df085324da150b0983020853eb270992157e9692abcb +SIZE (qcomicbook-0.9.0.tar.gz) = 738514 Modified: head/graphics/qcomicbook/pkg-descr ============================================================================== --- head/graphics/qcomicbook/pkg-descr Wed Mar 20 19:08:49 2013 (r314755) +++ head/graphics/qcomicbook/pkg-descr Wed Mar 20 19:10:15 2013 (r314756) @@ -6,7 +6,7 @@ convenience and ease of use. Features in * full-screen mode * two-pages mode and japanese mode * thumbnails view - * page scaling (fit to window witdth/height, whole page) + * page scaling (fit to window width/height, whole page) * mouse or keyboard navigation, whatever you prefer * bookmarks * PDF support