if a port needs 2.x then set MODPY_VERSION=${MODPY_DEFAULT_VERSION_2}. This commit doesn't change any versions currently used; it may be that some ports have MODPY_DEFAULT_VERSION_2 but don't require it, those should be cleaned up in the course of updating ports where possible. Python module ports providing py3-* packages should still use FLAVOR=python3 so that we don't have a mixture of dependencies some using ${MODPY_FLAVOR} and others not.
39 lines
895 B
Makefile
39 lines
895 B
Makefile
# $OpenBSD: Makefile,v 1.6 2021/02/23 19:39:53 sthen Exp $
|
|
|
|
COMMENT= GUI designer for wxWidgets/wxPython user interfaces
|
|
|
|
MODPY_EGG_VERSION= 1.0.0
|
|
DISTNAME= wxGlade-${MODPY_EGG_VERSION}
|
|
PKGNAME= wxglade-${MODPY_EGG_VERSION}
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=wxglade/}
|
|
|
|
CATEGORIES= devel x11
|
|
|
|
HOMEPAGE= http://wxglade.sourceforge.net/
|
|
MAINTAINER= Daniel Winters <daniel@tydirium.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MODULES= lang/python
|
|
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
|
|
MODPY_SETUPTOOLS= Yes
|
|
|
|
MODPY_ADJ_FILES= ./*.py test/*.py test/casefiles/*.py
|
|
|
|
RUN_DEPENDS= x11/py-wxPython \
|
|
devel/desktop-file-utils
|
|
|
|
PORTHOME= ${WRKDIR}
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/wxglade ${WRKSRC}/wxGlade.desktop
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/applications/
|
|
mv ${WRKSRC}/wxGlade.desktop ${PREFIX}/share/applications/
|
|
|
|
.include <bsd.port.mk>
|