diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2006-07-18 17:14:33 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2006-07-18 17:14:33 +0000 |
commit | dbb6b60d6e30f88721b1a991fd6013e8e7512514 (patch) | |
tree | 6f84d387ce8f2e3f4df84340fecb9bff56ab1cab /deskutils | |
parent | f09655eda462244205309750ed67efeaf128793f (diff) | |
download | ports-dbb6b60d6e30f88721b1a991fd6013e8e7512514.tar.gz ports-dbb6b60d6e30f88721b1a991fd6013e8e7512514.zip |
- Pass maintainership to submitter
- Add a patch to deal with no categories on server
http://sourceforge.net/tracker/index.php?func=detail&aid=1523895&group_id=87493&atid=583338
PR: ports/100441
Submitted by: Jean-Baptiste Quenot <jbq at caraldi.com>
Notes
Notes:
svn path=/head/; revision=168156
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/blogtk/Makefile | 4 | ||||
-rw-r--r-- | deskutils/blogtk/files/patch-blogtk-no-category | 19 |
2 files changed, 21 insertions, 2 deletions
diff --git a/deskutils/blogtk/Makefile b/deskutils/blogtk/Makefile index 1b7c541c177f..87865feccd98 100644 --- a/deskutils/blogtk/Makefile +++ b/deskutils/blogtk/Makefile @@ -1,4 +1,3 @@ -# ex:ts=8 # Ports collection makefile for: blogtk # Date created: Jul 30, 2004 # Whom: ijliao @@ -8,12 +7,13 @@ PORTNAME= blogtk PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= deskutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} DISTNAME= ${PORTNAME}_${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jbq@caraldi.com COMMENT= A client for Blogger, Movable Type, and other blogging systems WRKSRC= ${WRKDIR}/BloGTK-${PORTVERSION} diff --git a/deskutils/blogtk/files/patch-blogtk-no-category b/deskutils/blogtk/files/patch-blogtk-no-category new file mode 100644 index 000000000000..8d6cf3663d91 --- /dev/null +++ b/deskutils/blogtk/files/patch-blogtk-no-category @@ -0,0 +1,19 @@ +--- src/BloGTK.py.orig Mon Jan 10 04:51:05 2005 ++++ src/BloGTK.py Mon Jul 17 17:04:32 2006 +@@ -609,6 +609,7 @@ + blogID = item['blogid'] + + # Are we using MT? If so, we need to pull the category ID as well. ++ catID = "0" + if self.system == "mt": + + catName = self.catCombo.entry.get_text() +@@ -619,8 +620,6 @@ + for k,v in item.items(): + if item['categoryName'] == catName: + catID = item['categoryId'] +- else: +- catID = "0" + + # 0.95 - We also need to pull our extended entry as well as our other + # fields |