Upgrade KDE to 2.2.2:

* General:
 	- Support for objprelink.
 	- Hack for autoconf 2.13/automake 1.4.  Note that we can't use
	  the standard USE_AUTO* because they change things in work/*;
	  KDE has its own way of doing that.
 	- Light cleanup of extra dirs in the PLISTs provided by
	   my mkplistpkg[1] script.
 	- Speedups of both compile and runtime through the usage of
	  --disable-debug and --enable-final.  The latter did not work
	  with the kdemultimedia package, unfortunately.
	- Patch updates.
 * audio/kdemultimedia2:
	- Patch to fix KSCD on FreeBSD[2].  It works very well now.
 * deskutils/kdepim:
 	- Enable kpilot[3].  Pull in the latest pilot-link stuff.
 * devel/kdesdk,
 * devel/kdevelop:
 	- No specific changes.
 * devel/qt-designer:
 	- Make this port depend almost entirely on qt23 to make it more
	  maintainable, so I don't have to keep hacking the patches to
	  get them to apply.
 * editors/koffice,
 * games/kdegames,
 * graphics/kdegraphics:
 	- No specific changes.
 * misc/kdeaddons:
	- SDL is required now.  Cull SDL PLIST_SUB and such.
	- Fix breakage from hardcoding "sdl-config".
 * misc/kdeutils2:
	- Fix problem with klaptopdaemon[4] where it didn't properly
	  display the battery time.  This patch is untested, but applied.
 * net/kdenetwork2:
	- Fix DCC for KSIRC[5].
	- Remove ktalkd from the build.  It requires some weird thing
	  in the configure script that I don't have time to look at.
 * sysutils/kdeadmin:
	- No specific changes.
 * textproc/kdoc:
	- Remove bogus requirement that kdoc requires Perl 5.6.0; it sure
	  seems to operate fine with >= 5.005.  But I'll let time tell.
 * www/quanta:
	- No specific changes (--disable-debug support only).
 * x11/kde2:
	- No specific changes.
 * x11/kdebase2:
	- Fix ksysguard compile by merging the files from the HEAD branch
	  of KDE CVS that were missing at release time for FreeBSD[6].  :\
 * x11/kdelibs2:
	- Recognize CUPS' spinoff[7].
	- Add libxslt dependency since it was removed from kdelibs.
	- Fix libxml compile problems[8] (accomplished by upgrading).
	- Remove libkformula from port Makefile; this library has been
	  spun off into koffice.
	- Fix mode problems with DCOP[9].  This allows you to save files
	  properly.  It also seems to be a FreeBSD specific problem.
	- Fix bashisms in kdeprint/imagetops script[10].
 * x11-clocks/kdetoys2:
 	- No specific changes.
 * x11-toolkits/qt23:
	- Do NOT upgrade to QT 2.3.2[11].
	- Allow devel/qt-designer to depend on this port entirely for the
	  patches by adding a perlre to accomplish this.
 * x11-wm/kdeartwork:
	- No specific changes.

Thanks to the FreeBSD/KDE[1] team[12] who helped me test these out!

[1]  http://freebsd.kde.org/;
     http://www.databits.net/cgi-bin/cvsweb.cgi/scripts/portbuild/mkplistpkg
[2]  Submitted by:	Matthew Holmes <matt@speakeasy.net>
[3]  PR:		31914
     Submitted by:	Alan Eldridge <alane@geeksrus.net>
[4]  PR:		28475
     Submitted by:	Arun Sharma <arun@sharmas.dhs.org>
[5]  Submitted by:	Luc Morin <luc_m@videotron.ca>
[6]  Found at:	http://webcvs.kde.org/kdebase/ksysguard/ksysguardd/FreeBSD/
[7]  PR:		32321
     Reported by:	gad
     Submitted by:	James A. Halstead <jah4007@cs.rit.edu>
[8]  PR:		32055
     Reported by:	William Richard <wrichard@trivalley.com>, others
[9]  PR:		31629
     Submitted by:	Alan Eldridge <alane@geeksrus.net>
[10] PR:		32358
     Submitted by:	Alexander N. Kabaev <ak03@gte.com>
[11] PR:		31809
     Requested by:	Nathan Ahlstrom <nrahlstr@winternet.com> (denied)
[12] http://freebsd.kde.org/contact.shtml;
     http://lists.csociety.org/pipermail/kde-freebsd;
     http://lists.csociety.org/listinfo/kde-freebsd
This commit is contained in:
Will Andrews 2001-12-04 03:47:18 +00:00
parent fb2c030e15
commit 1d206a3483
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=51005
362 changed files with 14735 additions and 1279 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdeutils
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,11 +14,33 @@ DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
USE_KDELIBS_VER=2
USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
MAN1= efax.1 efix.1 fax.1
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdeutils-2.2.1.tar.bz2) = a511f6be6949d5b1c2f943f3f9ce27a5
MD5 (KDE/kdeutils-2.2.2.tar.bz2) = 68c3c86d97c3a95079f81b2c7f4bf35a

View File

@ -0,0 +1,20 @@
--- klaptopdaemon/portable.cpp- Thu Jun 28 00:08:02 2001
+++ klaptopdaemon/portable.cpp Thu Jun 28 00:08:22 2001
@@ -453,7 +453,7 @@
if (ret == -1)
return 0;
- return (info.ai_batt_time != 0xffff);
+ return (info.ai_batt_time != -1);
}
//
@@ -638,7 +638,7 @@
p.powered = info.ai_acline;
p.percentage = (info.ai_batt_life==255 ? 100 : info.ai_batt_life);
- p.time = (info.ai_batt_time != 0xffff ? info.ai_batt_time/60 : -1);
+ p.time = (info.ai_batt_time != -1 ? info.ai_batt_time/60 : -1);
return(p);
bad:

View File

@ -251,7 +251,6 @@ share/services/arkpart.desktop
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kpm
@dirrm share/doc/HTML/en/knotes
@dirrm share/doc/HTML/en/klprfax
@ -308,7 +307,6 @@ share/services/arkpart.desktop
@dirrm share/apps/ark/icons/hicolor
@dirrm share/apps/ark/icons
@dirrm share/apps/ark
@dirrm share/apps
@dirrm share/applnk/Utilities
@dirrm share/applnk/System
@dirrm share/applnk/Settings/PowerControl
@ -316,4 +314,3 @@ share/services/arkpart.desktop
@dirrm share/applnk/Settings
@dirrm share/applnk/Editors
@dirrm share/applnk
@dirrm lib/kde2

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdemultimedia
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= audio kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,14 +14,21 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
RUN_DEPENDS= xanim:${PORTSDIR}/graphics/xanim
USE_KDELIBS_VER=2
USE_BZIP2= yes
INSTALLS_SHLIB= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-qt-includes=${X11BASE}/include/qt2 \
--with-qt-libraries=${X11BASE}/lib
--with-qt-libraries=${X11BASE}/lib \
--enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
MAKE_ENV= ${CONFIGURE_ENV}
@ -46,9 +53,21 @@ pre-everything::
.endif
pre-configure:
${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" ${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4
${PERL} -pi -e 's,kscd_compile=no,kscd_compile=yes,g; \
s,kde_artsplug_compiles = xno,kde_argsplug_compiles = x,g' ${WRKSRC}/configure.in
${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" \
${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4
${PERL} -pi -e \
's,kscd_compile=no,kscd_compile=yes,g; \
s,kde_artsplug_compiles = xno,kde_artsplug_compiles = x,g' \
${WRKSRC}/kscd/configure.in.in
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
post-install:
@${ECHO_MSG}

View File

@ -1 +1 @@
MD5 (KDE/kdemultimedia-2.2.1.tar.bz2) = c4724c00c6d2c69ccc923de944cf7983
MD5 (KDE/kdemultimedia-2.2.2.tar.bz2) = 76981ca284663093cd0bc37500e10441

View File

@ -0,0 +1,163 @@
--- kscd/libwm/cdrom.c Mon Jun 18 07:01:07 2001
+++ kscd/libwm/cdrom.c.new Thu Nov 29 21:37:42 2001
@@ -182,6 +182,13 @@
struct wm_playlist *l;
int i;
int pos;
+
+ if(drive.get_trackcount == NULL)
+ {
+ perror("trackcount: function pointer NULL");
+ return (NULL);
+ }
+
if ((drive.get_trackcount)(&drive, &thiscd.ntracks) < 0)
{
perror("trackcount");
@@ -217,6 +224,12 @@
for (i = 0; i < thiscd.ntracks; i++)
{
+ if(drive.get_trackinfo == NULL)
+ {
+ perror("CD track info read: function pointer null");
+ return (NULL);
+ }
+
if ((drive.get_trackinfo)(&drive, i + 1, &thiscd.trk[i].data,
&thiscd.trk[i].start) < 0)
{
@@ -235,6 +248,12 @@
thiscd.trk[i].section = 0;
}
+ if(drive.get_cdlen == NULL)
+ {
+ perror("CD length read: function pointer null");
+ return (NULL);
+ }
+
if ((drive.get_cdlen)(&drive, &thiscd.trk[i].start) < 0)
{
perror("CD length read");
@@ -305,6 +324,12 @@
if( (cur_cdmode == WM_CDM_STOPPED) || (cur_cdmode == WM_CDM_PLAYING) )
oldmode = cur_cdmode;
+ if(drive.get_drive_status == NULL)
+ {
+ perror("CD get drive status: function pointer NULL");
+ return (-1);
+ }
+
if( (drive.get_drive_status)(&drive, oldmode, &mode, &cur_frame,
&trackno, &cur_index) < 0)
{
@@ -474,7 +499,8 @@
right = right < 0 ? 0 : right > 100 ? 100 : right;
/* printf("Left = %d, Right = %d\n", left, right);
*/
- (void) (drive.set_volume)(&drive, left, right);
+ if(drive.set_volume != NULL)
+ (void) (drive.set_volume)(&drive, left, right);
} /* cd_volume() */
#else
@@ -513,7 +539,8 @@
if (right > 100)
right = 100;
- (void) (drive.set_volume)(&drive, left, right);
+ if(drive.set_volume != NULL)
+ (void) (drive.set_volume)(&drive, left, right);
} /* cd_volume() */
#endif /* CLIF_VOL */
@@ -536,18 +563,20 @@
switch (cur_cdmode) {
case WM_CDM_PLAYING: /* playing */
cur_cdmode = WM_CDM_PAUSED;
- (drive.pause)(&drive);
- paused_pos = cur_pos_rel;
+ if(drive.pause != NULL)
+ (drive.pause)(&drive);
+
+ paused_pos = cur_pos_rel;
break;
case WM_CDM_PAUSED: /* paused */
cur_cdmode = WM_CDM_PLAYING;
/* (drive.resume)(&drive); */
- if ((drive.resume)(&drive) > 0 )
- {
- wm_cd_play(cur_track, paused_pos,
- playlist[cur_listno-1].end);
- }
+ if(drive.resume != NULL)
+ if ((drive.resume)(&drive) > 0 )
+ wm_cd_play(cur_track, paused_pos, playlist[cur_listno-1].end);
+ break;
+
default: /* */
break;
}
@@ -568,7 +597,10 @@
{
cur_lasttrack = cur_firsttrack = -1;
cur_cdmode = WM_CDM_STOPPED;
- (drive.stop)(&drive);
+
+ if(drive.stop != NULL)
+ (drive.stop)(&drive);
+
cur_track = 1;
}
} /* wm_cd_stop() */
@@ -595,7 +627,8 @@
if (start >= end)
start = end-1;
- (drive.play)(&drive, start, end, realstart);
+ if(drive.play != NULL)
+ (drive.play)(&drive, start, end, realstart);
}
/*
@@ -681,6 +714,12 @@
{
int status;
+ if(drive.eject == NULL)
+ {
+ perror("Could not eject CD: function pointer NULL");
+ return (1);
+ }
+
status = (drive.eject)(&drive);
if (status < 0)
{
@@ -705,6 +744,12 @@
int wm_cd_closetray(void)
{
+ if(drive.closetray == NULL)
+ {
+ perror("Could not close drive tray: function pointer NULL");
+ return (1);
+ }
+
return((drive.closetray)(&drive) ? 0 : wm_cd_status()==2 ? 1 : 0);
} /* wm_cd_closetray() */
@@ -785,8 +830,9 @@
{
int left, right;
- if ((drive.get_volume)(&drive, &left, &right) < 0 || left == -1)
- return (max);
+ if(drive.get_volume != NULL)
+ if ((drive.get_volume)(&drive, &left, &right) < 0 || left == -1)
+ return (max);
left = (left * max + 99) / 100;
right = (right * max + 99) / 100;

View File

@ -0,0 +1,19 @@
--- kscd/kscd.cpp Sun Dec 2 15:08:44 2001
+++ kscd/kscd.cpp.new Sun Dec 2 15:10:04 2001
@@ -1313,7 +1313,6 @@
/*
* cdMode
*
- * - 'No disc' handling is missing
* - Data discs not recognized as data discs.
*
*/
@@ -1329,7 +1328,7 @@
if( sss == 2 )
have_new_cd = true;
- if(sss < 0)
+ if(sss < 0 || sss == WM_CDS_NO_DISC)
{
if(cddrive_is_ok && (sss != WM_ERR_SCSI_INQUIRY_FAILED))
{

View File

@ -0,0 +1,11 @@
--- kscd/libwm/plat_freebsd.c Tue Apr 10 13:34:52 2001
+++ kscd/libwm/plat_freebsd.c.new Thu Nov 29 22:20:56 2001
@@ -159,6 +159,8 @@
wm_lib_message(WM_MSG_LEVEL_DEBUG|WM_MSG_CLASS, "calling wmcd_open()\n");
status = wmcd_open( d ); /* open it as usual */
wm_susleep( 1000 );
+ if(status == -EACCES || status == 1)
+ return status;
} while ( status != 0 );
return status;
} /* wmcd_reopen() */

View File

@ -756,15 +756,9 @@ share/mimelnk/audio/x-karaoke.desktop
share/mimelnk/text/xmcd.desktop
share/services/kmixctrl_restore.desktop
share/servicetypes/audiomidi.desktop
@dirrm share/servicetypes
@dirrm share/services
@dirrm share/mimelnk/text
@dirrm share/mimelnk/audio
@dirrm share/mimelnk/application
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/22x22/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/noatun
@dirrm share/doc/HTML/en/kscd
@dirrm share/doc/HTML/en/kmix
@ -773,8 +767,6 @@ share/servicetypes/audiomidi.desktop
@dirrm share/doc/HTML/en/artsbuilder/images
@dirrm share/doc/HTML/en/artsbuilder
@dirrm share/doc/HTML/en/aktion
@dirrm share/doc/HTML/en
@dirrm share/config
@dirrm share/apps/noatun/skins/kaiman/k9
@dirrm share/apps/noatun/skins/kaiman/circle
@dirrm share/apps/noatun/skins/kaiman/car-preset
@ -843,8 +835,6 @@ share/servicetypes/audiomidi.desktop
@dirrm share/applnk/Settings/Sound
@dirrm share/applnk/Settings
@dirrm share/applnk/Multimedia
@dirrm share/applnk
@dirrm lib/mcop/Noatun
@dirrm lib/mcop/Arts
@dirrm lib/mcop
@dirrm include/noatun
@dirrm include/arts

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdemultimedia
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= audio kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,14 +14,21 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
RUN_DEPENDS= xanim:${PORTSDIR}/graphics/xanim
USE_KDELIBS_VER=2
USE_BZIP2= yes
INSTALLS_SHLIB= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-qt-includes=${X11BASE}/include/qt2 \
--with-qt-libraries=${X11BASE}/lib
--with-qt-libraries=${X11BASE}/lib \
--enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
MAKE_ENV= ${CONFIGURE_ENV}
@ -46,9 +53,21 @@ pre-everything::
.endif
pre-configure:
${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" ${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4
${PERL} -pi -e 's,kscd_compile=no,kscd_compile=yes,g; \
s,kde_artsplug_compiles = xno,kde_argsplug_compiles = x,g' ${WRKSRC}/configure.in
${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" \
${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4
${PERL} -pi -e \
's,kscd_compile=no,kscd_compile=yes,g; \
s,kde_artsplug_compiles = xno,kde_artsplug_compiles = x,g' \
${WRKSRC}/kscd/configure.in.in
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
post-install:
@${ECHO_MSG}

View File

@ -1 +1 @@
MD5 (KDE/kdemultimedia-2.2.1.tar.bz2) = c4724c00c6d2c69ccc923de944cf7983
MD5 (KDE/kdemultimedia-2.2.2.tar.bz2) = 76981ca284663093cd0bc37500e10441

View File

@ -0,0 +1,163 @@
--- kscd/libwm/cdrom.c Mon Jun 18 07:01:07 2001
+++ kscd/libwm/cdrom.c.new Thu Nov 29 21:37:42 2001
@@ -182,6 +182,13 @@
struct wm_playlist *l;
int i;
int pos;
+
+ if(drive.get_trackcount == NULL)
+ {
+ perror("trackcount: function pointer NULL");
+ return (NULL);
+ }
+
if ((drive.get_trackcount)(&drive, &thiscd.ntracks) < 0)
{
perror("trackcount");
@@ -217,6 +224,12 @@
for (i = 0; i < thiscd.ntracks; i++)
{
+ if(drive.get_trackinfo == NULL)
+ {
+ perror("CD track info read: function pointer null");
+ return (NULL);
+ }
+
if ((drive.get_trackinfo)(&drive, i + 1, &thiscd.trk[i].data,
&thiscd.trk[i].start) < 0)
{
@@ -235,6 +248,12 @@
thiscd.trk[i].section = 0;
}
+ if(drive.get_cdlen == NULL)
+ {
+ perror("CD length read: function pointer null");
+ return (NULL);
+ }
+
if ((drive.get_cdlen)(&drive, &thiscd.trk[i].start) < 0)
{
perror("CD length read");
@@ -305,6 +324,12 @@
if( (cur_cdmode == WM_CDM_STOPPED) || (cur_cdmode == WM_CDM_PLAYING) )
oldmode = cur_cdmode;
+ if(drive.get_drive_status == NULL)
+ {
+ perror("CD get drive status: function pointer NULL");
+ return (-1);
+ }
+
if( (drive.get_drive_status)(&drive, oldmode, &mode, &cur_frame,
&trackno, &cur_index) < 0)
{
@@ -474,7 +499,8 @@
right = right < 0 ? 0 : right > 100 ? 100 : right;
/* printf("Left = %d, Right = %d\n", left, right);
*/
- (void) (drive.set_volume)(&drive, left, right);
+ if(drive.set_volume != NULL)
+ (void) (drive.set_volume)(&drive, left, right);
} /* cd_volume() */
#else
@@ -513,7 +539,8 @@
if (right > 100)
right = 100;
- (void) (drive.set_volume)(&drive, left, right);
+ if(drive.set_volume != NULL)
+ (void) (drive.set_volume)(&drive, left, right);
} /* cd_volume() */
#endif /* CLIF_VOL */
@@ -536,18 +563,20 @@
switch (cur_cdmode) {
case WM_CDM_PLAYING: /* playing */
cur_cdmode = WM_CDM_PAUSED;
- (drive.pause)(&drive);
- paused_pos = cur_pos_rel;
+ if(drive.pause != NULL)
+ (drive.pause)(&drive);
+
+ paused_pos = cur_pos_rel;
break;
case WM_CDM_PAUSED: /* paused */
cur_cdmode = WM_CDM_PLAYING;
/* (drive.resume)(&drive); */
- if ((drive.resume)(&drive) > 0 )
- {
- wm_cd_play(cur_track, paused_pos,
- playlist[cur_listno-1].end);
- }
+ if(drive.resume != NULL)
+ if ((drive.resume)(&drive) > 0 )
+ wm_cd_play(cur_track, paused_pos, playlist[cur_listno-1].end);
+ break;
+
default: /* */
break;
}
@@ -568,7 +597,10 @@
{
cur_lasttrack = cur_firsttrack = -1;
cur_cdmode = WM_CDM_STOPPED;
- (drive.stop)(&drive);
+
+ if(drive.stop != NULL)
+ (drive.stop)(&drive);
+
cur_track = 1;
}
} /* wm_cd_stop() */
@@ -595,7 +627,8 @@
if (start >= end)
start = end-1;
- (drive.play)(&drive, start, end, realstart);
+ if(drive.play != NULL)
+ (drive.play)(&drive, start, end, realstart);
}
/*
@@ -681,6 +714,12 @@
{
int status;
+ if(drive.eject == NULL)
+ {
+ perror("Could not eject CD: function pointer NULL");
+ return (1);
+ }
+
status = (drive.eject)(&drive);
if (status < 0)
{
@@ -705,6 +744,12 @@
int wm_cd_closetray(void)
{
+ if(drive.closetray == NULL)
+ {
+ perror("Could not close drive tray: function pointer NULL");
+ return (1);
+ }
+
return((drive.closetray)(&drive) ? 0 : wm_cd_status()==2 ? 1 : 0);
} /* wm_cd_closetray() */
@@ -785,8 +830,9 @@
{
int left, right;
- if ((drive.get_volume)(&drive, &left, &right) < 0 || left == -1)
- return (max);
+ if(drive.get_volume != NULL)
+ if ((drive.get_volume)(&drive, &left, &right) < 0 || left == -1)
+ return (max);
left = (left * max + 99) / 100;
right = (right * max + 99) / 100;

View File

@ -0,0 +1,19 @@
--- kscd/kscd.cpp Sun Dec 2 15:08:44 2001
+++ kscd/kscd.cpp.new Sun Dec 2 15:10:04 2001
@@ -1313,7 +1313,6 @@
/*
* cdMode
*
- * - 'No disc' handling is missing
* - Data discs not recognized as data discs.
*
*/
@@ -1329,7 +1328,7 @@
if( sss == 2 )
have_new_cd = true;
- if(sss < 0)
+ if(sss < 0 || sss == WM_CDS_NO_DISC)
{
if(cddrive_is_ok && (sss != WM_ERR_SCSI_INQUIRY_FAILED))
{

View File

@ -0,0 +1,11 @@
--- kscd/libwm/plat_freebsd.c Tue Apr 10 13:34:52 2001
+++ kscd/libwm/plat_freebsd.c.new Thu Nov 29 22:20:56 2001
@@ -159,6 +159,8 @@
wm_lib_message(WM_MSG_LEVEL_DEBUG|WM_MSG_CLASS, "calling wmcd_open()\n");
status = wmcd_open( d ); /* open it as usual */
wm_susleep( 1000 );
+ if(status == -EACCES || status == 1)
+ return status;
} while ( status != 0 );
return status;
} /* wmcd_reopen() */

View File

@ -756,15 +756,9 @@ share/mimelnk/audio/x-karaoke.desktop
share/mimelnk/text/xmcd.desktop
share/services/kmixctrl_restore.desktop
share/servicetypes/audiomidi.desktop
@dirrm share/servicetypes
@dirrm share/services
@dirrm share/mimelnk/text
@dirrm share/mimelnk/audio
@dirrm share/mimelnk/application
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/22x22/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/noatun
@dirrm share/doc/HTML/en/kscd
@dirrm share/doc/HTML/en/kmix
@ -773,8 +767,6 @@ share/servicetypes/audiomidi.desktop
@dirrm share/doc/HTML/en/artsbuilder/images
@dirrm share/doc/HTML/en/artsbuilder
@dirrm share/doc/HTML/en/aktion
@dirrm share/doc/HTML/en
@dirrm share/config
@dirrm share/apps/noatun/skins/kaiman/k9
@dirrm share/apps/noatun/skins/kaiman/circle
@dirrm share/apps/noatun/skins/kaiman/car-preset
@ -843,8 +835,6 @@ share/servicetypes/audiomidi.desktop
@dirrm share/applnk/Settings/Sound
@dirrm share/applnk/Settings
@dirrm share/applnk/Multimedia
@dirrm share/applnk
@dirrm lib/mcop/Noatun
@dirrm lib/mcop/Arts
@dirrm lib/mcop
@dirrm include/noatun
@dirrm include/arts

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdeutils
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,11 +14,33 @@ DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
USE_KDELIBS_VER=2
USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
MAN1= efax.1 efix.1 fax.1
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdeutils-2.2.1.tar.bz2) = a511f6be6949d5b1c2f943f3f9ce27a5
MD5 (KDE/kdeutils-2.2.2.tar.bz2) = 68c3c86d97c3a95079f81b2c7f4bf35a

View File

@ -0,0 +1,20 @@
--- klaptopdaemon/portable.cpp- Thu Jun 28 00:08:02 2001
+++ klaptopdaemon/portable.cpp Thu Jun 28 00:08:22 2001
@@ -453,7 +453,7 @@
if (ret == -1)
return 0;
- return (info.ai_batt_time != 0xffff);
+ return (info.ai_batt_time != -1);
}
//
@@ -638,7 +638,7 @@
p.powered = info.ai_acline;
p.percentage = (info.ai_batt_life==255 ? 100 : info.ai_batt_life);
- p.time = (info.ai_batt_time != 0xffff ? info.ai_batt_time/60 : -1);
+ p.time = (info.ai_batt_time != -1 ? info.ai_batt_time/60 : -1);
return(p);
bad:

View File

@ -251,7 +251,6 @@ share/services/arkpart.desktop
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kpm
@dirrm share/doc/HTML/en/knotes
@dirrm share/doc/HTML/en/klprfax
@ -308,7 +307,6 @@ share/services/arkpart.desktop
@dirrm share/apps/ark/icons/hicolor
@dirrm share/apps/ark/icons
@dirrm share/apps/ark
@dirrm share/apps
@dirrm share/applnk/Utilities
@dirrm share/applnk/System
@dirrm share/applnk/Settings/PowerControl
@ -316,4 +314,3 @@ share/services/arkpart.desktop
@dirrm share/applnk/Settings
@dirrm share/applnk/Editors
@dirrm share/applnk
@dirrm lib/kde2

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdeutils
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,11 +14,33 @@ DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
USE_KDELIBS_VER=2
USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
MAN1= efax.1 efix.1 fax.1
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdeutils-2.2.1.tar.bz2) = a511f6be6949d5b1c2f943f3f9ce27a5
MD5 (KDE/kdeutils-2.2.2.tar.bz2) = 68c3c86d97c3a95079f81b2c7f4bf35a

View File

@ -0,0 +1,20 @@
--- klaptopdaemon/portable.cpp- Thu Jun 28 00:08:02 2001
+++ klaptopdaemon/portable.cpp Thu Jun 28 00:08:22 2001
@@ -453,7 +453,7 @@
if (ret == -1)
return 0;
- return (info.ai_batt_time != 0xffff);
+ return (info.ai_batt_time != -1);
}
//
@@ -638,7 +638,7 @@
p.powered = info.ai_acline;
p.percentage = (info.ai_batt_life==255 ? 100 : info.ai_batt_life);
- p.time = (info.ai_batt_time != 0xffff ? info.ai_batt_time/60 : -1);
+ p.time = (info.ai_batt_time != -1 ? info.ai_batt_time/60 : -1);
return(p);
bad:

