diff options
author | Thomas Abthorpe <tabthorpe@FreeBSD.org> | 2010-01-07 17:47:25 +0000 |
---|---|---|
committer | Thomas Abthorpe <tabthorpe@FreeBSD.org> | 2010-01-07 17:47:25 +0000 |
commit | 9ed8443789fe258aa6894cdff0f2ae933bd62e5f (patch) | |
tree | 041e3b777d77a4e2d9f1ce458895b0389804e96f /misc/bibletime | |
parent | 42ae21c9adf61658778e514d0770adb1d03ee4fb (diff) | |
download | ports-9ed8443789fe258aa6894cdff0f2ae933bd62e5f.tar.gz ports-9ed8443789fe258aa6894cdff0f2ae933bd62e5f.zip |
Notes
Diffstat (limited to 'misc/bibletime')
-rw-r--r-- | misc/bibletime/Makefile | 5 | ||||
-rw-r--r-- | misc/bibletime/files/patch-src__bibletime.cpp | 11 |
2 files changed, 2 insertions, 14 deletions
diff --git a/misc/bibletime/Makefile b/misc/bibletime/Makefile index 6d122ff144fb..4db24ac3d360 100644 --- a/misc/bibletime/Makefile +++ b/misc/bibletime/Makefile @@ -7,13 +7,14 @@ PORTNAME= bibletime PORTVERSION= 2.5 +PORTREVISION= 1 CATEGORIES= misc kde MASTER_SITES= SF/${PORTNAME}/BibleTime%202/BibleTime%202%20source%20code MAINTAINER= tabthorpe@FreeBSD.org COMMENT= An opensource Bible study tool -RUN_DEPENDS= ${LOCALBASE}/lib/libsword-1.6.0.so:${PORTSDIR}/misc/sword +RUN_DEPENDS= ${LOCALBASE}/lib/libsword-1.6.1.so:${PORTSDIR}/misc/sword BUILD_DEPENDS= ${RUN_DEPENDS} LIB_DEPENDS= boost_python:${PORTSDIR}/devel/boost-python-libs \ clucene.0:${PORTSDIR}/textproc/clucene @@ -25,8 +26,6 @@ QT_COMPONENTS= corelib dbus gui iconengines network phonon qtestlib script \ svg webkit xml linguist_build moc_build qmake_build \ rcc_build uic_build -CONFLICTS= bibletime-kde3-1* - .include <bsd.port.pre.mk> .if ${OSVERSION} < 700042 diff --git a/misc/bibletime/files/patch-src__bibletime.cpp b/misc/bibletime/files/patch-src__bibletime.cpp deleted file mode 100644 index 29b6a6ae4296..000000000000 --- a/misc/bibletime/files/patch-src__bibletime.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- ./src/bibletime.cpp.orig 2009-12-15 13:23:36.000000000 -0500 -+++ ./src/bibletime.cpp 2009-12-15 13:24:19.000000000 -0500 -@@ -61,7 +61,7 @@ - const int month = date.month(); - QString splashImage(DU::getPicsDir().canonicalPath().append("/")); - -- if ((month >= 12 && day >= 24) || (month <= 1 && day < 6)) { -+ if ((month >= 12) || (month <= 1 && day < 6)) { - splashImage.append("startuplogo_christmas.png"); - } else { - splashImage.append("startuplogo.png"); |