blob: a10c4569a57f2a52f14ce5f84f6574fed0c8b099 (
plain)
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
|
# $NetBSD: Makefile,v 1.25 2010/02/10 19:17:39 joerg Exp $
#
DISTNAME= comix-4.0.4
PKGREVISION= 4
CATEGORIES= graphics python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=comix/}
MAINTAINER= hugor@users.sourceforge.net
HOMEPAGE= http://comix.sourceforge.net/index.html
COMMENT= Image viewer specifically designed to handle comic books
LICENSE= gnu-gpl-v2
PKG_DESTDIR_SUPPORT= user-destdir
DEPENDS+= unrar-[0-9]*:../../archivers/unrar
.include "../../lang/python/extension.mk"
.if ${PYPKGPREFIX} == "py24"
.include "../../databases/py-sqlite2/buildlink3.mk"
.else
DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
.endif
MANCOMPRESSED= yes
.include "options.mk"
SUBST_CLASSES+= install-path
SUBST_STAGE.install-path= pre-build
SUBST_MESSAGE.install-path= Fixing man page installation path.
SUBST_FILES.install-path= install.py
SUBST_SED.install-path= -e "s,share/man/man,${PKGMANDIR}/man,g"
PYTHON_PATCH_SCRIPTS= src/comix.py mime/comicthumb
do-build:
do-install:
cd ${WRKSRC} && ${PYTHONBIN} install.py install --dir ${DESTDIR}${PREFIX}
.include "../../databases/shared-mime-info/mimedb.mk"
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
BUILDLINK_API_DEPENDS.pyimaging+= ${PYPKGPREFIX}-imaging>=1.1.5
.include "../../graphics/py-imaging/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
BUILDLINK_API_DEPENDS.pygtk2+= ${PYPKGPREFIX}-gtk2>=2.12
.include "../../x11/py-gtk2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|