View File

@ -251,7 +251,6 @@ share/services/arkpart.desktop
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kpm
@dirrm share/doc/HTML/en/knotes
@dirrm share/doc/HTML/en/klprfax
@ -308,7 +307,6 @@ share/services/arkpart.desktop
@dirrm share/apps/ark/icons/hicolor
@dirrm share/apps/ark/icons
@dirrm share/apps/ark
@dirrm share/apps
@dirrm share/applnk/Utilities
@dirrm share/applnk/System
@dirrm share/applnk/Settings/PowerControl
@ -316,4 +314,3 @@ share/services/arkpart.desktop
@dirrm share/applnk/Settings
@dirrm share/applnk/Editors
@dirrm share/applnk
@dirrm lib/kde2

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdepim
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= deskutils kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,14 +14,44 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
LIB_DEPENDS= pisock:${PORTSDIR}/palm/pilot-link
USE_KDELIBS_VER=2
USE_BISON= yes
USE_BZIP2= yes
INSTALLS_SHLIB= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink \
--with-extra-includes=${LOCALBASE}/pilot/include \
--with-extra-libs=${LOCALBASE}/pilot/lib
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
QTCPPFLAGS= -I${LOCALBASE}/pilot/include -L${LOCALBASE}/pilot/lib
QTLDFLAGS= ${QTCPPFLAGS}
CONFIGURE_ENV+= LIBS="${QTLDFLAGS}"
MAKE_ENV= ${CONFIGURE_ENV}
USE_GMAKE= yes
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
find ${WRKSRC}/kpilot \( -name Makefile.in -o -name Makefile.am \) | \
xargs ${PERL} -pi -e \
"s@LDFLAGS =@LDFLAGS=-L${LOCALBASE}/pilot/lib@g"
find ${WRKSRC}/libical -name Makefile.in | xargs ${PERL} -pi -e \
"s|INSTALL = \@INSTALL\@|INSTALL=${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP}|g"

View File

@ -1 +1 @@
MD5 (KDE/kdepim-2.2.1.tar.bz2) = 2b72725439279241b75c8048a79ca955
MD5 (KDE/kdepim-2.2.2.tar.bz2) = 55daf69b90108509895814b96fc8b671

View File

