blob: 2fd0b4ff033d52e58401d6e3d158fc32ef5c6245 (
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
|
# $NetBSD: Makefile,v 1.35 2014/05/09 07:37:13 wiz Exp $
.include "../../net/bittorrent/Makefile.common"
PKGNAME= ${DISTNAME:S/BitTorrent/bittorrent-gui/}
PKGREVISION= 12
COMMENT+= (GTK+ GUI)
DEPENDS+= bittorrent>=${PKGVERSION_NOREV}:../../net/bittorrent
DEPENDS+= ${PYPKGPREFIX}-gtk2>=2.6:../../x11/py-gtk2
REPLACE_PYTHON= bittorrent maketorrent
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # py-gtk2
CONFLICTS+= bittornado-gui-[0-9]*
ICONS_DIR= share/pixmaps/BitTorrent-${PKGVERSION:C/nb.*//}/icons
INSTALLATION_DIRS= bin ${ICONS_DIR} ${ICONS_DIR}/default ${ICONS_DIR}/old
NO_BUILD= yes
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/bittorrent ${DESTDIR}${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/maketorrent ${DESTDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/images/icons/default/* \
${DESTDIR}${PREFIX}/${ICONS_DIR}/default
${INSTALL_DATA} ${WRKSRC}/images/icons/old/* \
${DESTDIR}${PREFIX}/${ICONS_DIR}/old
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"
|