summaryrefslogtreecommitdiff
path: root/textproc/p5-mobiperl/Makefile
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2009-11-07 08:49:37 +0000
committerwiz <wiz@pkgsrc.org>2009-11-07 08:49:37 +0000
commitb9979edb7f888c65d43f03dfceb76cb2ba926230 (patch)
tree7ee1ddab8b350a85065efef47d2e68a2b552c8ed /textproc/p5-mobiperl/Makefile
parentdb137e1d2338d173a0e253d8c4941947deae98b3 (diff)
downloadpkgsrc-b9979edb7f888c65d43f03dfceb76cb2ba926230.tar.gz
Initial import of p5-mobiperl-0.0.43:
MobiPerl is a collection of tools for generating and manipulating MobiPocket files written in Perl. MobiPerl currently consists of the following Perl programs: * html2mobi - Convert HTML file to a MobiPocket file. * opf2mobi - Convert an opf file structure to a MobiPocket file. * lit2mobi - Convert a lit file to a MobiPocket file. * mobi2html - Explode a DRM free MobiPocket file. * mobi2mobi - Manipulate meta data for a MobiPocket file. * mobils - An "ls" program for MobiPocket files. Since no official documentation for the MobiPocket is available there might be some mistakes in the generation of the MobiPocket files. It seems to work but there might be remaining bugs. So always keep your original files so you can repeat the conversion if necessary.
Diffstat (limited to 'textproc/p5-mobiperl/Makefile')
-rw-r--r--textproc/p5-mobiperl/Makefile53
1 files changed, 53 insertions, 0 deletions
diff --git a/textproc/p5-mobiperl/Makefile b/textproc/p5-mobiperl/Makefile
new file mode 100644
index 00000000000..952fb4cb6c0
--- /dev/null
+++ b/textproc/p5-mobiperl/Makefile
@@ -0,0 +1,53 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/11/07 08:49:37 wiz Exp $
+#
+
+DISTNAME= mobiperl-0.0.43
+PKGNAME= p5-${DISTNAME}
+CATEGORIES= textproc
+# no https support in pkgsrc
+MASTER_SITES= # https://dev.mobileread.com/dist/tompe/mobiperl/
+EXTRACT_SUFX= .tar
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= https://dev.mobileread.com/trac/mobiperl/wiki
+COMMENT= Tools for generating and manipulating MobiPocket files
+LICENSE= gnu-gpl-v3
+
+DEPENDS+= p5-Palm-[0-9]*:../../databases/p5-Palm
+DEPENDS+= p5-Getopt-Mixed-[0-9]*:../../devel/p5-Getopt-Mixed
+DEPENDS+= p5-GD-[0-9]*:../../graphics/p5-GD
+DEPENDS+= p5-Image-Size-[0-9]*:../../graphics/p5-Image-Size
+DEPENDS+= p5-Image-BMP-[0-9]*:../../graphics/p5-Image-BMP
+DEPENDS+= p5-Encode-[0-9]*:../../textproc/p5-Encode
+DEPENDS+= p5-XML-Parser-Lite-Tree-[0-9]*:../../textproc/p5-XML-Parser-Lite-Tree
+DEPENDS+= p5-TimeDate-[0-9]*:../../time/p5-TimeDate
+DEPENDS+= p5-HTML-Tree-[0-9]*:../../www/p5-HTML-Tree
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+INSTALLATION_DIRS= bin ${PERL5_INSTALLVENDORLIB}/MobiPerl
+INSTALLATION_DIRS+= ${PERL5_INSTALLVENDORLIB}/Palm
+INSTALLATION_DIRS+= ${PKGMANDIR}/man1
+
+REPLACE_PERL= *mobi*
+USE_TOOLS+= pod2man
+
+do-build:
+ cd ${WRKSRC} && \
+ pod2man mobi2mobi > mobi2mobi.1; \
+ pod2man mobils > mobils.1; \
+ pod2man mobi2html > mobi2html.1; \
+ pod2man lit2mobi > lit2mobi.1; \
+ pod2man opf2mobi > opf2mobi.1; \
+ pod2man html2mobi > html2mobi.1
+
+do-install:
+ ${INSTALL_DATA} ${WRKSRC}/MobiPerl/* ${DESTDIR}${PERL5_INSTALLVENDORLIB}/MobiPerl
+ ${INSTALL_DATA} ${WRKSRC}/Palm/* ${DESTDIR}${PERL5_INSTALLVENDORLIB}/Palm
+.for file in html2mobi lit2mobi mobi2html mobi2mobi mobils opf2mobi
+ ${INSTALL_SCRIPT} ${WRKSRC}/${file} ${DESTDIR}${PREFIX}/bin
+.endfor
+ ${INSTALL_DATA} ${WRKSRC}/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
+
+.include "../../lang/perl5/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"