@ -1,8 +1,18 @@
bin/abbrowser_conduit
bin/alarmd
bin/conduitExpense
bin/conduitKNotes
bin/ical2vcal
bin/kandy
bin/kandy_client
bin/korganizer
bin/kpilot
bin/kpilotDaemon
bin/null_conduit
bin/pilotListener
bin/popmail_conduit
bin/todoconduit
bin/vcalconduit
include/kgantt/KGantt.h
include/kgantt/KGanttBarConfig.h
include/kgantt/KGanttItem.h
@ -74,6 +84,8 @@ lib/libvcard.so
lib/libvcard.so.0
share/applnk/Applications/korganizer.desktop
share/applnk/Utilities/kandy.desktop
share/applnk/Utilities/kpilot.desktop
share/applnk/Utilities/kpilotdaemon.desktop
share/apps/kandy/default.kandy
share/apps/kandy/kandymobileui.rc
share/apps/kandy/kandyui.rc
@ -189,6 +201,11 @@ share/apps/korganizer/sounds/lightmag.wav
share/apps/korganizer/sounds/onscreen.wav
share/apps/korganizer/sounds/spinout.wav
share/apps/korganizer/tips
share/apps/kpilot/icons/hicolor/16x16/actions/backup.png
share/apps/kpilot/icons/hicolor/16x16/actions/fastsync.png
share/apps/kpilot/icons/hicolor/16x16/actions/hotsync.png
share/apps/kpilot/icons/hicolor/16x16/actions/restore.png
share/apps/kpilot/kpilotui.rc
share/autostart/alarmd.desktop
share/config/korganizerrc
share/doc/HTML/en/kandy/common
@ -251,17 +268,34 @@ share/doc/HTML/en/kpilot/toolbar_backup.png
share/doc/HTML/en/kpilot/toolbar_hotsync.png
share/icons/hicolor/16x16/apps/kandy.png
share/icons/hicolor/16x16/apps/korganizer.png
share/icons/hicolor/16x16/apps/kpilot.png
share/icons/hicolor/32x32/apps/kandy.png
share/icons/hicolor/32x32/apps/korganizer.png
share/icons/hicolor/32x32/apps/kpilot.png
share/icons/hicolor/48x48/apps/korganizer.png
share/icons/locolor/16x16/apps/kpilot.xpm
share/services/abbrowser_conduit.desktop
share/services/expense-conduit.desktop
share/services/knotes-conduit.desktop
share/services/null-conduit.desktop
share/services/popmail-conduit.desktop
share/services/todo-conduit.desktop
share/services/vcal-conduit.desktop
share/servicetypes/kpilotconduit.desktop
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/locolor/16x16
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kpilot
@dirrm share/doc/HTML/en/korganizer
@dirrm share/doc/HTML/en/kandy
@dirrm share/config
@dirrm share/autostart
@dirrm share/apps/kpilot/icons/hicolor/16x16/actions
@dirrm share/apps/kpilot/icons/hicolor/16x16
@dirrm share/apps/kpilot/icons/hicolor
@dirrm share/apps/kpilot/icons
@dirrm share/apps/kpilot
@dirrm share/apps/korganizer/sounds
@dirrm share/apps/korganizer/icons/hicolor/32x32/actions
@dirrm share/apps/korganizer/icons/hicolor/32x32
@ -286,5 +320,6 @@ share/icons/hicolor/48x48/apps/korganizer.png
@dirrm share/apps/kandy
@dirrm share/applnk/Utilities
@dirrm share/applnk/Applications
@dirrm share/applnk
@dirrm include/rmm
@dirrm include/kgantt

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdepim
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= deskutils kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,14 +14,44 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
LIB_DEPENDS= pisock:${PORTSDIR}/palm/pilot-link
USE_KDELIBS_VER=2
USE_BISON= yes
USE_BZIP2= yes
INSTALLS_SHLIB= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink \
--with-extra-includes=${LOCALBASE}/pilot/include \
--with-extra-libs=${LOCALBASE}/pilot/lib
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
QTCPPFLAGS= -I${LOCALBASE}/pilot/include -L${LOCALBASE}/pilot/lib
QTLDFLAGS= ${QTCPPFLAGS}
CONFIGURE_ENV+= LIBS="${QTLDFLAGS}"
MAKE_ENV= ${CONFIGURE_ENV}
USE_GMAKE= yes
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
find ${WRKSRC}/kpilot \( -name Makefile.in -o -name Makefile.am \) | \
xargs ${PERL} -pi -e \
"s@LDFLAGS =@LDFLAGS=-L${LOCALBASE}/pilot/lib@g"
find ${WRKSRC}/libical -name Makefile.in | xargs ${PERL} -pi -e \
"s|INSTALL = \@INSTALL\@|INSTALL=${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP}|g"

View File

@ -1 +1 @@
MD5 (KDE/kdepim-2.2.1.tar.bz2) = 2b72725439279241b75c8048a79ca955
MD5 (KDE/kdepim-2.2.2.tar.bz2) = 55daf69b90108509895814b96fc8b671

View File

@ -1,8 +1,18 @@
bin/abbrowser_conduit
bin/alarmd
bin/conduitExpense
bin/conduitKNotes
bin/ical2vcal
bin/kandy
bin/kandy_client
bin/korganizer
bin/kpilot
bin/kpilotDaemon
bin/null_conduit
bin/pilotListener
bin/popmail_conduit
bin/todoconduit
bin/vcalconduit
include/kgantt/KGantt.h
include/kgantt/KGanttBarConfig.h
include/kgantt/KGanttItem.h
@ -74,6 +84,8 @@ lib/libvcard.so
lib/libvcard.so.0
share/applnk/Applications/korganizer.desktop
share/applnk/Utilities/kandy.desktop
share/applnk/Utilities/kpilot.desktop
share/applnk/Utilities/kpilotdaemon.desktop
share/apps/kandy/default.kandy
share/apps/kandy/kandymobileui.rc
share/apps/kandy/kandyui.rc
@ -189,6 +201,11 @@ share/apps/korganizer/sounds/lightmag.wav
share/apps/korganizer/sounds/onscreen.wav
share/apps/korganizer/sounds/spinout.wav
share/apps/korganizer/tips
share/apps/kpilot/icons/hicolor/16x16/actions/backup.png
share/apps/kpilot/icons/hicolor/16x16/actions/fastsync.png
share/apps/kpilot/icons/hicolor/16x16/actions/hotsync.png
share/apps/kpilot/icons/hicolor/16x16/actions/restore.png
share/apps/kpilot/kpilotui.rc
share/autostart/alarmd.desktop
share/config/korganizerrc
share/doc/HTML/en/kandy/common
@ -251,17 +268,34 @@ share/doc/HTML/en/kpilot/toolbar_backup.png
share/doc/HTML/en/kpilot/toolbar_hotsync.png
share/icons/hicolor/16x16/apps/kandy.png
share/icons/hicolor/16x16/apps/korganizer.png
share/icons/hicolor/16x16/apps/kpilot.png
share/icons/hicolor/32x32/apps/kandy.png
share/icons/hicolor/32x32/apps/korganizer.png
share/icons/hicolor/32x32/apps/kpilot.png
share/icons/hicolor/48x48/apps/korganizer.png
share/icons/locolor/16x16/apps/kpilot.xpm
share/services/abbrowser_conduit.desktop
share/services/expense-conduit.desktop
share/services/knotes-conduit.desktop
share/services/null-conduit.desktop
share/services/popmail-conduit.desktop
share/services/todo-conduit.desktop
share/services/vcal-conduit.desktop
share/servicetypes/kpilotconduit.desktop
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/locolor/16x16
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kpilot
@dirrm share/doc/HTML/en/korganizer
@dirrm share/doc/HTML/en/kandy
@dirrm share/config
@dirrm share/autostart
@dirrm share/apps/kpilot/icons/hicolor/16x16/actions
@dirrm share/apps/kpilot/icons/hicolor/16x16
@dirrm share/apps/kpilot/icons/hicolor
@dirrm share/apps/kpilot/icons
@dirrm share/apps/kpilot
@dirrm share/apps/korganizer/sounds
@dirrm share/apps/korganizer/icons/hicolor/32x32/actions
@dirrm share/apps/korganizer/icons/hicolor/32x32
@ -286,5 +320,6 @@ share/icons/hicolor/48x48/apps/korganizer.png
@dirrm share/apps/kandy
@dirrm share/applnk/Utilities
@dirrm share/applnk/Applications
@dirrm share/applnk
@dirrm include/rmm
@dirrm include/kgantt

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdepim
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= deskutils kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,14 +14,44 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
LIB_DEPENDS= pisock:${PORTSDIR}/palm/pilot-link
USE_KDELIBS_VER=2
USE_BISON= yes
USE_BZIP2= yes
INSTALLS_SHLIB= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink \
--with-extra-includes=${LOCALBASE}/pilot/include \
--with-extra-libs=${LOCALBASE}/pilot/lib
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
QTCPPFLAGS= -I${LOCALBASE}/pilot/include -L${LOCALBASE}/pilot/lib
QTLDFLAGS= ${QTCPPFLAGS}
CONFIGURE_ENV+= LIBS="${QTLDFLAGS}"
MAKE_ENV= ${CONFIGURE_ENV}
USE_GMAKE= yes
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
find ${WRKSRC}/kpilot \( -name Makefile.in -o -name Makefile.am \) | \
xargs ${PERL} -pi -e \
"s@LDFLAGS =@LDFLAGS=-L${LOCALBASE}/pilot/lib@g"
find ${WRKSRC}/libical -name Makefile.in | xargs ${PERL} -pi -e \
"s|INSTALL = \@INSTALL\@|INSTALL=${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP}|g"

View File

@ -1 +1 @@
MD5 (KDE/kdepim-2.2.1.tar.bz2) = 2b72725439279241b75c8048a79ca955
MD5 (KDE/kdepim-2.2.2.tar.bz2) = 55daf69b90108509895814b96fc8b671

View File

@ -1,8 +1,18 @@
bin/abbrowser_conduit
bin/alarmd
bin/conduitExpense
bin/conduitKNotes
bin/ical2vcal
bin/kandy
bin/kandy_client
bin/korganizer
bin/kpilot
bin/kpilotDaemon
bin/null_conduit
bin/pilotListener
bin/popmail_conduit
bin/todoconduit
bin/vcalconduit
include/kgantt/KGantt.h
include/kgantt/KGanttBarConfig.h
include/kgantt/KGanttItem.h
@ -74,6 +84,8 @@ lib/libvcard.so
lib/libvcard.so.0
share/applnk/Applications/korganizer.desktop
share/applnk/Utilities/kandy.desktop
share/applnk/Utilities/kpilot.desktop
share/applnk/Utilities/kpilotdaemon.desktop
share/apps/kandy/default.kandy
share/apps/kandy/kandymobileui.rc
share/apps/kandy/kandyui.rc
@ -189,6 +201,11 @@ share/apps/korganizer/sounds/lightmag.wav
share/apps/korganizer/sounds/onscreen.wav
share/apps/korganizer/sounds/spinout.wav
share/apps/korganizer/tips
share/apps/kpilot/icons/hicolor/16x16/actions/backup.png
share/apps/kpilot/icons/hicolor/16x16/actions/fastsync.png
share/apps/kpilot/icons/hicolor/16x16/actions/hotsync.png
share/apps/kpilot/icons/hicolor/16x16/actions/restore.png
share/apps/kpilot/kpilotui.rc
share/autostart/alarmd.desktop
share/config/korganizerrc
share/doc/HTML/en/kandy/common
@ -251,17 +268,34 @@ share/doc/HTML/en/kpilot/toolbar_backup.png
share/doc/HTML/en/kpilot/toolbar_hotsync.png
share/icons/hicolor/16x16/apps/kandy.png
share/icons/hicolor/16x16/apps/korganizer.png
share/icons/hicolor/16x16/apps/kpilot.png
share/icons/hicolor/32x32/apps/kandy.png
share/icons/hicolor/32x32/apps/korganizer.png
share/icons/hicolor/32x32/apps/kpilot.png
share/icons/hicolor/48x48/apps/korganizer.png
share/icons/locolor/16x16/apps/kpilot.xpm
share/services/abbrowser_conduit.desktop
share/services/expense-conduit.desktop
share/services/knotes-conduit.desktop
share/services/null-conduit.desktop
share/services/popmail-conduit.desktop
share/services/todo-conduit.desktop
share/services/vcal-conduit.desktop
share/servicetypes/kpilotconduit.desktop
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/locolor/16x16
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kpilot
@dirrm share/doc/HTML/en/korganizer
@dirrm share/doc/HTML/en/kandy
@dirrm share/config
@dirrm share/autostart
@dirrm share/apps/kpilot/icons/hicolor/16x16/actions
@dirrm share/apps/kpilot/icons/hicolor/16x16
@dirrm share/apps/kpilot/icons/hicolor
@dirrm share/apps/kpilot/icons
@dirrm share/apps/kpilot
@dirrm share/apps/korganizer/sounds
@dirrm share/apps/korganizer/icons/hicolor/32x32/actions
@dirrm share/apps/korganizer/icons/hicolor/32x32
@ -286,5 +320,6 @@ share/icons/hicolor/48x48/apps/korganizer.png
@dirrm share/apps/kandy
@dirrm share/applnk/Utilities
@dirrm share/applnk/Applications
@dirrm share/applnk
@dirrm include/rmm
@dirrm include/kgantt

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdepim
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= deskutils kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,14 +14,44 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
LIB_DEPENDS= pisock:${PORTSDIR}/palm/pilot-link
USE_KDELIBS_VER=2
USE_BISON= yes
USE_BZIP2= yes
INSTALLS_SHLIB= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink \
--with-extra-includes=${LOCALBASE}/pilot/include \
--with-extra-libs=${LOCALBASE}/pilot/lib
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
QTCPPFLAGS= -I${LOCALBASE}/pilot/include -L${LOCALBASE}/pilot/lib
QTLDFLAGS= ${QTCPPFLAGS}
CONFIGURE_ENV+= LIBS="${QTLDFLAGS}"
MAKE_ENV= ${CONFIGURE_ENV}
USE_GMAKE= yes
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
find ${WRKSRC}/kpilot \( -name Makefile.in -o -name Makefile.am \) | \
xargs ${PERL} -pi -e \
"s@LDFLAGS =@LDFLAGS=-L${LOCALBASE}/pilot/lib@g"
find ${WRKSRC}/libical -name Makefile.in | xargs ${PERL} -pi -e \
"s|INSTALL = \@INSTALL\@|INSTALL=${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP}|g"

View File

@ -1 +1 @@
MD5 (KDE/kdepim-2.2.1.tar.bz2) = 2b72725439279241b75c8048a79ca955
MD5 (KDE/kdepim-2.2.2.tar.bz2) = 55daf69b90108509895814b96fc8b671

View File

