diff options
author | miwi <miwi@FreeBSD.org> | 2007-07-16 14:30:43 +0000 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-07-16 14:30:43 +0000 |
commit | f6584eb103329a9e00676e8f6d2e6aa7b7b810a4 (patch) | |
tree | ee8672f50223be069332ed442fe9c646e7ec3e36 /deskutils/qtm/Makefile | |
parent | fa9f8d4caf62c71208d02a7978f9d08c59fff132 (diff) | |
download | FreeBSD-ports-f6584eb103329a9e00676e8f6d2e6aa7b7b810a4.zip FreeBSD-ports-f6584eb103329a9e00676e8f6d2e6aa7b7b810a4.tar.gz |
QTM allows the user to compose, format and submit entries to MT and
Wordpress blogs (and possibly other content management systems using the
same interfaces; your mileage may vary). It uses the standard Blogger,
MetaWeblog and Movable Type APIs. It requires Qt 4.1.
WWW: http://qtm.blogistan.co.uk/
PR: ports/113931
Submitted by: Yinghong.Liu <relaxbsd at gmail.com>
Diffstat (limited to 'deskutils/qtm/Makefile')
-rw-r--r-- | deskutils/qtm/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/deskutils/qtm/Makefile b/deskutils/qtm/Makefile new file mode 100644 index 0000000..a693143 --- /dev/null +++ b/deskutils/qtm/Makefile @@ -0,0 +1,43 @@ +# New ports collection makefile for: qtm +# Date created: 22 Jun 2007 +# Whom: Yinghong.Liu <relaxbsd@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= qtm +PORTVERSION= 0.5.3 +CATEGORIES= deskutils +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR=catkin + +MAINTAINER= relaxbsd@gmail.com +COMMENT= Blog management application based on Qt 4 + +USE_QT_VER= 4 +QT_COMPONENTS= gui network corelib qmake uic xml moc +PLIST_FILES= bin/QTM + +PORTDOCS= COPYING Changelog INSTALL README + +DESKTOP_ENTRIES= "QTM" \ + "Weblog management application" \ + "" \ + "QTM" \ + "Application;Network;" \ + "false" + +pre-build: + @cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${QMAKE} -unix QTM.pro + +post-install: + @${MKDIR} ${PREFIX}/share/applications + @${INSTALL_PROGRAM} ${WRKSRC}/QTM ${PREFIX}/bin/ +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for doc in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |