diff options
author | Markus Brueffer <markus@FreeBSD.org> | 2005-11-08 14:30:37 +0000 |
---|---|---|
committer | Markus Brueffer <markus@FreeBSD.org> | 2005-11-08 14:30:37 +0000 |
commit | fd1fd44d6f5a65310bb900b379b8fb23ef4d689e (patch) | |
tree | 5676c1ecc9f6c6fcce912754edec4d662358aac6 | |
parent | e5ad0587966931cfdbea5c6730651825190836f9 (diff) | |
download | ports-fd1fd44d6f5a65310bb900b379b8fb23ef4d689e.tar.gz ports-fd1fd44d6f5a65310bb900b379b8fb23ef4d689e.zip |
- Add patch in order to fix a major bug where @string elements won't be saved
- Bump PORTREVISION
Notes
Notes:
svn path=/head/; revision=147577
-rw-r--r-- | databases/kbibtex/Makefile | 2 | ||||
-rw-r--r-- | databases/kbibtex/files/patch-bibtexstring.cpp | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/databases/kbibtex/Makefile b/databases/kbibtex/Makefile index 5905f1d76f13..494673218e30 100644 --- a/databases/kbibtex/Makefile +++ b/databases/kbibtex/Makefile @@ -6,7 +6,7 @@ PORTNAME= kbibtex PORTVERSION= 0.1.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases kde MASTER_SITES= http://www.unix-ag.uni-kl.de/~fischer/${PORTNAME}/download/ diff --git a/databases/kbibtex/files/patch-bibtexstring.cpp b/databases/kbibtex/files/patch-bibtexstring.cpp new file mode 100644 index 000000000000..25f83bc339be --- /dev/null +++ b/databases/kbibtex/files/patch-bibtexstring.cpp @@ -0,0 +1,10 @@ +--- src/bibtexstring.cpp.orig Tue Nov 8 13:07:00 2005 ++++ src/bibtexstring.cpp Tue Nov 8 13:07:40 2005 +@@ -112,6 +112,7 @@ + else result.append( "\"" ); + + result.append( " }" ); ++ return result; + } + break; + case BibTeXFile::formatXML: |