@ -1,8 +1,18 @@
bin/abbrowser_conduit
bin/alarmd
bin/conduitExpense
bin/conduitKNotes
bin/ical2vcal
bin/kandy
bin/kandy_client
bin/korganizer
bin/kpilot
bin/kpilotDaemon
bin/null_conduit
bin/pilotListener
bin/popmail_conduit
bin/todoconduit
bin/vcalconduit
include/kgantt/KGantt.h
include/kgantt/KGanttBarConfig.h
include/kgantt/KGanttItem.h
@ -74,6 +84,8 @@ lib/libvcard.so
lib/libvcard.so.0
share/applnk/Applications/korganizer.desktop
share/applnk/Utilities/kandy.desktop
share/applnk/Utilities/kpilot.desktop
share/applnk/Utilities/kpilotdaemon.desktop
share/apps/kandy/default.kandy
share/apps/kandy/kandymobileui.rc
share/apps/kandy/kandyui.rc
@ -189,6 +201,11 @@ share/apps/korganizer/sounds/lightmag.wav
share/apps/korganizer/sounds/onscreen.wav
share/apps/korganizer/sounds/spinout.wav
share/apps/korganizer/tips
share/apps/kpilot/icons/hicolor/16x16/actions/backup.png
share/apps/kpilot/icons/hicolor/16x16/actions/fastsync.png
share/apps/kpilot/icons/hicolor/16x16/actions/hotsync.png
share/apps/kpilot/icons/hicolor/16x16/actions/restore.png
share/apps/kpilot/kpilotui.rc
share/autostart/alarmd.desktop
share/config/korganizerrc
share/doc/HTML/en/kandy/common
@ -251,17 +268,34 @@ share/doc/HTML/en/kpilot/toolbar_backup.png
share/doc/HTML/en/kpilot/toolbar_hotsync.png
share/icons/hicolor/16x16/apps/kandy.png
share/icons/hicolor/16x16/apps/korganizer.png
share/icons/hicolor/16x16/apps/kpilot.png
share/icons/hicolor/32x32/apps/kandy.png
share/icons/hicolor/32x32/apps/korganizer.png
share/icons/hicolor/32x32/apps/kpilot.png
share/icons/hicolor/48x48/apps/korganizer.png
share/icons/locolor/16x16/apps/kpilot.xpm
share/services/abbrowser_conduit.desktop
share/services/expense-conduit.desktop
share/services/knotes-conduit.desktop
share/services/null-conduit.desktop
share/services/popmail-conduit.desktop
share/services/todo-conduit.desktop
share/services/vcal-conduit.desktop
share/servicetypes/kpilotconduit.desktop
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/locolor/16x16
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kpilot
@dirrm share/doc/HTML/en/korganizer
@dirrm share/doc/HTML/en/kandy
@dirrm share/config
@dirrm share/autostart
@dirrm share/apps/kpilot/icons/hicolor/16x16/actions
@dirrm share/apps/kpilot/icons/hicolor/16x16
@dirrm share/apps/kpilot/icons/hicolor
@dirrm share/apps/kpilot/icons
@dirrm share/apps/kpilot
@dirrm share/apps/korganizer/sounds
@dirrm share/apps/korganizer/icons/hicolor/32x32/actions
@dirrm share/apps/korganizer/icons/hicolor/32x32
@ -286,5 +320,6 @@ share/icons/hicolor/48x48/apps/korganizer.png
@dirrm share/apps/kandy
@dirrm share/applnk/Utilities
@dirrm share/applnk/Applications
@dirrm share/applnk
@dirrm include/rmm
@dirrm include/kgantt

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdesdk
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= devel kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,15 +14,36 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db
USE_KDEBASE_VER=2
USE_BZIP2= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
INSTALLS_SHLIB= yes
LDCONFIG_DIRS= %%PREFIX%%/lib %%PREFIX%%/lib/kde2
MAN1= cvs2pack.1 cvschanged.1 cvsversion.1 noncvslist.1 kde-build.1
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdesdk-2.2.1.tar.bz2) = 1744ab2c6d1708530de53547eb95f28a
MD5 (KDE/kdesdk-2.2.2.tar.bz2) = f8080a3269a99f0c22a55ad9cab0682d

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdesdk
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= devel kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,15 +14,36 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db
USE_KDEBASE_VER=2
USE_BZIP2= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
INSTALLS_SHLIB= yes
LDCONFIG_DIRS= %%PREFIX%%/lib %%PREFIX%%/lib/kde2
MAN1= cvs2pack.1 cvschanged.1 cvsversion.1 noncvslist.1 kde-build.1
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdesdk-2.2.1.tar.bz2) = 1744ab2c6d1708530de53547eb95f28a
MD5 (KDE/kdesdk-2.2.2.tar.bz2) = f8080a3269a99f0c22a55ad9cab0682d

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdesdk
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= devel kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,15 +14,36 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db
USE_KDEBASE_VER=2
USE_BZIP2= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
INSTALLS_SHLIB= yes
LDCONFIG_DIRS= %%PREFIX%%/lib %%PREFIX%%/lib/kde2
MAN1= cvs2pack.1 cvschanged.1 cvsversion.1 noncvslist.1 kde-build.1
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdesdk-2.2.1.tar.bz2) = 1744ab2c6d1708530de53547eb95f28a
MD5 (KDE/kdesdk-2.2.2.tar.bz2) = f8080a3269a99f0c22a55ad9cab0682d

View File

@ -6,15 +6,18 @@
#
PORTNAME= kdevelop
PORTVERSION= 2.0.1
PORTVERSION= 2.0.2
CATEGORIES?= devel kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/2.2.1/src
MASTER_SITE_SUBDIR= stable/2.2.2/src
DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
BUILD_DEPENDS= msgfmt:${PORTSDIR}/devel/gettext
BUILD_DEPENDS= msgfmt:${PORTSDIR}/devel/gettext \
autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
RUN_DEPENDS= gmake:${PORTSDIR}/devel/gmake
.if defined(WITH_OPTIONAL_DEPENDS)
RUN_DEPENDS+= autoconf:${PORTSDIR}/devel/autoconf \
@ -33,9 +36,15 @@ RUN_DEPENDS+= autoconf:${PORTSDIR}/devel/autoconf \
USE_KDELIBS_VER=2
USE_BZIP2= yes
USE_GMAKE= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-qtdoc-dir=${X11BASE}/share/doc/qt2/html
CONFIGURE_ARGS+= --with-qtdoc-dir=${X11BASE}/share/doc/qt2/html \
--enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
pre-everything::
.if !defined(WITH_OPTIONAL_DEPENDS)
@ -45,6 +54,17 @@ pre-everything::
@${ECHO_MSG}
.endif
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
pre-build:
${PERL} -pi -e "s@libkdeui.so.3@libkdeui.so@g" ${WRKSRC}/kdevelop/main.cpp

View File

@ -1 +1 @@
MD5 (KDE/kdevelop-2.0.1.tar.bz2) = f64d135ee64715ffe75c81106a39d934
MD5 (KDE/kdevelop-2.0.2.tar.bz2) = ba97e043cd6819c8bd77e342ee0af6fc

View File

@ -246,10 +246,8 @@ share/icons/hicolor/16x16/apps/kdevelop.png
share/icons/hicolor/32x32/apps/kdevelop.png
share/icons/hicolor/48x48/apps/kdevelop.png
share/mimelnk/application/x-kdevelop-project.desktop
@dirrm share/mimelnk/application
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kdevelop/tutorial
@dirrm share/doc/HTML/en/kdevelop/reference/C
@dirrm share/doc/HTML/en/kdevelop/reference
@ -257,7 +255,6 @@ share/mimelnk/application/x-kdevelop-project.desktop
@dirrm share/doc/HTML/en/kdevelop/kde_libref
@dirrm share/doc/HTML/en/kdevelop/about
@dirrm share/doc/HTML/en/kdevelop
@dirrm share/doc/HTML/en
@dirrm share/apps/kdevelop/tools
@dirrm share/apps/kdevelop/templates
@dirrm share/apps/kdevelop/pics
@ -268,5 +265,5 @@ share/mimelnk/application/x-kdevelop-project.desktop
@dirrm share/apps/kdevelop/icons/hicolor
@dirrm share/apps/kdevelop/icons
@dirrm share/apps/kdevelop
@dirrm share/apps/kconf_update
@dirrm share/applnk/Development
@dirrm share/applnk

View File

@ -16,12 +16,22 @@ post-patch:
do-build:
(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
qt-pre-configure:
${PERL} -pi -e 's@DESTDIR = \$$\(QTDIR\)/bin@DESTDIR = ../../../bin@g' \
${WRKSRC}/tools/designer/designer/Makefile.in
${PERL} -pi -e 's@sub-tools: sub-src @sub-tools: @g' ${WRKSRC}/Makefile
${PERL} -pi -e "s@\$$(MAKE) util@@g; s@\$$(MAKE) uic@@g; \
s@util \\\@designer@g; s@uic \\\@@g; \
s@\t\tdesigner@@g" ${WRKSRC}/tools/designer/Makefile.in
${PERL} -pi -e "s@getenv\( \"QTDIR\" \)@QT_PREFIX@g; \
s@/tools/designer/templates@/share/qt2/designer/templates@g" \
${WRKSRC}/tools/designer/designer/newformimpl.cpp
.include "${MASTERDIR}/Makefile"
LIB_DEPENDS+= qt2.4:${PORTSDIR}/x11-toolkits/qt23
WRKSRC= ${WRKDIR}/qt-${PORTVERSION}
PATCHDIR= ${.CURDIR}/files
PATCH_WRKSRC= ${WRKSRC}
PKGDIR= ${.CURDIR}
MAKE_ENV= QTDIR=${PREFIX} LD_LIBRARY_PATH=${PREFIX}/lib PREFIX=${PREFIX}

View File

@ -1,16 +0,0 @@
--- Makefile Mon Aug 6 01:55:43 2001
+++ Makefile.new Mon Aug 6 01:56:45 2001
@@ -25,11 +25,11 @@
-rm -f bin/moc
cp src/moc/moc bin/moc
-sub-tools: sub-src FORCE
+sub-tools: FORCE
cd tools; $(MAKE)
symlinks: .buildopts
- @cd include; rm -f q*.h; for i in $(QTDIR)/src/*/q*.h $(QTDIR)/extensions/*/src/q*.h; do ln -s $$i .; done; rm -f q*_p.h
+ @cd include; rm -f q*.h; for i in ../src/*/q*.h ../extensions/*/src/q*.h; do ln -s $$i .; done; rm -f q*_p.h
sub-src: src-moc src-mt .buildopts FORCE
cd src; $(MAKE)

View File

@ -1,52 +0,0 @@
--- configs/freebsd-g++-shared Sun Dec 24 02:41:35 2000
+++ configs/freebsd-g++-shared.new Sun Dec 24 02:42:49 2000
@@ -6,7 +6,7 @@
# Compiling with support libraries
SYSCONF_CXXFLAGS_X11 = -I/usr/X11R6/include
-SYSCONF_CXXFLAGS_QT = -I$(QTDIR)/include
+SYSCONF_CXXFLAGS_QT= -I$(QTDIR)/include $(SYSCONF_CXXFLAGS_THREAD)
SYSCONF_CXXFLAGS_OPENGL = -I/usr/X11R6/include
# Compiling YACC output
@@ -23,7 +23,7 @@
SYSCONF_LIBS_X11 = -lXext -lX11 -lm
# Qt, Qt+OpenGL
SYSCONF_LFLAGS_QT = -L$(QTDIR)/lib
-SYSCONF_LIBS_QT = -lqt$(QT_THREAD_SUFFIX)
+SYSCONF_LIBS_QT = -lqt2$(QT_THREAD_SUFFIX) $(SYSCONF_LFLAGS_THREAD)
SYSCONF_LIBS_QT_OPENGL =
# OpenGL
SYSCONF_LFLAGS_OPENGL = -L/usr/X11R6/lib
@@ -46,7 +46,7 @@
SYSCONF_LIBS_THREAD =
# Meta-object compiler
-SYSCONF_MOC = $(QTDIR)/bin/moc
+SYSCONF_MOC = $(QTDIR)/bin/moc2
# UI compiler
SYSCONF_UIC = $(QTDIR)/bin/uic
@@ -60,1 +60,1 @@
-SYSCONF_LINK_TARGET_SHARED = lib$(TARGET).so.$(VER_MAJ).$(VER_MIN).$(VER_PATCH)
+SYSCONF_LINK_TARGET_SHARED = lib$(TARGET).so.$(VER_MAJ)
@@ -65,6 +65,4 @@
cd $(DESTDIR) && \
- rm -f lib$(TARGET).so lib$(TARGET).so.$(VER_MAJ) lib$(TARGET).so.$(VER_MAJ).$(VER_MIN); \
- ln -s $(SYSCONF_LINK_TARGET_SHARED) lib$(TARGET).so; \
- ln -s $(SYSCONF_LINK_TARGET_SHARED) lib$(TARGET).so.$(VER_MAJ); \
- ln -s $(SYSCONF_LINK_TARGET_SHARED) lib$(TARGET).so.$(VER_MAJ).$(VER_MIN)
+ rm -f lib$(TARGET).so;\
+ ln -s $(SYSCONF_LINK_TARGET_SHARED) lib$(TARGET).so
@@ -77,8 +75,8 @@
SYSCONF_LINK_LIB_STATIC = rm -f $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) ; \
$(SYSCONF_AR) $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) $(OBJECTS) $(OBJMOC)
# Compiling application source
-SYSCONF_CXXFLAGS = -pipe -fno-exceptions -O2
-SYSCONF_CFLAGS = -pipe -fno-exceptions -O2
+SYSCONF_CXXFLAGS = -DQT_PREFIX=\"${PREFIX}\" -pipe -O -fno-exceptions
+SYSCONF_CFLAGS = -DQT_PREFIX=\"${PREFIX}\" -pipe -O -fno-exceptions
# Default link type (static linking is still be used where required)
SYSCONF_LINK_LIB = $(SYSCONF_LINK_LIB_SHARED)
SYSCONF_LINK_TARGET = $(SYSCONF_LINK_TARGET_SHARED)

View File

@ -1,13 +0,0 @@
--- tools/designer/designer/help.cpp 2000/11/18 17:43:54 1.1
+++ tools/designer/designer/help.cpp 2000/11/18 17:46:09
@@ -84,8 +84,8 @@
browser = new TextBrowser( this );
browser->mimeSourceFactory()->setFilePath( home );
browser->setFrameStyle( QFrame::Panel | QFrame::Sunken );
- browser->mimeSourceFactory()->addFilePath( QString( getenv( "QTDIR" ) ) + "/tools/designer/manual" );
- browser->mimeSourceFactory()->addFilePath( QString( getenv( "QTDIR" ) ) + "/doc/html/designer" );
+ browser->mimeSourceFactory()->addFilePath( QT_PREFIX "/share/qt2/designer/manual" );
+ browser->mimeSourceFactory()->addFilePath( QT_PREFIX "/share/doc/qt2/html/designer" );
browser->mimeSourceFactory()->addFilePath( parent->documentationPath() );
connect( browser, SIGNAL( textChanged() ),
this, SLOT( textChanged() ) );

