blob: d01448d71ceefb35d4e426a01bb8122eca015efa (
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
|
# Created by: Beech Rintoul <beech@FreeBSD.org>
# $FreeBSD$
PORTNAME= mnemosyne
PORTVERSION= 2.2a
PORTREVISION= 1
CATEGORIES= games python
MASTER_SITES= SF/mnemosyne-proj/${PORTNAME}/${PORTNAME}-2.2
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= Mnemosyne-${DISTVERSION}
MAINTAINER= marekrud@gmail.com
COMMENT= Flash-card tool which optimises your learning process
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}qt4>=4.5:${PORTSDIR}/devel/py-qt4 \
${PYTHON_PKGNAMEPREFIX}matplotlib>=1.1.1:${PORTSDIR}/math/py-matplotlib \
${PYTHON_PKGNAMEPREFIX}cherrypy>=3.2:${PORTSDIR}/www/py-cherrypy
USE_PYTHON= yes
USE_PYDISTUTILS= easy_install
PYDISTUTILS_PKGNAME= Mnemosyne
NO_STAGE= yes
post-install:
@cd ${WRKSRC}/mo && ${COPYTREE_SHARE} . ${PREFIX}/share/locale
@${MKDIR} ${PREFIX}/share/applications
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop ${PREFIX}/share/applications
@${MKDIR} ${PREFIX}/share/icons
${INSTALL_DATA} ${WRKSRC}/pixmaps/${PORTNAME}.png ${PREFIX}/share/icons
.include <bsd.port.mk>
|