blob: ef4822ef8d326f2a02de73bd0b4034090d160b29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# New ports collection makefile for: comix
# Date created: 26 November 2005
# Whom: Mezz <mezz@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= comix
PORTVERSION= 2.9
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= mezz@FreeBSD.org
COMMENT= A GTK2 comic book viewer for .cbz, .cbr and .cbt files
RUN_DEPENDS= unrar:${PORTSDIR}/archivers/unrar \
${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging
NO_BUILD= yes
USE_GNOME= desktopfileutils pygtk2
WANT_GNOME= yes
USE_PYTHON= yes
USE_GETTEXT= yes
USE_X_PREFIX= yes
DOCS= COPYING ChangeLog README
MAN1= comix.1 comicthumb.1
.include <bsd.port.pre.mk>
.if (${HAVE_GNOME:Mnautilus2}!="" || defined(WITH_THUMBNAILS)) && !defined(WITHOUT_THUMBNAILS)
USE_GNOME+= gconf2
#MAN1+= comicthumb.1
GCONF_SCHEMAS= comicbook.schemas
PLIST_SUB+= THUMBNAILS:=""
THUMBNAILS_ENABLED=yes
.else
PLIST_SUB+= THUMBNAILS:="@comment "
.endif
post-extract:
@${FIND} ${WRKSRC} -name \*.gz | ${XARGS} ${GUNZIP_CMD}
post-patch:
@${REINPLACE_CMD} -e "s|share/man|man|g ; s|1.gz|1|g ; \
s|/usr/share/mime|${PREFIX}/share/mime|g ; \
s|'/usr'|'${PREFIX}'|g" \
${WRKSRC}/install.py
do-install:
.if defined(THUMBNAILS_ENABLED)
@${MKDIR} ${PREFIX}/share/mime/packages
@(cd ${WRKSRC} ; \
${PYTHON_CMD} install.py install --installdir ${PREFIX})
@${INSTALL_DATA} ${WRKSRC}/mime/comicbook.schemas \
${PREFIX}/etc/gconf/schemas/
.else
@(cd ${WRKSRC} ; \
${PYTHON_CMD} install.py install --installdir ${PREFIX} --no-mime)
.endif
post-install:
@-update-desktop-database
.ifndef (NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in ${DOCS}
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>
|