diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2003-12-29 18:30:13 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2003-12-29 18:30:13 +0000 |
commit | 55dbc0a24b12cf5db03c4129c870bb1c8459f3a5 (patch) | |
tree | 0cc4e2cb0187bba5757e39a77cc2e74abe93a5b6 /sysutils/luma/Makefile | |
parent | 6e2ed0a4b437d837c1fbf2deb9f035fcd2bee46e (diff) |
Add luma, a GUI tool for managing LDAP server written in Python using
Qt toolkit.
PR: ports/59874
Submitted by: Alexander Novitsky <alecn2002@yandex.ru>
Notes
Notes:
svn path=/head/; revision=96906
Diffstat (limited to 'sysutils/luma/Makefile')
-rw-r--r-- | sysutils/luma/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sysutils/luma/Makefile b/sysutils/luma/Makefile new file mode 100644 index 000000000000..ce772eb91c10 --- /dev/null +++ b/sysutils/luma/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: luma +# Date created: 19 November 2003 +# Whom: Alexander Novitsky +# +# $FreeBSD$ +# + +PORTNAME= luma +PORTVERSION= 1.0.b2 +CATEGORIES= sysutils net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-1.0beta2 + +MAINTAINER= alecn2002@yandex.ru +COMMENT= A graphical tool for accessing and managing LDAP servers + +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_ldap.so:${PORTSDIR}/net/py-ldap2 \ + pyuic:${PORTSDIR}/x11-toolkits/py-qt \ + ${PYTHON_SITELIBDIR}/mx/TextTools/__init__.py:${PORTSDIR}/lang/py-mx-base + +USE_BZIP2= yes +USE_PYTHON= yes +USE_OPENLDAP= yes +WANTS_OPENLDAP_VER= 2.1 +NO_BUILD= yes + +INSTALLCMD= install.py +INSTALLARGS= --prefix=${LOCALBASE} + +do-install: + @(cd ${INSTALL_WRKSRC}; ${PYTHON_CMD} ${INSTALLCMD} ${INSTALLARGS}) + +.include <bsd.port.mk> |