View File

@ -1,14 +0,0 @@
--- tools/designer/designer/helpdialogimpl.cpp 2000/11/18 19:37:35 1.1
+++ tools/designer/designer/helpdialogimpl.cpp 2000/11/18 19:38:57
@@ -569,9 +569,9 @@
delete lst;
- QString manualdir = QString( getenv( "QTDIR" ) ) + "/tools/designer/manual/book1.html";
+ QString manualdir = QT_PREFIX "/share/qt2/designer/manual/book1.html";
if ( !QFile::exists( manualdir ) )
- manualdir = QString( getenv( "QTDIR" ) ) + "/doc/html/designer/book1.html";
+ manualdir = QT_PREFIX "/share/doc/qt2/html/designer/book1.html";
QFile file( manualdir );
if ( !file.open( IO_ReadOnly ) )
return;

View File

@ -1,15 +0,0 @@
--- tools/designer/designer/newformimpl.cpp 2000/11/18 17:43:54 1.1
+++ tools/designer/designer/newformimpl.cpp 2000/11/18 17:48:49
@@ -33,9 +33,9 @@
{
if ( QFileInfo( "../templates" ).exists() )
return "../templates";
- QString qtdir = getenv( "QTDIR" );
- if ( QFileInfo( qtdir + "/tools/designer/templates" ).exists() )
- return qtdir + "/tools/designer/templates";
+ QString qtdir = QT_PREFIX;
+ if ( QFileInfo( qtdir + "/share/qt2/designer/templates" ).exists() )
+ return qtdir + "/share/qt2/designer/templates";
return t;
}

View File

@ -1,11 +0,0 @@
--- tools/designer/designer/Makefile.in Wed Jan 31 21:29:50 2001
+++ tools/designer/designer/Makefile.in.new Sat Feb 3 20:41:04 2001
@@ -14,7 +14,7 @@
####### Target
-DESTDIR = $(QTDIR)/bin/
+DESTDIR = ../../../bin/
VER_MAJ = 1
VER_MIN = 0
VER_PATCH = 0

View File

@ -1,17 +0,0 @@
--- tools/designer/Makefile.in Wed Jan 31 21:29:47 2001
+++ tools/designer/Makefile.in.new Sat Feb 3 20:04:32 2001
@@ -5,13 +5,9 @@
# Template: subdirs
#############################################################################
-SUBDIRS = util \
- uic \
- designer
+SUBDIRS = designer
all:
- $(MAKE) util
- $(MAKE) uic
$(MAKE) designer

View File

@ -1,165 +1,164 @@
bin/designer
share/doc/qt2/html/designer/arrows/home.png
share/doc/qt2/html/designer/arrows/left.png
share/doc/qt2/html/designer/arrows/right.png
share/doc/qt2/html/designer/arrows/up.png
share/doc/qt2/html/designer/book1.html
share/doc/qt2/html/designer/chap10_1.html
share/doc/qt2/html/designer/chap1_1.html
share/doc/qt2/html/designer/chap2_1.html
share/doc/qt2/html/designer/chap2_2.html
share/doc/qt2/html/designer/chap2_3.html
share/doc/qt2/html/designer/chap2_4.html
share/doc/qt2/html/designer/chap3_1.html
share/doc/qt2/html/designer/chap3_2.html
share/doc/qt2/html/designer/chap3_3.html
share/doc/qt2/html/designer/chap3_4.html
share/doc/qt2/html/designer/chap4_1.html
share/doc/qt2/html/designer/chap4_2.html
share/doc/qt2/html/designer/chap5_1.html
share/doc/qt2/html/designer/chap5_2.html
share/doc/qt2/html/designer/chap5_3.html
share/doc/qt2/html/designer/chap5_4.html
share/doc/qt2/html/designer/chap5_5.html
share/doc/qt2/html/designer/chap5_6.html
share/doc/qt2/html/designer/chap6_1.html
share/doc/qt2/html/designer/chap6_2.html
share/doc/qt2/html/designer/chap6_3.html
share/doc/qt2/html/designer/chap6_4.html
share/doc/qt2/html/designer/chap6_5.html
share/doc/qt2/html/designer/chap6_6.html
share/doc/qt2/html/designer/chap6_7.html
share/doc/qt2/html/designer/chap7_1.html
share/doc/qt2/html/designer/chap7_10.html
share/doc/qt2/html/designer/chap7_11.html
share/doc/qt2/html/designer/chap7_12.html
share/doc/qt2/html/designer/chap7_13.html
share/doc/qt2/html/designer/chap7_14.html
share/doc/qt2/html/designer/chap7_15.html
share/doc/qt2/html/designer/chap7_16.html
share/doc/qt2/html/designer/chap7_2.html
share/doc/qt2/html/designer/chap7_3.html
share/doc/qt2/html/designer/chap7_4.html
share/doc/qt2/html/designer/chap7_5.html
share/doc/qt2/html/designer/chap7_6.html
share/doc/qt2/html/designer/chap7_7.html
share/doc/qt2/html/designer/chap7_8.html
share/doc/qt2/html/designer/chap7_9.html
share/doc/qt2/html/designer/chap8_1.html
share/doc/qt2/html/designer/chap9_1.html
share/doc/qt2/html/designer/chap9_2.html
share/doc/qt2/html/designer/chap9_3.html
share/doc/qt2/html/designer/chap9_4.html
share/doc/qt2/html/designer/chap9_5.html
share/doc/qt2/html/designer/chap9_6.html
share/doc/qt2/html/designer/colophon.html
share/doc/qt2/html/designer/feedback.html
share/doc/qt2/html/designer/figures/aboutdialog.png
share/doc/qt2/html/designer/figures/adjustsize.png
share/doc/qt2/html/designer/figures/breaklayout.png
share/doc/qt2/html/designer/figures/buttongroup.png
share/doc/qt2/html/designer/figures/buttongroupovercheckboxes.png
share/doc/qt2/html/designer/figures/checkbox.png
share/doc/qt2/html/designer/figures/combobox.png
share/doc/qt2/html/designer/figures/connectionedit.png
share/doc/qt2/html/designer/figures/connections.png
share/doc/qt2/html/designer/figures/connectionviewer.png
share/doc/qt2/html/designer/figures/connecttool.png
share/doc/qt2/html/designer/figures/customwidget.png
share/doc/qt2/html/designer/figures/customwidgets.png
share/doc/qt2/html/designer/figures/editcopy.png
share/doc/qt2/html/designer/figures/editcustomwidgets.png
share/doc/qt2/html/designer/figures/editcut.png
share/doc/qt2/html/designer/figures/editdelete.png
share/doc/qt2/html/designer/figures/editgrid.png
share/doc/qt2/html/designer/figures/edithlayout.png
share/doc/qt2/html/designer/figures/editiconview.png
share/doc/qt2/html/designer/figures/editlistbox.png
share/doc/qt2/html/designer/figures/editlistview.png
share/doc/qt2/html/designer/figures/editlower.png
share/doc/qt2/html/designer/figures/editmultiline.png
share/doc/qt2/html/designer/figures/editpaste.png
share/doc/qt2/html/designer/figures/editraise.png
share/doc/qt2/html/designer/figures/editslots.png
share/doc/qt2/html/designer/figures/emptydialog.png
share/doc/qt2/html/designer/figures/f001.png
share/doc/qt2/html/designer/figures/filenew.png
share/doc/qt2/html/designer/figures/filesave.png
share/doc/qt2/html/designer/figures/firstdialog.png
share/doc/qt2/html/designer/figures/form.png
share/doc/qt2/html/designer/figures/formsettings.png
share/doc/qt2/html/designer/figures/fourcheckboxes.png
share/doc/qt2/html/designer/figures/frame.png
share/doc/qt2/html/designer/figures/groupbox.png
share/doc/qt2/html/designer/figures/help.png
share/doc/qt2/html/designer/figures/helpdialog.png
share/doc/qt2/html/designer/figures/home.png
share/doc/qt2/html/designer/figures/iconview.png
share/doc/qt2/html/designer/figures/image.png
share/doc/qt2/html/designer/figures/label.png
share/doc/qt2/html/designer/figures/layout.png
share/doc/qt2/html/designer/figures/layouttutstep1.png
share/doc/qt2/html/designer/figures/layouttutstep10.png
share/doc/qt2/html/designer/figures/layouttutstep11.png
share/doc/qt2/html/designer/figures/layouttutstep2.png
share/doc/qt2/html/designer/figures/layouttutstep3.png
share/doc/qt2/html/designer/figures/layouttutstep4.png
share/doc/qt2/html/designer/figures/layouttutstep5.png
share/doc/qt2/html/designer/figures/layouttutstep6.png
share/doc/qt2/html/designer/figures/layouttutstep7.png
share/doc/qt2/html/designer/figures/layouttutstep9.png
share/doc/qt2/html/designer/figures/lcdnumber.png
share/doc/qt2/html/designer/figures/left.png
share/doc/qt2/html/designer/figures/line.png
share/doc/qt2/html/designer/figures/lineedit.png
share/doc/qt2/html/designer/figures/listbox.png
share/doc/qt2/html/designer/figures/listview.png
share/doc/qt2/html/designer/figures/load.png
share/doc/qt2/html/designer/figures/multilineedit.png
share/doc/qt2/html/designer/figures/newform.png
share/doc/qt2/html/designer/figures/newformdialog.png
share/doc/qt2/html/designer/figures/objecthierarchy.png
share/doc/qt2/html/designer/figures/onecheckbox.png
share/doc/qt2/html/designer/figures/ordertool.png
share/doc/qt2/html/designer/figures/paletteeditor.png
share/doc/qt2/html/designer/figures/pixlabel.png
share/doc/qt2/html/designer/figures/pizza1screenshot.png
share/doc/qt2/html/designer/figures/pointer.png
share/doc/qt2/html/designer/figures/preferences.png
share/doc/qt2/html/designer/figures/print.png
share/doc/qt2/html/designer/figures/progress.png
share/doc/qt2/html/designer/figures/pushbutton.png
share/doc/qt2/html/designer/figures/qtlogo.png
share/doc/qt2/html/designer/figures/radiobutton.png
share/doc/qt2/html/designer/figures/redo.png
share/doc/qt2/html/designer/figures/right.png
share/doc/qt2/html/designer/figures/slider.png
share/doc/qt2/html/designer/figures/slots.png
share/doc/qt2/html/designer/figures/spacer.png
share/doc/qt2/html/designer/figures/spinbox.png
share/doc/qt2/html/designer/figures/startup.png
share/doc/qt2/html/designer/figures/taborderform.png
share/doc/qt2/html/designer/figures/tabwidget.png
share/doc/qt2/html/designer/figures/testmode.png
share/doc/qt2/html/designer/figures/textbrowser.png
share/doc/qt2/html/designer/figures/textview.png
share/doc/qt2/html/designer/figures/title.png
share/doc/qt2/html/designer/figures/toolbutton.png
share/doc/qt2/html/designer/figures/topicchooser.png
share/doc/qt2/html/designer/figures/undo.png
share/doc/qt2/html/designer/figures/vlayout.png
share/doc/qt2/html/designer/figures/whatsthis.png
share/doc/qt2/html/designer/part1index.html
share/doc/qt2/html/designer/part2index.html
share/doc/qt2/html/designer/preface.html
share/qt2/designer/templates/Configuration_Dialog.ui
share/qt2/designer/templates/Dialog_with_Buttons_(Bottom).ui
share/qt2/designer/templates/Dialog_with_Buttons_(Right).ui
share/qt2/designer/templates/Tab-Dialog.ui
share/qt2/designer/templates/Dialog_with_Buttons_(Right).ui
share/qt2/designer/templates/Dialog_with_Buttons_(Bottom).ui
share/qt2/designer/templates/Configuration_Dialog.ui
share/doc/qt2/html/designer/preface.html
share/doc/qt2/html/designer/part2index.html
share/doc/qt2/html/designer/part1index.html
share/doc/qt2/html/designer/figures/whatsthis.png
share/doc/qt2/html/designer/figures/vlayout.png
share/doc/qt2/html/designer/figures/undo.png
share/doc/qt2/html/designer/figures/topicchooser.png
share/doc/qt2/html/designer/figures/toolbutton.png
share/doc/qt2/html/designer/figures/title.png
share/doc/qt2/html/designer/figures/textview.png
share/doc/qt2/html/designer/figures/textbrowser.png
share/doc/qt2/html/designer/figures/testmode.png
share/doc/qt2/html/designer/figures/tabwidget.png
share/doc/qt2/html/designer/figures/taborderform.png
share/doc/qt2/html/designer/figures/startup.png
share/doc/qt2/html/designer/figures/spinbox.png
share/doc/qt2/html/designer/figures/spacer.png
share/doc/qt2/html/designer/figures/slots.png
share/doc/qt2/html/designer/figures/slider.png
share/doc/qt2/html/designer/figures/right.png
share/doc/qt2/html/designer/figures/redo.png
share/doc/qt2/html/designer/figures/radiobutton.png
share/doc/qt2/html/designer/figures/qtlogo.png
share/doc/qt2/html/designer/figures/pushbutton.png
share/doc/qt2/html/designer/figures/progress.png
share/doc/qt2/html/designer/figures/print.png
share/doc/qt2/html/designer/figures/preferences.png
share/doc/qt2/html/designer/figures/pointer.png
share/doc/qt2/html/designer/figures/pizza1screenshot.png
share/doc/qt2/html/designer/figures/pixlabel.png
share/doc/qt2/html/designer/figures/paletteeditor.png
share/doc/qt2/html/designer/figures/ordertool.png
share/doc/qt2/html/designer/figures/onecheckbox.png
share/doc/qt2/html/designer/figures/objecthierarchy.png
share/doc/qt2/html/designer/figures/newformdialog.png
share/doc/qt2/html/designer/figures/newform.png
share/doc/qt2/html/designer/figures/multilineedit.png
share/doc/qt2/html/designer/figures/load.png
share/doc/qt2/html/designer/figures/listview.png
share/doc/qt2/html/designer/figures/listbox.png
share/doc/qt2/html/designer/figures/lineedit.png
share/doc/qt2/html/designer/figures/line.png
share/doc/qt2/html/designer/figures/left.png
share/doc/qt2/html/designer/figures/lcdnumber.png
share/doc/qt2/html/designer/figures/layouttutstep9.png
share/doc/qt2/html/designer/figures/layouttutstep7.png
share/doc/qt2/html/designer/figures/layouttutstep6.png
share/doc/qt2/html/designer/figures/layouttutstep5.png
share/doc/qt2/html/designer/figures/layouttutstep4.png
share/doc/qt2/html/designer/figures/layouttutstep3.png
share/doc/qt2/html/designer/figures/layouttutstep2.png
share/doc/qt2/html/designer/figures/layouttutstep11.png
share/doc/qt2/html/designer/figures/layouttutstep10.png
share/doc/qt2/html/designer/figures/layouttutstep1.png
share/doc/qt2/html/designer/figures/layout.png
share/doc/qt2/html/designer/figures/label.png
share/doc/qt2/html/designer/figures/image.png
share/doc/qt2/html/designer/figures/iconview.png
share/doc/qt2/html/designer/figures/home.png
share/doc/qt2/html/designer/figures/helpdialog.png
share/doc/qt2/html/designer/figures/help.png
share/doc/qt2/html/designer/figures/groupbox.png
share/doc/qt2/html/designer/figures/frame.png
share/doc/qt2/html/designer/figures/fourcheckboxes.png
share/doc/qt2/html/designer/figures/formsettings.png
share/doc/qt2/html/designer/figures/form.png
share/doc/qt2/html/designer/figures/firstdialog.png
share/doc/qt2/html/designer/figures/filesave.png
share/doc/qt2/html/designer/figures/filenew.png
share/doc/qt2/html/designer/figures/f001.png
share/doc/qt2/html/designer/figures/emptydialog.png
share/doc/qt2/html/designer/figures/editslots.png
share/doc/qt2/html/designer/figures/editraise.png
share/doc/qt2/html/designer/figures/editpaste.png
share/doc/qt2/html/designer/figures/editmultiline.png
share/doc/qt2/html/designer/figures/editlower.png
share/doc/qt2/html/designer/figures/editlistview.png
share/doc/qt2/html/designer/figures/editlistbox.png
share/doc/qt2/html/designer/figures/editiconview.png
share/doc/qt2/html/designer/figures/edithlayout.png
share/doc/qt2/html/designer/figures/editgrid.png
share/doc/qt2/html/designer/figures/editdelete.png
share/doc/qt2/html/designer/figures/editcut.png
share/doc/qt2/html/designer/figures/editcustomwidgets.png
share/doc/qt2/html/designer/figures/editcopy.png
share/doc/qt2/html/designer/figures/customwidgets.png
share/doc/qt2/html/designer/figures/customwidget.png
share/doc/qt2/html/designer/figures/connecttool.png
share/doc/qt2/html/designer/figures/connectionviewer.png
share/doc/qt2/html/designer/figures/connections.png
share/doc/qt2/html/designer/figures/connectionedit.png
share/doc/qt2/html/designer/figures/combobox.png
share/doc/qt2/html/designer/figures/checkbox.png
share/doc/qt2/html/designer/figures/buttongroupovercheckboxes.png
share/doc/qt2/html/designer/figures/buttongroup.png
share/doc/qt2/html/designer/figures/breaklayout.png
share/doc/qt2/html/designer/figures/adjustsize.png
share/doc/qt2/html/designer/figures/aboutdialog.png
share/doc/qt2/html/designer/feedback.html
share/doc/qt2/html/designer/colophon.html
share/doc/qt2/html/designer/chap9_6.html
share/doc/qt2/html/designer/chap9_5.html
share/doc/qt2/html/designer/chap9_4.html
share/doc/qt2/html/designer/chap9_3.html
share/doc/qt2/html/designer/chap9_2.html
share/doc/qt2/html/designer/chap9_1.html
share/doc/qt2/html/designer/chap8_1.html
share/doc/qt2/html/designer/chap7_9.html
share/doc/qt2/html/designer/chap7_8.html
share/doc/qt2/html/designer/chap7_7.html
share/doc/qt2/html/designer/chap7_6.html
share/doc/qt2/html/designer/chap7_5.html
share/doc/qt2/html/designer/chap7_4.html
share/doc/qt2/html/designer/chap7_3.html
share/doc/qt2/html/designer/chap7_2.html
share/doc/qt2/html/designer/chap7_16.html
share/doc/qt2/html/designer/chap7_15.html
share/doc/qt2/html/designer/chap7_14.html
share/doc/qt2/html/designer/chap7_13.html
share/doc/qt2/html/designer/chap7_12.html
share/doc/qt2/html/designer/chap7_11.html
share/doc/qt2/html/designer/chap7_10.html
share/doc/qt2/html/designer/chap7_1.html
share/doc/qt2/html/designer/chap6_7.html
share/doc/qt2/html/designer/chap6_6.html
share/doc/qt2/html/designer/chap6_5.html
share/doc/qt2/html/designer/chap6_4.html
share/doc/qt2/html/designer/chap6_3.html
share/doc/qt2/html/designer/chap6_2.html
share/doc/qt2/html/designer/chap6_1.html
share/doc/qt2/html/designer/chap5_6.html
share/doc/qt2/html/designer/chap5_5.html
share/doc/qt2/html/designer/chap5_4.html
share/doc/qt2/html/designer/chap5_3.html
share/doc/qt2/html/designer/chap5_2.html
share/doc/qt2/html/designer/chap5_1.html
share/doc/qt2/html/designer/chap4_2.html
share/doc/qt2/html/designer/chap4_1.html
share/doc/qt2/html/designer/chap3_4.html
share/doc/qt2/html/designer/chap3_3.html
share/doc/qt2/html/designer/chap3_2.html
share/doc/qt2/html/designer/chap3_1.html
share/doc/qt2/html/designer/chap2_4.html
share/doc/qt2/html/designer/chap2_3.html
share/doc/qt2/html/designer/chap2_2.html
share/doc/qt2/html/designer/chap2_1.html
share/doc/qt2/html/designer/chap1_1.html
share/doc/qt2/html/designer/chap10_1.html
share/doc/qt2/html/designer/book1.html
share/doc/qt2/html/designer/arrows/up.png
share/doc/qt2/html/designer/arrows/right.png
share/doc/qt2/html/designer/arrows/left.png
share/doc/qt2/html/designer/arrows/home.png
bin/designer
@dirrm share/qt2/designer/templates
@dirrm share/qt2/designer
@dirrm share/qt2
@dirrm share/doc/qt2/html/designer/figures
@dirrm share/doc/qt2/html/designer/arrows
@dirrm share/doc/qt2/html/designer
@dirrm share/qt2/designer/templates
@dirrm share/qt2/designer
@unexec /sbin/rm -rf %D/share/doc/qt2/html 2>/dev/null || true
@unexec /sbin/rm -rf %D/share/doc/qt2 2>/dev/null || true

