aboutsummaryrefslogtreecommitdiff
path: root/x11-themes
diff options
context:
space:
mode:
authorTilman Keskinoz <arved@FreeBSD.org>2004-11-04 18:59:34 +0000
committerTilman Keskinoz <arved@FreeBSD.org>2004-11-04 18:59:34 +0000
commit3959a9ad17a98198e0e45062b68c4f3834b9087d (patch)
treebfc85ba310053ab797763428cb2d122fd4d88b94 /x11-themes
parentb7744a18eb584c4f2ff23c260c43d5bdcecf096b (diff)
downloadports-3959a9ad17a98198e0e45062b68c4f3834b9087d.tar.gz
ports-3959a9ad17a98198e0e45062b68c4f3834b9087d.zip
Notes
Diffstat (limited to 'x11-themes')
-rw-r--r--x11-themes/phase/Makefile2
-rw-r--r--x11-themes/phase/distinfo4
-rw-r--r--x11-themes/phase/files/patch-phasestyle.cc29
3 files changed, 3 insertions, 32 deletions
diff --git a/x11-themes/phase/Makefile b/x11-themes/phase/Makefile
index 381f41378d1c..e6c3e1321257 100644
--- a/x11-themes/phase/Makefile
+++ b/x11-themes/phase/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= phase
-PORTVERSION= 0.4
+PORTVERSION= 0.6
CATEGORIES= x11-themes kde
MASTER_SITES= http://www.usermode.org/code/
diff --git a/x11-themes/phase/distinfo b/x11-themes/phase/distinfo
index 70b7d9e79e74..2a8d47501543 100644
--- a/x11-themes/phase/distinfo
+++ b/x11-themes/phase/distinfo
@@ -1,2 +1,2 @@
-MD5 (phase-0.4.tar.gz) = 4e5f5bf08e0b185318e5d2d4df5b1b5b
-SIZE (phase-0.4.tar.gz) = 474702
+MD5 (phase-0.6.tar.gz) = ab23b2970ca6479a483a6d24c6880acc
+SIZE (phase-0.6.tar.gz) = 474823
diff --git a/x11-themes/phase/files/patch-phasestyle.cc b/x11-themes/phase/files/patch-phasestyle.cc
deleted file mode 100644
index 4ab6e5dff406..000000000000
--- a/x11-themes/phase/files/patch-phasestyle.cc
+++ /dev/null
@@ -1,29 +0,0 @@
---- phasestyle/phasestyle.cc.orig Mon Jul 5 19:38:55 2004
-+++ phasestyle/phasestyle.cc Sun Jul 25 20:58:33 2004
-@@ -1085,7 +1085,7 @@
- case KPE_SliderHandle: {
- const QSlider* slider = dynamic_cast<const QSlider*>(widget);
- if (slider) {
-- QColor color = (slider==hover_)
-+ QColor color = ((QWidget*)slider==hover_)
- ? group.button().light(contrast)
- : group.button();
- if (slider->orientation() == Horizontal) {
-@@ -1619,7 +1619,7 @@
-
- sunken = (active == SC_ComboBoxArrow);
- drawPhaseButton(painter, x, y, w, h, group,
-- (combo==hover_)
-+ ((QWidget*)combo==hover_)
- ? group.button().light(contrast)
- : group.button(), sunken);
-
-@@ -1774,7 +1774,7 @@
- if (reverse_) subrect.moveLeft(spin->upRect().left());
- drawPhaseBevel(painter, subrect.x(), subrect.y(),
- subrect.width(), subrect.height(), group,
-- (spin==hover_)
-+ ((QWidget*)spin==hover_)
- ? group.button().light(contrast)
- : group.button(), false, false, false);
- }