diff options
author | miwi <miwi@FreeBSD.org> | 2008-05-02 18:00:00 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-05-02 18:00:00 +0800 |
commit | 99c6196f7d784fc7b08f890ac1cb953888ea9168 (patch) | |
tree | f02cbc2b7104c32f1a3353a03dc9aa1112c211e0 | |
parent | 69f6e0a957ce6cc46caa6e77d813be86c8f26e01 (diff) | |
download | freebsd-ports-graphics-99c6196f7d784fc7b08f890ac1cb953888ea9168.tar.gz freebsd-ports-graphics-99c6196f7d784fc7b08f890ac1cb953888ea9168.tar.zst freebsd-ports-graphics-99c6196f7d784fc7b08f890ac1cb953888ea9168.zip |
ports/devel/py-sip/files/bsd.pyqt.mk
- Riverbank master sites have changed
- Add a version number (simply date) for the .mk file itself
ports/x11-toolkits/qscintilla/Makefile
- Include bsd.pyqt.mk and adapt Makefile accordingly
- Add NOPORTEXAMPLES test where appropriate
- Bump PORTREVISION
Submitted by: Danny Pansters <danny@ricin.com> (maintainer via private mail)
-rw-r--r-- | devel/py-sip/files/bsd.pyqt.mk | 4 | ||||
-rw-r--r-- | x11-toolkits/qscintilla/Makefile | 16 |
2 files changed, 11 insertions, 9 deletions
diff --git a/devel/py-sip/files/bsd.pyqt.mk b/devel/py-sip/files/bsd.pyqt.mk index e3b2ef9b930..f31a1dabd1a 100644 --- a/devel/py-sip/files/bsd.pyqt.mk +++ b/devel/py-sip/files/bsd.pyqt.mk @@ -1,6 +1,8 @@ +BSD_PYQT_MK_VERSION= 20080501 + PYQT_MAINTAINER= danny@ricin.com -MASTER_SITE_RIVERBANK= http://www.riverbankcomputing.com/Downloads/ +MASTER_SITE_RIVERBANK= http://www.riverbankcomputing.com/static/Downloads/ MASTER_SITE_RICIN= http://freebsd.ricin.com/ports/distfiles/ MASTER_SITES_SIP= ${MASTER_SITE_RIVERBANK}sip4/ ${MASTER_SITE_RICIN} diff --git a/x11-toolkits/qscintilla/Makefile b/x11-toolkits/qscintilla/Makefile index 45d5e83c4ab..0d002d258f8 100644 --- a/x11-toolkits/qscintilla/Makefile +++ b/x11-toolkits/qscintilla/Makefile @@ -5,14 +5,13 @@ # $FreeBSD$ PORTNAME= qscintilla -PORTVERSION= 1.7.1 -PORTREVISION= 2 +PORTVERSION= ${QSCI1_VERSION} +PORTREVISION= 3 CATEGORIES= x11-toolkits -MASTER_SITES= http://www.riverbankcomputing.com/Downloads/QScintilla1/ \ - http://freebsd.ricin.com/ports/distfiles/ -DISTNAME= QScintilla-1.71-gpl-${PORTVERSION} +MASTER_SITES= ${MASTER_SITES_QSCI1} +DISTNAME= ${QSCI1_DISTNAME} -MAINTAINER= danny@ricin.com +MAINTAINER= ${PYQT_MAINTAINER} COMMENT= QT port of the Scintilla C++ editor class BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake @@ -33,6 +32,7 @@ QMAKE= ${LOCALBASE}/bin/qmake SPEC= ${LOCALBASE}/share/qt/mkspecs/freebsd-g++ PLUGINDIR= ${LOCALBASE}/lib/plugins/designer +.include "../../devel/py-sip/files/bsd.pyqt.mk" .include <bsd.port.pre.mk> .if defined(NOPORTDOCS) || defined(WITHOUT_DOCS) @@ -40,7 +40,7 @@ PLIST_SUB+= DOCS="@comment " .else PLIST_SUB+= DOCS="" .endif -.if defined(WITHOUT_EXAMPLES) +.if defined(NOPORTEXAMPLES) || defined(WITHOUT_EXAMPLES) PLIST_SUB+= EXAMPLES="@comment " .else PLIST_SUB+= EXAMPLES="" @@ -143,7 +143,7 @@ do-install: ${INSTALL_DATA} doc/html/* ${DOCSDIR}/html && \ ${INSTALL_DATA} doc/Scintilla/* ${DOCSDIR}/Scintilla ) .endif -.if !defined(WITHOUT_EXAMPLES) +.if !defined(NOPORTEXAMPLES) && !defined(WITHOUT_EXAMPLES) ( cd ${WRKSRC} && \ ${MKDIR} -m 0755 ${EXAMPLESDIR} && \ ${INSTALL_DATA} example/* ${EXAMPLESDIR} ) |