View File

@ -15,6 +15,8 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14
LIB_DEPENDS= iconv.2:${PORTSDIR}/converters/iconv
USE_KDELIBS_VER=2
@ -22,7 +24,13 @@ USE_PYTHON= yes
PYTHON_VERSION= python2.1
USE_BZIP2= yes
INSTALLS_SHLIB= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
post-patch:
@ -32,6 +40,15 @@ post-patch:
${WRKSRC}/templates/Illustration.desktop
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \
"s@LIBPYTHON =@LIBPYTHON= ${PTHREAD_LIBS}@g"
${PERL} -pi -e "s@la_LIBADD =@la_LIBADD= ${PTHREAD_LIBS}@g" \

View File

@ -1535,23 +1535,19 @@ share/templates/Illustration.desktop
share/templates/Presentation.desktop
share/templates/SpreadSheet.desktop
share/templates/TextDocument.desktop
@dirrm share/templates/.source
@dirrm share/templates
@dirrm share/icons/locolor/32x32/apps
@dirrm share/icons/locolor/32x32
@dirrm share/icons/locolor/22x22/apps
@dirrm share/icons/locolor/22x22
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/locolor/16x16
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/mimetypes
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/mimetypes
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/32x32/actions
@dirrm share/icons/hicolor/22x22/mimetypes
@dirrm share/icons/hicolor/22x22/apps
@dirrm share/icons/hicolor/22x22/actions
@dirrm share/icons/hicolor/22x22
@dirrm share/icons/hicolor/16x16/mimetypes
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/icons/hicolor/16x16/actions
@dirrm share/doc/HTML/en/kword
@dirrm share/doc/HTML/en/kugar
@dirrm share/doc/HTML/en/kspread
@ -1680,4 +1676,4 @@ share/templates/TextDocument.desktop
@dirrm share/apps/kchart/icons
@dirrm share/apps/kchart
@dirrm share/applnk/Office
@dirrm lib/kde2
@dirrm share/applnk

View File

@ -15,6 +15,8 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14
LIB_DEPENDS= iconv.2:${PORTSDIR}/converters/iconv
USE_KDELIBS_VER=2
@ -22,7 +24,13 @@ USE_PYTHON= yes
PYTHON_VERSION= python2.1
USE_BZIP2= yes
INSTALLS_SHLIB= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
post-patch:
@ -32,6 +40,15 @@ post-patch:
${WRKSRC}/templates/Illustration.desktop
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \
"s@LIBPYTHON =@LIBPYTHON= ${PTHREAD_LIBS}@g"
${PERL} -pi -e "s@la_LIBADD =@la_LIBADD= ${PTHREAD_LIBS}@g" \

View File

@ -1535,23 +1535,19 @@ share/templates/Illustration.desktop
share/templates/Presentation.desktop
share/templates/SpreadSheet.desktop
share/templates/TextDocument.desktop
@dirrm share/templates/.source
@dirrm share/templates
@dirrm share/icons/locolor/32x32/apps
@dirrm share/icons/locolor/32x32
@dirrm share/icons/locolor/22x22/apps
@dirrm share/icons/locolor/22x22
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/locolor/16x16
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/mimetypes
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/mimetypes
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/32x32/actions
@dirrm share/icons/hicolor/22x22/mimetypes
@dirrm share/icons/hicolor/22x22/apps
@dirrm share/icons/hicolor/22x22/actions
@dirrm share/icons/hicolor/22x22
@dirrm share/icons/hicolor/16x16/mimetypes
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/icons/hicolor/16x16/actions
@dirrm share/doc/HTML/en/kword
@dirrm share/doc/HTML/en/kugar
@dirrm share/doc/HTML/en/kspread
@ -1680,4 +1676,4 @@ share/templates/TextDocument.desktop
@dirrm share/apps/kchart/icons
@dirrm share/apps/kchart
@dirrm share/applnk/Office
@dirrm lib/kde2
@dirrm share/applnk

View File

@ -15,6 +15,8 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14
LIB_DEPENDS= iconv.2:${PORTSDIR}/converters/iconv
USE_KDELIBS_VER=2
@ -22,7 +24,13 @@ USE_PYTHON= yes
PYTHON_VERSION= python2.1
USE_BZIP2= yes
INSTALLS_SHLIB= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
post-patch:
@ -32,6 +40,15 @@ post-patch:
${WRKSRC}/templates/Illustration.desktop
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \
"s@LIBPYTHON =@LIBPYTHON= ${PTHREAD_LIBS}@g"
${PERL} -pi -e "s@la_LIBADD =@la_LIBADD= ${PTHREAD_LIBS}@g" \

View File

@ -1535,23 +1535,19 @@ share/templates/Illustration.desktop
share/templates/Presentation.desktop
share/templates/SpreadSheet.desktop
share/templates/TextDocument.desktop
@dirrm share/templates/.source
@dirrm share/templates
@dirrm share/icons/locolor/32x32/apps
@dirrm share/icons/locolor/32x32
@dirrm share/icons/locolor/22x22/apps
@dirrm share/icons/locolor/22x22
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/locolor/16x16
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/mimetypes
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/mimetypes
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/32x32/actions
@dirrm share/icons/hicolor/22x22/mimetypes
@dirrm share/icons/hicolor/22x22/apps
@dirrm share/icons/hicolor/22x22/actions
@dirrm share/icons/hicolor/22x22
@dirrm share/icons/hicolor/16x16/mimetypes
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/icons/hicolor/16x16/actions
@dirrm share/doc/HTML/en/kword
@dirrm share/doc/HTML/en/kugar
@dirrm share/doc/HTML/en/kspread
@ -1680,4 +1676,4 @@ share/templates/TextDocument.desktop
@dirrm share/apps/kchart/icons
@dirrm share/apps/kchart
@dirrm share/applnk/Office
@dirrm lib/kde2
@dirrm share/applnk

View File

@ -15,6 +15,8 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14
LIB_DEPENDS= iconv.2:${PORTSDIR}/converters/iconv
USE_KDELIBS_VER=2
@ -22,7 +24,13 @@ USE_PYTHON= yes
PYTHON_VERSION= python2.1
USE_BZIP2= yes
INSTALLS_SHLIB= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
post-patch:
@ -32,6 +40,15 @@ post-patch:
${WRKSRC}/templates/Illustration.desktop
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \
"s@LIBPYTHON =@LIBPYTHON= ${PTHREAD_LIBS}@g"
${PERL} -pi -e "s@la_LIBADD =@la_LIBADD= ${PTHREAD_LIBS}@g" \

View File

@ -1535,23 +1535,19 @@ share/templates/Illustration.desktop
share/templates/Presentation.desktop
share/templates/SpreadSheet.desktop
share/templates/TextDocument.desktop
@dirrm share/templates/.source
@dirrm share/templates
@dirrm share/icons/locolor/32x32/apps
@dirrm share/icons/locolor/32x32
@dirrm share/icons/locolor/22x22/apps
@dirrm share/icons/locolor/22x22
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/locolor/16x16
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/mimetypes
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/mimetypes
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/32x32/actions
@dirrm share/icons/hicolor/22x22/mimetypes
@dirrm share/icons/hicolor/22x22/apps
@dirrm share/icons/hicolor/22x22/actions
@dirrm share/icons/hicolor/22x22
@dirrm share/icons/hicolor/16x16/mimetypes
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/icons/hicolor/16x16/actions
@dirrm share/doc/HTML/en/kword
@dirrm share/doc/HTML/en/kugar
@dirrm share/doc/HTML/en/kspread
@ -1680,4 +1676,4 @@ share/templates/TextDocument.desktop
@dirrm share/apps/kchart/icons
@dirrm share/apps/kchart
@dirrm share/applnk/Office
@dirrm lib/kde2
@dirrm share/applnk

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdegames
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= games kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,9 +14,31 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
USE_KDELIBS_VER=2
USE_BZIP2= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdegames-2.2.1.tar.bz2) = ddfb22843331f548bac51dc6a167958f
MD5 (KDE/kdegames-2.2.2.tar.bz2) = 65b1e9885bdda64597e6e3cdf129cee3

View File

@ -1897,7 +1897,6 @@ share/icons/locolor/32x32/apps/lskat.png
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/lskat
@dirrm share/doc/HTML/en/kwin4
@dirrm share/doc/HTML/en/ktuberling
@ -2027,3 +2026,4 @@ share/icons/locolor/32x32/apps/lskat.png
@dirrm share/applnk/Games/Board
@dirrm share/applnk/Games/Arcade
@dirrm share/applnk/Games
@dirrm share/applnk

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdegames
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= games kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,9 +14,31 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
USE_KDELIBS_VER=2
USE_BZIP2= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdegames-2.2.1.tar.bz2) = ddfb22843331f548bac51dc6a167958f
MD5 (KDE/kdegames-2.2.2.tar.bz2) = 65b1e9885bdda64597e6e3cdf129cee3

View File

@ -1897,7 +1897,6 @@ share/icons/locolor/32x32/apps/lskat.png
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/lskat
@dirrm share/doc/HTML/en/kwin4
@dirrm share/doc/HTML/en/ktuberling
@ -2027,3 +2026,4 @@ share/icons/locolor/32x32/apps/lskat.png
@dirrm share/applnk/Games/Board
@dirrm share/applnk/Games/Arcade
@dirrm share/applnk/Games
@dirrm share/applnk

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdegames
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= games kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,9 +14,31 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
USE_KDELIBS_VER=2
USE_BZIP2= yes
USE_AUTOCONF= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdegames-2.2.1.tar.bz2) = ddfb22843331f548bac51dc6a167958f
MD5 (KDE/kdegames-2.2.2.tar.bz2) = 65b1e9885bdda64597e6e3cdf129cee3

View File

@ -1897,7 +1897,6 @@ share/icons/locolor/32x32/apps/lskat.png
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/lskat
@dirrm share/doc/HTML/en/kwin4
@dirrm share/doc/HTML/en/ktuberling
@ -2027,3 +2026,4 @@ share/icons/locolor/32x32/apps/lskat.png
@dirrm share/applnk/Games/Board
@dirrm share/applnk/Games/Arcade
@dirrm share/applnk/Games
@dirrm share/applnk

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdegraphics
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= graphics kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,7 +14,10 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= dvips:${PORTSDIR}/print/teTeX
BUILD_DEPENDS= dvips:${PORTSDIR}/print/teTeX \
autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
RUN_DEPENDS= dvips:${PORTSDIR}/print/teTeX
USE_KDELIBS_VER=2
@ -22,7 +25,13 @@ USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ARGS+=--without-kamera
CONFIGURE_ARGS+=--without-kamera --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
.include <bsd.port.pre.mk>
@ -48,6 +57,15 @@ pre-everything::
.endif
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
${PERL} -pi -e "s@libkscan_la_LIBADD =@libkscan_la_LIBADD= -lintl@g" ${WRKSRC}/libkscan/Makefile.in
${PERL} -pi -e "s@libkcm_kamera_la_LIBADD =@libkcm_kamera_la_LIBADD= -lintl@g" ${WKRSRC}/kamera/kcontrol/Makefile.in
${PERL} -pi -e "s@name = item@name=(char*)item@g" ${WRKSRC}/kamera/kcontrol/kamera.cpp

View File

@ -1 +1 @@
MD5 (KDE/kdegraphics-2.2.1.tar.bz2) = a2d0b9242f20264167f8b96a8ba3a5c7
MD5 (KDE/kdegraphics-2.2.2.tar.bz2) = b9341505c6b9de8f018dd9d1896356e9

View File

@ -5,7 +5,7 @@ bin/kfax
bin/kfract
bin/kghostview
bin/kiconedit
%%SANE%%bin/kooka
bin/kooka
bin/kpaint
bin/kruler
bin/ksnapshot
@ -224,8 +224,6 @@ share/icons/locolor/32x32/apps/kcoloredit.png
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/icons/hicolor/16x16/actions
@dirrm share/doc/HTML/en/kview
@dirrm share/doc/HTML/en/ksnapshot
@dirrm share/doc/HTML/en/kruler
@ -253,5 +251,5 @@ share/icons/locolor/32x32/apps/kcoloredit.png
@dirrm share/apps/kdvi/toolbar
@dirrm share/apps/kdvi
@dirrm share/applnk/Utilities
@dirrm share/applnk/Settings/Peripherals
@dirrm share/applnk/Graphics
@dirrm share/applnk

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdegraphics
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= graphics kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,7 +14,10 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= dvips:${PORTSDIR}/print/teTeX
BUILD_DEPENDS= dvips:${PORTSDIR}/print/teTeX \
autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
RUN_DEPENDS= dvips:${PORTSDIR}/print/teTeX
USE_KDELIBS_VER=2
@ -22,7 +25,13 @@ USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ARGS+=--without-kamera
CONFIGURE_ARGS+=--without-kamera --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
.include <bsd.port.pre.mk>
@ -48,6 +57,15 @@ pre-everything::
.endif
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
${PERL} -pi -e "s@libkscan_la_LIBADD =@libkscan_la_LIBADD= -lintl@g" ${WRKSRC}/libkscan/Makefile.in
${PERL} -pi -e "s@libkcm_kamera_la_LIBADD =@libkcm_kamera_la_LIBADD= -lintl@g" ${WKRSRC}/kamera/kcontrol/Makefile.in
${PERL} -pi -e "s@name = item@name=(char*)item@g" ${WRKSRC}/kamera/kcontrol/kamera.cpp

View File

@ -1 +1 @@
MD5 (KDE/kdegraphics-2.2.1.tar.bz2) = a2d0b9242f20264167f8b96a8ba3a5c7
MD5 (KDE/kdegraphics-2.2.2.tar.bz2) = b9341505c6b9de8f018dd9d1896356e9

View File

@ -5,7 +5,7 @@ bin/kfax
bin/kfract
bin/kghostview
bin/kiconedit
%%SANE%%bin/kooka
bin/kooka
bin/kpaint
bin/kruler
bin/ksnapshot
@ -224,8 +224,6 @@ share/icons/locolor/32x32/apps/kcoloredit.png
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/icons/hicolor/16x16/actions
@dirrm share/doc/HTML/en/kview
@dirrm share/doc/HTML/en/ksnapshot
@dirrm share/doc/HTML/en/kruler
@ -253,5 +251,5 @@ share/icons/locolor/32x32/apps/kcoloredit.png
@dirrm share/apps/kdvi/toolbar
@dirrm share/apps/kdvi
@dirrm share/applnk/Utilities
@dirrm share/applnk/Settings/Peripherals
@dirrm share/applnk/Graphics
@dirrm share/applnk

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdegraphics
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES= graphics kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,7 +14,10 @@ DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
BUILD_DEPENDS= dvips:${PORTSDIR}/print/teTeX
BUILD_DEPENDS= dvips:${PORTSDIR}/print/teTeX \
autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
RUN_DEPENDS= dvips:${PORTSDIR}/print/teTeX
USE_KDELIBS_VER=2
@ -22,7 +25,13 @@ USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ARGS+=--without-kamera
CONFIGURE_ARGS+=--without-kamera --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
.include <bsd.port.pre.mk>
@ -48,6 +57,15 @@ pre-everything::
.endif
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
${PERL} -pi -e "s@libkscan_la_LIBADD =@libkscan_la_LIBADD= -lintl@g" ${WRKSRC}/libkscan/Makefile.in
${PERL} -pi -e "s@libkcm_kamera_la_LIBADD =@libkcm_kamera_la_LIBADD= -lintl@g" ${WKRSRC}/kamera/kcontrol/Makefile.in
${PERL} -pi -e "s@name = item@name=(char*)item@g" ${WRKSRC}/kamera/kcontrol/kamera.cpp

View File

@ -1 +1 @@
MD5 (KDE/kdegraphics-2.2.1.tar.bz2) = a2d0b9242f20264167f8b96a8ba3a5c7
MD5 (KDE/kdegraphics-2.2.2.tar.bz2) = b9341505c6b9de8f018dd9d1896356e9

View File

@ -5,7 +5,7 @@ bin/kfax
bin/kfract
bin/kghostview
bin/kiconedit
%%SANE%%bin/kooka
bin/kooka
bin/kpaint
bin/kruler
bin/ksnapshot
@ -224,8 +224,6 @@ share/icons/locolor/32x32/apps/kcoloredit.png
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/icons/hicolor/16x16/actions
@dirrm share/doc/HTML/en/kview
@dirrm share/doc/HTML/en/ksnapshot
@dirrm share/doc/HTML/en/kruler
@ -253,5 +251,5 @@ share/icons/locolor/32x32/apps/kcoloredit.png
@dirrm share/apps/kdvi/toolbar
@dirrm share/apps/kdvi
@dirrm share/applnk/Utilities
@dirrm share/applnk/Settings/Peripherals
@dirrm share/applnk/Graphics
@dirrm share/applnk

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdeutils
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,11 +14,33 @@ DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
USE_KDELIBS_VER=2
USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
MAN1= efax.1 efix.1 fax.1
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdeutils-2.2.1.tar.bz2) = a511f6be6949d5b1c2f943f3f9ce27a5
MD5 (KDE/kdeutils-2.2.2.tar.bz2) = 68c3c86d97c3a95079f81b2c7f4bf35a

View File

@ -0,0 +1,20 @@
--- klaptopdaemon/portable.cpp- Thu Jun 28 00:08:02 2001
+++ klaptopdaemon/portable.cpp Thu Jun 28 00:08:22 2001
@@ -453,7 +453,7 @@
if (ret == -1)
return 0;
- return (info.ai_batt_time != 0xffff);
+ return (info.ai_batt_time != -1);
}
//
@@ -638,7 +638,7 @@
p.powered = info.ai_acline;
p.percentage = (info.ai_batt_life==255 ? 100 : info.ai_batt_life);
- p.time = (info.ai_batt_time != 0xffff ? info.ai_batt_time/60 : -1);
+ p.time = (info.ai_batt_time != -1 ? info.ai_batt_time/60 : -1);
return(p);
bad:

View File

@ -251,7 +251,6 @@ share/services/arkpart.desktop
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kpm
@dirrm share/doc/HTML/en/knotes
@dirrm share/doc/HTML/en/klprfax
@ -308,7 +307,6 @@ share/services/arkpart.desktop
@dirrm share/apps/ark/icons/hicolor
@dirrm share/apps/ark/icons
@dirrm share/apps/ark
@dirrm share/apps
@dirrm share/applnk/Utilities
@dirrm share/applnk/System
@dirrm share/applnk/Settings/PowerControl
@ -316,4 +314,3 @@ share/services/arkpart.desktop
@dirrm share/applnk/Settings
@dirrm share/applnk/Editors
@dirrm share/applnk
@dirrm lib/kde2

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdeaddons
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,30 +14,40 @@ DIST_SUBDIR= KDE
MAINTAINER?= ports@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
LIB_DEPENDS+= noatun.0:${PORTSDIR}/audio/kdemultimedia2 \
SDL-1.1.3:${PORTSDIR}/devel/sdl12
WITH_SDL= yes
USE_KDEBASE_VER=2
LIB_DEPENDS+= noatun.0:${PORTSDIR}/audio/kdemultimedia2
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
PLIST_SUB+= RM=${RM}
CONFIGURE_ENV+= SDL_CONFIG="${LOCALBASE}/bin/sdl11-config"
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/include/SDL11/SDL.h)
WITH_SDL= yes
.endif
.if defined(WITH_SDL) && ${WITH_SDL} == yes
LIB_DEPENDS+= SDL-1.1.3:${PORTSDIR}/devel/sdl12
CONFIGURE_ENV+= SDL_CONFIG="${LOCALBASE}/bin/sdl11-config"
PLIST_SUB+= SDL=""
.else
PLIST_SUB+= SDL="@comment "
pre-everything::
@${ECHO_MSG}
@${ECHO_MSG} "If you want to compile with SDL support,"
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SDL=yes\""
@${ECHO_MSG}
.endif
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \
"s@sdl-config@${LOCALBASE}/bin/sdl11-config@g"
.include <bsd.port.post.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdeaddons-2.2.1.tar.bz2) = 034f35ed3cd575b65f8ccc6110590d20
MD5 (KDE/kdeaddons-2.2.2.tar.bz2) = 9392da0992f4aede5f6a86840e47fef6

View File

@ -1,11 +1,7 @@
@unexec %%RM%% -f %D/lib/libkolourpicker.so
@unexec %%RM%% -f %D/lib/libktimemon.so
@unexec %%RM%% -f %D/share/doc/HTML/en/kate-plugins/common
@unexec %%RM%% -f %D/share/doc/HTML/en/kicker-applets/common
bin/dcop_kate
%%SDL%%bin/noatunsynaescope.bin
%%SDL%%bin/noatuntippecanoe.bin
%%SDL%%bin/noatuntyler.bin
bin/noatunsynaescope.bin
bin/noatuntippecanoe.bin
bin/noatuntyler.bin
bin/testor
lib/kde2/libbabelfishplugin.la
lib/kde2/libbabelfishplugin.so
@ -41,30 +37,30 @@ lib/libkolourpicker.so.1
lib/libktimemon.la
lib/libktimemon.so
lib/libktimemon.so.1
%%SDL%%lib/libnoatunblurscope.la
%%SDL%%lib/libnoatunblurscope.so
lib/libnoatunblurscope.la
lib/libnoatunblurscope.so
lib/libnoatunluckytag.la
lib/libnoatunluckytag.so
lib/libnoatunmadness.la
lib/libnoatunmadness.so
%%SDL%%lib/libnoatunsynaescope.la
%%SDL%%lib/libnoatunsynaescope.so
%%SDL%%lib/libnoatuntippecanoe.la
%%SDL%%lib/libnoatuntippecanoe.so
%%SDL%%lib/libnoatuntyler.la
%%SDL%%lib/libnoatuntyler.so
lib/libnoatunsynaescope.la
lib/libnoatunsynaescope.so
lib/libnoatuntippecanoe.la
lib/libnoatuntippecanoe.so
lib/libnoatuntyler.la
lib/libnoatuntyler.so
lib/libnoatunwakeup.la
lib/libnoatunwakeup.so
share/apps/kate/plugins/katehtmltools/ui.rc
share/apps/kate/plugins/katehtmltools.desktop
share/apps/kate/plugins/kateinsertcommand/ui.rc
share/apps/kate/plugins/katehtmltools/ui.rc
share/apps/kate/plugins/kateinsertcommand.desktop
share/apps/kate/plugins/kateopenheader/ui.rc
share/apps/kate/plugins/kateinsertcommand/ui.rc
share/apps/kate/plugins/kateopenheader.desktop
share/apps/kate/plugins/kateprojectmanager/ui.rc
share/apps/kate/plugins/kateopenheader/ui.rc
share/apps/kate/plugins/kateprojectmanager.desktop
share/apps/kate/plugins/katetextfilter/ui.rc
share/apps/kate/plugins/kateprojectmanager/ui.rc
share/apps/kate/plugins/katetextfilter.desktop
share/apps/kate/plugins/katetextfilter/ui.rc
share/apps/khtml/kpartplugins/khtmlsettingsplugin.rc
share/apps/khtml/kpartplugins/plugin_babelfish.rc
share/apps/khtml/kpartplugins/plugin_domtreeviewer.rc
@ -84,13 +80,13 @@ share/apps/konqiconview/kpartplugins/dirfilterplugin.rc
share/apps/konqiconview/kpartplugins/kimgalleryplugin.rc
share/apps/konqlistview/kpartplugins/dirfilterplugin.rc
share/apps/konqlistview/kpartplugins/kimgalleryplugin.rc
%%SDL%%share/apps/noatun/blurscope.plugin
share/apps/noatun/blurscope.plugin
share/apps/noatun/luckytag.plugin
share/apps/noatun/madness.plugin
%%SDL%%share/apps/noatun/synaescope.plugin
%%SDL%%share/apps/noatun/tippecanoe.plugin
%%SDL%%share/apps/noatun/tyler.plugin
%%SDL%%share/apps/noatun/tylerstates
share/apps/noatun/synaescope.plugin
share/apps/noatun/tippecanoe.plugin
share/apps/noatun/tyler.plugin
share/apps/noatun/tylerstates
share/apps/noatun/wakeup.plugin
share/doc/HTML/en/kate-plugins/common
share/doc/HTML/en/kate-plugins/helloworld.docbook
@ -124,28 +120,14 @@ share/icons/locolor/16x16/apps/ktimemon.png
share/icons/locolor/32x32/apps/ktimemon.png
share/mimelnk/application/x-webarchive.desktop
share/services/webarchivethumbnail.desktop
@dirrm share/services
@dirrm share/mimelnk/application
@dirrm share/icons/locolor/32x32/apps
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/hicolor/22x22/actions
@dirrm share/icons/hicolor/16x16/actions
@dirrm share/doc/HTML/en/kicker-applets
@dirrm share/doc/HTML/en/kate-plugins
@dirrm share/doc/HTML/en
@dirrm share/apps/noatun
@dirrm share/apps/konqlistview/kpartplugins
@dirrm share/apps/konqiconview/kpartplugins
@dirrm share/apps/knewsticker/scripts
@dirrm share/apps/knewsticker
@dirrm share/apps/kicker/applets
@dirrm share/apps/khtml/kpartplugins
@dirrm share/apps/khtml
@dirrm share/apps/kate/plugins/katetextfilter
@dirrm share/apps/kate/plugins/kateprojectmanager
@dirrm share/apps/kate/plugins/kateopenheader
@dirrm share/apps/kate/plugins/kateinsertcommand
@dirrm share/apps/kate/plugins/katehtmltools
@dirrm share/apps/kate/plugins
@dirrm share/apps/kate
@dirrm lib/kde2

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdeaddons
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,30 +14,40 @@ DIST_SUBDIR= KDE
MAINTAINER?= ports@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
LIB_DEPENDS+= noatun.0:${PORTSDIR}/audio/kdemultimedia2 \
SDL-1.1.3:${PORTSDIR}/devel/sdl12
WITH_SDL= yes
USE_KDEBASE_VER=2
LIB_DEPENDS+= noatun.0:${PORTSDIR}/audio/kdemultimedia2
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
PLIST_SUB+= RM=${RM}
CONFIGURE_ENV+= SDL_CONFIG="${LOCALBASE}/bin/sdl11-config"
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/include/SDL11/SDL.h)
WITH_SDL= yes
.endif
.if defined(WITH_SDL) && ${WITH_SDL} == yes
LIB_DEPENDS+= SDL-1.1.3:${PORTSDIR}/devel/sdl12
CONFIGURE_ENV+= SDL_CONFIG="${LOCALBASE}/bin/sdl11-config"
PLIST_SUB+= SDL=""
.else
PLIST_SUB+= SDL="@comment "
pre-everything::
@${ECHO_MSG}
@${ECHO_MSG} "If you want to compile with SDL support,"
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SDL=yes\""
@${ECHO_MSG}
.endif
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \
"s@sdl-config@${LOCALBASE}/bin/sdl11-config@g"
.include <bsd.port.post.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdeaddons-2.2.1.tar.bz2) = 034f35ed3cd575b65f8ccc6110590d20
MD5 (KDE/kdeaddons-2.2.2.tar.bz2) = 9392da0992f4aede5f6a86840e47fef6

View File

@ -1,11 +1,7 @@
@unexec %%RM%% -f %D/lib/libkolourpicker.so
@unexec %%RM%% -f %D/lib/libktimemon.so
@unexec %%RM%% -f %D/share/doc/HTML/en/kate-plugins/common
@unexec %%RM%% -f %D/share/doc/HTML/en/kicker-applets/common
bin/dcop_kate
%%SDL%%bin/noatunsynaescope.bin
%%SDL%%bin/noatuntippecanoe.bin
%%SDL%%bin/noatuntyler.bin
bin/noatunsynaescope.bin
bin/noatuntippecanoe.bin
bin/noatuntyler.bin
bin/testor
lib/kde2/libbabelfishplugin.la
lib/kde2/libbabelfishplugin.so
@ -41,30 +37,30 @@ lib/libkolourpicker.so.1
lib/libktimemon.la
lib/libktimemon.so
lib/libktimemon.so.1
%%SDL%%lib/libnoatunblurscope.la
%%SDL%%lib/libnoatunblurscope.so
lib/libnoatunblurscope.la
lib/libnoatunblurscope.so
lib/libnoatunluckytag.la
lib/libnoatunluckytag.so
lib/libnoatunmadness.la
lib/libnoatunmadness.so
%%SDL%%lib/libnoatunsynaescope.la
%%SDL%%lib/libnoatunsynaescope.so
%%SDL%%lib/libnoatuntippecanoe.la
%%SDL%%lib/libnoatuntippecanoe.so
%%SDL%%lib/libnoatuntyler.la
%%SDL%%lib/libnoatuntyler.so
lib/libnoatunsynaescope.la
lib/libnoatunsynaescope.so
lib/libnoatuntippecanoe.la
lib/libnoatuntippecanoe.so
lib/libnoatuntyler.la
lib/libnoatuntyler.so
lib/libnoatunwakeup.la
lib/libnoatunwakeup.so
share/apps/kate/plugins/katehtmltools/ui.rc
share/apps/kate/plugins/katehtmltools.desktop
share/apps/kate/plugins/kateinsertcommand/ui.rc
share/apps/kate/plugins/katehtmltools/ui.rc
share/apps/kate/plugins/kateinsertcommand.desktop
share/apps/kate/plugins/kateopenheader/ui.rc
share/apps/kate/plugins/kateinsertcommand/ui.rc
share/apps/kate/plugins/kateopenheader.desktop
share/apps/kate/plugins/kateprojectmanager/ui.rc
share/apps/kate/plugins/kateopenheader/ui.rc
share/apps/kate/plugins/kateprojectmanager.desktop
share/apps/kate/plugins/katetextfilter/ui.rc
share/apps/kate/plugins/kateprojectmanager/ui.rc
share/apps/kate/plugins/katetextfilter.desktop
share/apps/kate/plugins/katetextfilter/ui.rc
share/apps/khtml/kpartplugins/khtmlsettingsplugin.rc
share/apps/khtml/kpartplugins/plugin_babelfish.rc
share/apps/khtml/kpartplugins/plugin_domtreeviewer.rc
@ -84,13 +80,13 @@ share/apps/konqiconview/kpartplugins/dirfilterplugin.rc
share/apps/konqiconview/kpartplugins/kimgalleryplugin.rc
share/apps/konqlistview/kpartplugins/dirfilterplugin.rc
share/apps/konqlistview/kpartplugins/kimgalleryplugin.rc
%%SDL%%share/apps/noatun/blurscope.plugin
share/apps/noatun/blurscope.plugin
share/apps/noatun/luckytag.plugin
share/apps/noatun/madness.plugin
%%SDL%%share/apps/noatun/synaescope.plugin
%%SDL%%share/apps/noatun/tippecanoe.plugin
%%SDL%%share/apps/noatun/tyler.plugin
%%SDL%%share/apps/noatun/tylerstates
share/apps/noatun/synaescope.plugin
share/apps/noatun/tippecanoe.plugin
share/apps/noatun/tyler.plugin
share/apps/noatun/tylerstates
share/apps/noatun/wakeup.plugin
share/doc/HTML/en/kate-plugins/common
share/doc/HTML/en/kate-plugins/helloworld.docbook
@ -124,28 +120,14 @@ share/icons/locolor/16x16/apps/ktimemon.png
share/icons/locolor/32x32/apps/ktimemon.png
share/mimelnk/application/x-webarchive.desktop
share/services/webarchivethumbnail.desktop
@dirrm share/services
@dirrm share/mimelnk/application
@dirrm share/icons/locolor/32x32/apps
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/hicolor/22x22/actions
@dirrm share/icons/hicolor/16x16/actions
@dirrm share/doc/HTML/en/kicker-applets
@dirrm share/doc/HTML/en/kate-plugins
@dirrm share/doc/HTML/en
@dirrm share/apps/noatun
@dirrm share/apps/konqlistview/kpartplugins
@dirrm share/apps/konqiconview/kpartplugins
@dirrm share/apps/knewsticker/scripts
@dirrm share/apps/knewsticker
@dirrm share/apps/kicker/applets
@dirrm share/apps/khtml/kpartplugins
@dirrm share/apps/khtml
@dirrm share/apps/kate/plugins/katetextfilter
@dirrm share/apps/kate/plugins/kateprojectmanager
@dirrm share/apps/kate/plugins/kateopenheader
@dirrm share/apps/kate/plugins/kateinsertcommand
@dirrm share/apps/kate/plugins/katehtmltools
@dirrm share/apps/kate/plugins
@dirrm share/apps/kate
@dirrm lib/kde2

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdeutils
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,11 +14,33 @@ DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
USE_KDELIBS_VER=2
USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
MAN1= efax.1 efix.1 fax.1
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdeutils-2.2.1.tar.bz2) = a511f6be6949d5b1c2f943f3f9ce27a5
MD5 (KDE/kdeutils-2.2.2.tar.bz2) = 68c3c86d97c3a95079f81b2c7f4bf35a

View File

@ -0,0 +1,20 @@
--- klaptopdaemon/portable.cpp- Thu Jun 28 00:08:02 2001
+++ klaptopdaemon/portable.cpp Thu Jun 28 00:08:22 2001
@@ -453,7 +453,7 @@
if (ret == -1)
return 0;
- return (info.ai_batt_time != 0xffff);
+ return (info.ai_batt_time != -1);
}
//
@@ -638,7 +638,7 @@
p.powered = info.ai_acline;
p.percentage = (info.ai_batt_life==255 ? 100 : info.ai_batt_life);
- p.time = (info.ai_batt_time != 0xffff ? info.ai_batt_time/60 : -1);
+ p.time = (info.ai_batt_time != -1 ? info.ai_batt_time/60 : -1);
return(p);
bad:

View File

@ -251,7 +251,6 @@ share/services/arkpart.desktop
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kpm
@dirrm share/doc/HTML/en/knotes
@dirrm share/doc/HTML/en/klprfax
@ -308,7 +307,6 @@ share/services/arkpart.desktop
@dirrm share/apps/ark/icons/hicolor
@dirrm share/apps/ark/icons
@dirrm share/apps/ark
@dirrm share/apps
@dirrm share/applnk/Utilities
@dirrm share/applnk/System
@dirrm share/applnk/Settings/PowerControl
@ -316,4 +314,3 @@ share/services/arkpart.desktop
@dirrm share/applnk/Settings
@dirrm share/applnk/Editors
@dirrm share/applnk
@dirrm lib/kde2

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdeutils
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,11 +14,33 @@ DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
USE_KDELIBS_VER=2
USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
MAN1= efax.1 efix.1 fax.1
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdeutils-2.2.1.tar.bz2) = a511f6be6949d5b1c2f943f3f9ce27a5
MD5 (KDE/kdeutils-2.2.2.tar.bz2) = 68c3c86d97c3a95079f81b2c7f4bf35a

View File

@ -0,0 +1,20 @@
--- klaptopdaemon/portable.cpp- Thu Jun 28 00:08:02 2001
+++ klaptopdaemon/portable.cpp Thu Jun 28 00:08:22 2001
@@ -453,7 +453,7 @@
if (ret == -1)
return 0;
- return (info.ai_batt_time != 0xffff);
+ return (info.ai_batt_time != -1);
}
//
@@ -638,7 +638,7 @@
p.powered = info.ai_acline;
p.percentage = (info.ai_batt_life==255 ? 100 : info.ai_batt_life);
- p.time = (info.ai_batt_time != 0xffff ? info.ai_batt_time/60 : -1);
+ p.time = (info.ai_batt_time != -1 ? info.ai_batt_time/60 : -1);
return(p);
bad:

View File

@ -251,7 +251,6 @@ share/services/arkpart.desktop
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/doc/HTML/en/kpm
@dirrm share/doc/HTML/en/knotes
@dirrm share/doc/HTML/en/klprfax
@ -308,7 +307,6 @@ share/services/arkpart.desktop
@dirrm share/apps/ark/icons/hicolor
@dirrm share/apps/ark/icons
@dirrm share/apps/ark
@dirrm share/apps
@dirrm share/applnk/Utilities
@dirrm share/applnk/System
@dirrm share/applnk/Settings/PowerControl
@ -316,4 +314,3 @@ share/services/arkpart.desktop
@dirrm share/applnk/Settings
@dirrm share/applnk/Editors
@dirrm share/applnk
@dirrm lib/kde2

View File

@ -6,7 +6,7 @@
#
PORTNAME= kdeutils
PORTVERSION= 2.2.1
PORTVERSION= 2.2.2
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
@ -14,11 +14,33 @@ DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \
automake14:${PORTSDIR}/devel/automake14 \
objprelink:${PORTSDIR}/devel/objprelink
USE_KDELIBS_VER=2
USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-objprelink
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL)
CONFIGURE_ARGS+=--enable-final
.endif
.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_NDEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
USE_GMAKE= yes
MAN1= efax.1 efix.1 fax.1
pre-configure:
${MKDIR} ${WRKSRC}/auto-bin
.for AC in autoconf autoheader
${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC}
.endfor
.for AM in automake aclocal
${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM}
.endfor
cd ${WRKSRC} && env PATH=$$PATH:${WRKSRC}/auto-bin \
${GMAKE} -f Makefile.cvs
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (KDE/kdeutils-2.2.1.tar.bz2) = a511f6be6949d5b1c2f943f3f9ce27a5
MD5 (KDE/kdeutils-2.2.2.tar.bz2) = 68c3c86d97c3a95079f81b2c7f4bf35a

Some files were not shown because too many files have changed in this diff Show More