Re: UPDATE: hiawatha-5.7
On Thu, 22 Mar 2007, Christian Weisgerber wrote: Note that setuid would be "u+s". The above mode is just nonsensical. Err, I must has been thinking "o"wner... one of those days again. Corrected, thanks. -- Antoine
Re: NEW: claws-mail + libetpan + claws-mail-vcalendar
Adam writes: > in patches/patch-src_inc_c: > -#define MSGBUFSIZE 8192 > +define MESSAGEBUFSIZE 8192 > > Probably want to keep the # in there. Yes. Thanks. > With FLAVOR="aspell no_bogofilter no_clamav no_spamassassin" I > get an error creating package because the trayicon plugin > isn't built. And I also don't get shared libs for any of the > plugins, just the static archives. I can't reproduce this. Here's a final tarball with the fixed inc.c patch. claws-mail.tar.gz Description: GNU Zip compressed data
updating
I received a package from a friend, and whilse trying to apply it, it asked me to update my glitz. I have glitz-0.4.4 installed, and the current in ports is glitz-0.5.5, but when I tried to install it (it built fine on my zaurus) I got an error from pkg_add complainning that it waas interfering with the glitz-0.4.4. OK, I tried to use pkg_delete ib glitz-0.4.4, an dgot an extremely long list of things that would need to be removed if I were to remove the glitz. This thing I'm trying to do is a very common activity, updating the package, so you must have SOME kind of way to accomplish it. Could I get a suggestion? Thanks!
Re: NEW: claws-mail + libetpan + claws-mail-vcalendar
in patches/patch-src_inc_c: -#define MSGBUFSIZE 8192 +define MESSAGEBUFSIZE 8192 Probably want to keep the # in there. With FLAVOR="aspell no_bogofilter no_clamav no_spamassassin" I get an error creating package because the trayicon plugin isn't built. And I also don't get shared libs for any of the plugins, just the static archives. Adam
Re: UPDATE: hiawatha-5.7
Peter Valchev <[EMAIL PROTECTED]> wrote: > > [EMAIL PROTECTED] o+s > > +sbin/cgi-wrapper > > why did that change to setuid? Note that setuid would be "u+s". The above mode is just nonsensical. -- Christian "naddy" Weisgerber [EMAIL PROTECTED]
Re: Update: qemu 0.9.0
On 2007/03/21 10:14, Todd T. Fries wrote: > Here is a diff that will permit you to try out qemu 0.9.0; I'm testing > this, and if you have any issues or successes please let me know. This version is hopefully simpler to apply (though that may just be my lack of experience in bending patch(1) to my will), and more importantly it unbreaks building on amd64 (I successfully built and installed, and booted an existing OpenBSD/i386 image created in an earlier qemu). Index: Makefile === RCS file: /cvs/ports/emulators/qemu/Makefile,v retrieving revision 1.20 diff -u -p -u -r1.20 Makefile --- Makefile19 Feb 2007 22:59:33 - 1.20 +++ Makefile22 Mar 2007 23:20:12 - @@ -5,8 +5,7 @@ ONLY_FOR_ARCHS= amd64 arm i386 powerpc COMMENT= "multi system emulator" -DISTNAME= qemu-0.8.2 -PKGNAME= ${DISTNAME}p4 +DISTNAME= qemu-0.9.0 CATEGORIES=emulators HOMEPAGE= http://fabrice.bellard.free.fr/qemu/ @@ -21,17 +20,28 @@ PERMIT_DISTFILES_FTP= Yes MASTER_SITES= ${HOMEPAGE} BUILD_DEPENDS= ::textproc/texi2html -LIB_DEPENDS= SDL::devel/sdl USE_GMAKE= Yes -USE_X11= Yes -WANTLIB= m z ossaudio X11 Xext usbhid pthread c +WANTLIB= m z ossaudio c CONFIGURE_STYLE= gnu # Currently, the regression tests are utterly broken. REGRESS_TARGET=test test2 .if ${MACHINE_ARCH} == "amd64" -PATCH_LIST= patch-* misc-* +PATCH_LIST=patch-* misc-* +.endif + +FLAVORS= no_x11 +FLAVOR?= + +.if ${FLAVOR:L:Mno_x11} +CONFIGURE_ARGS+= --disable-gfx-check \ + --disable-sdl +.else +LIB_DEPENDS= SDL::devel/sdl \ + aa::graphics/aalib + +USE_X11= Yes .endif post-install: Index: distinfo === RCS file: /cvs/ports/emulators/qemu/distinfo,v retrieving revision 1.6 diff -u -p -u -r1.6 distinfo --- distinfo22 Dec 2006 17:31:45 - 1.6 +++ distinfo22 Mar 2007 23:20:12 - @@ -1,4 +1,5 @@ -MD5 (qemu-0.8.2.tar.gz) = 5b3a89eb2f256a8a6f3bb07f7b3f1b07 -RMD160 (qemu-0.8.2.tar.gz) = 715c24997330352aa675cd7279731cec251f833a -SHA1 (qemu-0.8.2.tar.gz) = d775239a545e7d0c5b677660a2122df590afde6d -SIZE (qemu-0.8.2.tar.gz) = 1810909 +MD5 (qemu-0.9.0.tar.gz) = ab11a03ba30cf4a70641f0f170473d69 +RMD160 (qemu-0.9.0.tar.gz) = 4296542b6da18a6ac93d20787330d3c1c2ac0a19 +SHA1 (qemu-0.9.0.tar.gz) = 1e57e48a06eb8729913d92601000466eecef06cb +SHA256 (qemu-0.9.0.tar.gz) = 491facf9335654967ee53d8fb3540a274bfcbdcc225506bd38c4ee8e9ab405c1 +SIZE (qemu-0.9.0.tar.gz) = 1901741 Index: patches/patch-Makefile === RCS file: /cvs/ports/emulators/qemu/patches/patch-Makefile,v retrieving revision 1.5 diff -u -p -u -r1.5 patch-Makefile --- patches/patch-Makefile 22 Dec 2006 17:31:45 - 1.5 +++ patches/patch-Makefile 22 Mar 2007 23:20:12 - @@ -1,7 +1,16 @@ -$OpenBSD: patch-Makefile,v 1.5 2006/12/22 17:31:45 todd Exp $ Makefile.orig Sat Jul 22 13:23:34 2006 -+++ Makefile Sun Nov 12 17:10:10 2006 -@@ -44,7 +44,7 @@ clean: +$OpenBSD$ +--- Makefile.orig Mon Feb 5 17:01:54 2007 Makefile Tue Mar 20 19:21:54 2007 +@@ -27,7 +27,7 @@ endif + ifndef CONFIG_DARWIN + ifndef CONFIG_WIN32 + ifndef CONFIG_SOLARIS +-LIBS+=-lrt ++#LIBS+=-lrt + endif + endif + endif +@@ -51,7 +51,7 @@ clean: rm -f *.o *.a $(TOOLS) dyngen$(EXESUF) TAGS *.pod *~ */*~ $(MAKE) -C tests clean for d in $(TARGET_DIRS); do \ @@ -10,7 +19,7 @@ $OpenBSD: patch-Makefile,v 1.5 2006/12/2 done distclean: clean -@@ -98,7 +98,7 @@ cscope: +@@ -106,7 +106,7 @@ cscope: # documentation %.html: %.texi Index: patches/patch-Makefile_target === RCS file: /cvs/ports/emulators/qemu/patches/patch-Makefile_target,v retrieving revision 1.10 diff -u -p -u -r1.10 patch-Makefile_target --- patches/patch-Makefile_target 22 Dec 2006 17:31:45 - 1.10 +++ patches/patch-Makefile_target 22 Mar 2007 23:20:12 - @@ -1,28 +1,17 @@ -$OpenBSD: patch-Makefile_target,v 1.10 2006/12/22 17:31:45 todd Exp $ Makefile.target.orig Sat Jul 22 13:23:34 2006 -+++ Makefile.targetMon Dec 18 17:16:21 2006 -@@ -17,8 +17,9 @@ ifdef CONFIG_USER_ONLY - VPATH+=:$(SRC_PATH)/linux-user - DEFINES+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ARCH) - endif --CFLAGS=-Wall -O2 -g -fno-strict-aliasing -+#CFLAGS=-Wall -O2 -g -fno-strict-aliasing - #CFLAGS+=-Werror -+CFLAGS+= -ggdb - LDFLAGS=-g - LIBS= - HELPER_CFLAGS=$(CFLAGS) -@@ -144,7 +145,7 @@ LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64 +$OpenBSD$ +--- Makefile.target.orig Mon Feb 5 17:01:54 2007 Makefile.tar
Re: Build maxima and workman on amd64
> While trying to build the whole port tree on amd64, I found some ports > which are not marked the same as their dependency as only buildable for > some platform. This is on purpose. If someone fixes that particular dependency to allow it to work on another architectures, everything else will just work, without the need to hunt around for it. You're not solving a problem with your diff. > For instance: > > workman depends on xview-config-3.2.1 which is not for alpha amd64 hppa64 > sparc64 mips64, but in workman Makefile port there is no: > NOT_FOR_ARCHS= ${LP64_ARCHS} > > maxima depends on clisp, which is only for i386, not amd64, but in maxima > Makefile port there is no: > ONLY_FOR_ARCHS= i386 > > Best regards, > > Charles Longeau > > Index: audio/workman/Makefile > === > RCS file: /cvs/ports/audio/workman/Makefile,v > retrieving revision 1.28 > diff -u -r1.28 Makefile > --- audio/workman/Makefile13 Nov 2006 10:08:12 - 1.28 > +++ audio/workman/Makefile21 Mar 2007 21:22:12 - > @@ -5,6 +5,8 @@ > PKGNAME= ${DISTNAME:L}p0 > CATEGORIES= audio > > +NOT_FOR_ARCHS= ${LP64_ARCHS} > + > MASTER_SITES=${MASTER_SITE_XCONTRIB:=applications/WorkMan/} > > PERMIT_PACKAGE_CDROM=Yes > Index: math/maxima/Makefile > === > RCS file: /cvs/ports/math/maxima/Makefile,v > retrieving revision 1.5 > diff -u -r1.5 Makefile > --- math/maxima/Makefile 25 Feb 2005 14:31:50 - 1.5 > +++ math/maxima/Makefile 22 Mar 2007 04:14:01 - > @@ -1,5 +1,6 @@ > # $OpenBSD: Makefile,v 1.5 2005/02/25 14:31:50 alek Exp $ > > +ONLY_FOR_ARCHS= i386 > COMMENT= "GPL computer algebra system based on DOE Macsyma" > > VERSION= 5.9.0 >
Re: UPDATE: hiawatha-5.7
> --- /usr/ports/www/hiawatha/pkg/PLIST Sun Dec 31 11:32:42 2006 > +++ hiawatha/pkg/PLISTSun Mar 4 13:02:22 2007 > @@ -1,14 +1,20 @@ > @comment $OpenBSD: PLIST,v 1.1.1.1 2006/12/31 10:32:42 ajacoutot Exp $ > @newgroup _hiawatha:579 > @newuser _hiawatha:579:579:daemon:Hiawatha HTTP > Server:/nonexistent:/sbin/nologin > [EMAIL PROTECTED] man/man1/cgi_wrapper.1 > [EMAIL PROTECTED] man/man1/cgi-wrapper.1 > @man man/man1/hiawatha.1 > -sbin/cgi_wrapper > [EMAIL PROTECTED] man/man1/php-fcgi.1 > [EMAIL PROTECTED] man/man1/wigwam.1 > [EMAIL PROTECTED] o+s > +sbin/cgi-wrapper > [EMAIL PROTECTED] why did that change to setuid?
Re: UPDATE: aqsis-1.2.0
Selon Antoine Jacoutot <[EMAIL PROTECTED]>: > Comments/Ok? Once again, a repost... => http://www.obsd.fr/OpenBSD/wip/aqsis.diff ok? -- Antoine
Re: UPDATE: hiawatha-5.7
Selon Antoine Jacoutot <[EMAIL PROTECTED]>: > Comments/Ok? I reiterate my demand... comments/ok? http://www.obsd.fr/OpenBSD/wip/hiawatha.diff -- Antoine
Re: UPDATE: pilot-link-0.12.2
Selon Antoine Jacoutot <[EMAIL PROTECTED]>: > This is a small update to pilot-link-0.12.2. > This is mostly a maintenance release (bug fixes and minor tweaks) Still looking for an ok on this. http://www.obsd.fr/OpenBSD/wip/pilot-link.diff -- Antoine
Re: NEW: claws-mail + libetpan + claws-mail-vcalendar
Am Thu, 22 Mar 2007 20:41:11 +0100 schrieb Pierre-Yves Ritschard <[EMAIL PROTECTED]>: > > > > just a reminder: > > > > 2.8.1 is released now, would be nice to have the diffs updated for > > this and get them into ports tree soon. because 2.x seems to be more > > stable then the old 1.9.6 version in tree, which dumps core > > regulary. i run 2.7.2 on macppc for a while with a lot of > > accounts... no problems. > > > please push this back to ulrich as he is the original author of the > port, I have not time for this but want it ! Sorry for not responding earlier, but I was quiet busy, got ill, were away for two weeks, so I couldn't spend much time on this port. If nothing special happens, I will work on it this weekend. Btw.: libetpan was removed from default build, because I was asked for a more lightweight version of claws-mail. Except the support for startup-notification it is stripped down to the bare minimum (AFAIK). Ulrich
Re: NEW: claws-mail + libetpan + claws-mail-vcalendar
Pierre-Yves Ritschard writes: > This brings Ulrich Kahl's ports to claws-mail-2.7.2 And here is 2.8.1. This port has now been worked on by at least four people. Who wants to maintain it? Brad and I have worked on this one the past few days and I think the packaging part is finished. Could we have a last round of testing and finally get this in? libetpan.tar.gz Description: GNU Zip compressed data claws-mail.tar.gz Description: GNU Zip compressed data
Re: UPDATE: net/ddclient
Antoine Jacoutot wrote: On Thu, 22 Mar 2007, Joerg Zinke wrote: new diff attached, with input from antoine and rd trush. switched to /var/db/ddclient for cache file according to hier(7). I reworked the Makefile a bit. Comments/Ok? Looks good to me.
Build maxima and workman on amd64
Hi, While trying to build the whole port tree on amd64, I found some ports which are not marked the same as their dependency as only buildable for some platform. For instance: workman depends on xview-config-3.2.1 which is not for alpha amd64 hppa64 sparc64 mips64, but in workman Makefile port there is no: NOT_FOR_ARCHS= ${LP64_ARCHS} maxima depends on clisp, which is only for i386, not amd64, but in maxima Makefile port there is no: ONLY_FOR_ARCHS= i386 Best regards, Charles Longeau Index: audio/workman/Makefile === RCS file: /cvs/ports/audio/workman/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- audio/workman/Makefile 13 Nov 2006 10:08:12 - 1.28 +++ audio/workman/Makefile 21 Mar 2007 21:22:12 - @@ -5,6 +5,8 @@ PKGNAME= ${DISTNAME:L}p0 CATEGORIES=audio +NOT_FOR_ARCHS= ${LP64_ARCHS} + MASTER_SITES= ${MASTER_SITE_XCONTRIB:=applications/WorkMan/} PERMIT_PACKAGE_CDROM= Yes Index: math/maxima/Makefile === RCS file: /cvs/ports/math/maxima/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- math/maxima/Makefile25 Feb 2005 14:31:50 - 1.5 +++ math/maxima/Makefile22 Mar 2007 04:14:01 - @@ -1,5 +1,6 @@ # $OpenBSD: Makefile,v 1.5 2005/02/25 14:31:50 alek Exp $ +ONLY_FOR_ARCHS=i386 COMMENT= "GPL computer algebra system based on DOE Macsyma" VERSION= 5.9.0
Re: UPDATE: gtk+ and friends
On Tue, Mar 20, 2007 at 11:05:52PM +0100, Aleksander Piotrowski wrote: > Hi > > Here goes yet another update for gtk+2 and friends. Fetch diffs from: > > http://atlantilde.com/~alek/ports/gtk-stuff/ > > Don't be afraid to test it. It works perfectly fine for me with Firefox > and Gaim on i386. IIRC gtk+ update will break old gnome, as some of it > libs depend on internals of gtk+ that have been changed in this release. > But that should stop you from testing it because if you want new Gnome > then we need to get these updates commited! > > So please test and report back! Thanks. i've been using this for some time now without problems on amd64 and i386 with various applications. please guys, test these updates! cheers, jasper > Alek > -- > - Chc? zrozumie? wszystko - o?wiadczy? Miro. - Chc? wiedzie? wszystko, a potem > zestawi? razem i zbada?, co si? tam kryje. > - Znakomity projekt - przyzna?a. - B?dzie dobrze wygl?da? w twoim resume. > -- Orson Scott Card, M?wca Umar?ych. > > -- ``This statement is false'' NedBSD: http://nedbsd.eu
Re: new: sysutils/shunt
On Fri, Mar 16, 2007 at 10:55:42PM +0100, Joachim Schipper wrote: > Compiles, passes lib-depends-check and update-plist, and > > shunt -c 'dd if=/dev/zero bs=4096 count=16' + 'dd of=test$SHUNT_STARTS bs=512 > count=8' > > does not appear to do any strange things. > > I hope this port can be committed this time... Me too. If folks want new ports added to the tree, some level of testing is required before a committer will take the time to commit a new port. This port should be useful for those who back up systems onto optical media. The first time I submitted it was just before the 4.1 lockdown. I hope some who use CD or DVD for backup will find this helpful and be willing to test it. Here's a link to the tarball attached to the March 15 resubmission: http://marc.info/?l=openbsd-ports&m=117128961008360&q=p3 -Josh-
NEW: www/p5-Catalyst-Controller-FormBuilder
Hey porters, this extension to the catalyst framework is a smooth solution to all the usual form handling stuff as in many web applications these days. I'd say this is a good reason to look at this and mabye even give catalyst a try for those of you who might be annoyed to type all the formular code again and again :-) Please test and give feedback. Kind regards, Simon p5-Catalyst-Controller-FormBuilder.tar.gz Description: application/tar-gz
Re: tools for updating?
Well, I am working on something that will work very similar to emerge from Gentoo, as far as the feel of the program. The main goal is to cut down all that time moving into and out of directories by hand. I'll post on here when its done. I'm not sure if that what you are looking for though. >I am new to OpenBSD ports ... I've tried to get the answer to this >question from Googling OpenBSD sources, but so far, without luck. You >know the set of tools that FreeBSD has created, to work on their ports? >Has any work been done, vis-a-vis those tool's adaptability to the >OpenBSD tree? Getting some tool like their portmanager, to manage >keeping ports up-to-date, would be of priceless help. > Vijay Ramesh
Re: UPDATE: net/ddclient
On Thu, 22 Mar 2007 18:53:49 +0100 (CET) Antoine Jacoutot <[EMAIL PROTECTED]> wrote: > On Thu, 22 Mar 2007, Joerg Zinke wrote: > > new diff attached, with input from antoine and rd trush. > > switched to /var/db/ddclient for cache file according to hier(7). > > I reworked the Makefile a bit. > Comments/Ok? > much better :)
Re: UPDATE: mail/grepmail 4.80 -> 5.3033
On Thu, Mar 22, 2007 at 09:23:53AM +0100, Giovanni Bechis wrote: > On Mon, Mar 19, 2007 at 07:42:42PM +0100, Giovanni Bechis wrote: > > Update to latest version of Grepmail: > > > I have created a better diff. > Ok ? > Giovanni > diff -urNx CVS mail/grepmail/Makefile mystuff/mail/grepmail/Makefile > --- mail/grepmail/MakefileSat Jan 13 17:06:37 2007 > +++ mystuff/mail/grepmail/MakefileWed Mar 21 23:24:26 2007 > @@ -1,7 +1,7 @@ > # $OpenBSD: Makefile,v 1.14 2006/11/12 23:28:42 jcs Exp $ > > -DISTNAME=grepmail-4.80 > -PKGNAME= ${DISTNAME}p0 > +DISTNAME=grepmail-5.3033 > +PKGNAME= ${DISTNAME} > CATEGORIES= mail perl5 > > # GPL > @@ -14,13 +14,14 @@ > HOMEPAGE=http://grepmail.sourceforge.net/ > MASTER_SITES=${MASTER_SITE_SOURCEFORGE:=grepmail/} > > -RUN_DEPENDS= :p5-Time-TimeDate-*:devel/p5-Time-TimeDate \ > +BUILD_DEPENDS= :p5-Time-TimeDate-*:devel/p5-Time-TimeDate \ > :p5-DateManip-*:converters/p5-DateManip \ > + :p5-Benchmark-Timer-*:devel/p5-Benchmark-Timer \ > + :p5-FileHandle-Unget-*:devel/p5-FileHandle-Unget > + > +RUN_DEPENDS= ${BUILD_DEPENDS} \ > :bzip2-*:archivers/bzip2 > -BUILD_DEPENDS= :p5-Time-TimeDate-*:devel/p5-Time-TimeDate \ > - :p5-DateManip-*:converters/p5-DateManip [snip] A few changes. From what i see all dependecies are runtime and also required at build time and regress needs them also. The bzip2 dependency is not necessary as p5-Mail-Mbox-MessageParser covers it already. Please test and comment. Kind regards, Simon Index: Makefile === RCS file: /cvs/ports/mail/grepmail/Makefile,v retrieving revision 1.14 diff -u -p -u -r1.14 Makefile --- Makefile12 Nov 2006 23:28:42 - 1.14 +++ Makefile22 Mar 2007 17:52:58 - @@ -1,7 +1,7 @@ # $OpenBSD: Makefile,v 1.14 2006/11/12 23:28:42 jcs Exp $ -DISTNAME= grepmail-4.80 -PKGNAME= ${DISTNAME}p0 +DISTNAME= grepmail-5.3033 +PKGNAME= ${DISTNAME} CATEGORIES=mail perl5 # GPL @@ -14,13 +14,14 @@ COMMENT="search mailboxes for a particu HOMEPAGE= http://grepmail.sourceforge.net/ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=grepmail/} -RUN_DEPENDS= :p5-Time-TimeDate-*:devel/p5-Time-TimeDate \ - :p5-DateManip-*:converters/p5-DateManip \ - :bzip2-*:archivers/bzip2 -BUILD_DEPENDS= :p5-Time-TimeDate-*:devel/p5-Time-TimeDate \ - :p5-DateManip-*:converters/p5-DateManip +RUN_DEPENDS= :p5-DateManip-*:converters/p5-DateManip \ + :p5-Benchmark-Timer-*:devel/p5-Benchmark-Timer \ + :p5-FileHandle-Unget-*:devel/p5-FileHandle-Unget \ + :p5-Time-TimeDate-*:devel/p5-Time-TimeDate \ + :p5-Mail-Mbox-MessageParser-*:mail/p5-Mail-Mbox-MessageParser +BUILD_DEPENDS= ${RUN_DEPENDS} +REGRESS_DEPENDS=${RUN_DEPENDS} CONFIGURE_STYLE= perl -CONFIGURE_ARGS=FASTREADER=0 .include Index: distinfo === RCS file: /cvs/ports/mail/grepmail/distinfo,v retrieving revision 1.3 diff -u -p -u -r1.3 distinfo --- distinfo5 Jan 2005 16:58:54 - 1.3 +++ distinfo22 Mar 2007 17:52:58 - @@ -1,4 +1,5 @@ -MD5 (grepmail-4.80.tar.gz) = 846558ef1fcca841f0b4fd455cf3ac11 -RMD160 (grepmail-4.80.tar.gz) = 7752449d26339e43795310f5a271fe0518e2f7bc -SHA1 (grepmail-4.80.tar.gz) = 16e085376f68497eeac6f37e2d0019c9b02951d0 -SIZE (grepmail-4.80.tar.gz) = 714739 +MD5 (grepmail-5.3033.tar.gz) = 83f94e253ccb02fde9a207d7f23c9cd2 +RMD160 (grepmail-5.3033.tar.gz) = 03b81605f48c325733be1d2f5a6fe312e39c891c +SHA1 (grepmail-5.3033.tar.gz) = 1e83dbb8067fe3a2afb6698a19a2a6e9328df825 +SHA256 (grepmail-5.3033.tar.gz) = 2ba3ed6839b62bbee5e52a5caafe0700fe27ca31473d32ba062e4736a8f7b6b5 +SIZE (grepmail-5.3033.tar.gz) = 536791
Re: UPDATE: net/ddclient
On Thu, 22 Mar 2007, Joerg Zinke wrote: new diff attached, with input from antoine and rd trush. switched to /var/db/ddclient for cache file according to hier(7). I reworked the Makefile a bit. Comments/Ok? diff -ruN --exclude CVS /usr/ports/net/ddclient/Makefile ddclient/Makefile --- /usr/ports/net/ddclient/MakefileFri Oct 14 09:58:11 2005 +++ ddclient/Makefile Thu Mar 22 18:49:48 2007 @@ -2,11 +2,13 @@ COMMENT= "Dynamic DNS service update client" -DISTNAME= ddclient-3.6.6 +DISTNAME= ddclient-3.7.1 CATEGORIES=net HOMEPAGE= http://ddclient.sourceforge.net/ +MAINTAINER=Joerg Zinke <[EMAIL PROTECTED]> + # GPL PERMIT_PACKAGE_CDROM= Yes PERMIT_PACKAGE_FTP=Yes @@ -15,15 +17,28 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ddclient/} +RUN_DEPENDS= :p5-IO-Socket-SSL-*:security/p5-IO-Socket-SSL + NO_BUILD= Yes NO_REGRESS=Yes PKG_ARCH= * -do-install: +SAMPLES= sample-etc_cron.d_ddclient sample-etc_ddclient.conf \ + sample-etc_dhclient-exit-hooks sample-etc_dhcpc_dhcpcd-eth0.exe \ + sample-etc_ppp_ip-up.local + +post-extract: + @perl -pi -e "s,/var/cache/ddclient/,/var/db/ddclient/,g;" \ + -e "s,/etc/ddclient/,${SYSCONFDIR}/ddclient/,g" \ + ${WRKSRC}/ddclient + +do-install: ${INSTALL_SCRIPT} ${WRKSRC}/ddclient ${PREFIX}/sbin/ ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ddclient ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ddclient - ${INSTALL_DATA} ${WRKSRC}/sample* ${PREFIX}/share/examples/ddclient ${INSTALL_DATA} ${WRKSRC}/README* ${PREFIX}/share/doc/ddclient +.for i in ${SAMPLES} + ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/examples/ddclient +.endfor .include diff -ruN --exclude CVS /usr/ports/net/ddclient/distinfo ddclient/distinfo --- /usr/ports/net/ddclient/distinfoFri Oct 14 09:58:11 2005 +++ ddclient/distinfo Thu Mar 22 18:44:05 2007 @@ -1,4 +1,5 @@ -MD5 (ddclient-3.6.6.tar.gz) = 9bdc93c0352c5fcc650773da7ecedb6d -RMD160 (ddclient-3.6.6.tar.gz) = 6f1cbc1cc41a8d646f35d91ae57595cc797422cc -SHA1 (ddclient-3.6.6.tar.gz) = 1f079518cc85917df53088744d6ed5fa63bd806b -SIZE (ddclient-3.6.6.tar.gz) = 36726 +MD5 (ddclient-3.7.1.tar.gz) = 04b97210581cebfeb8e1916dcab3f64e +RMD160 (ddclient-3.7.1.tar.gz) = 3ba0109ef7c0b43e41c2bf86d5014271385e5047 +SHA1 (ddclient-3.7.1.tar.gz) = 9b328492cc7c3131a9c3c9a3fd10ffcaede0331c +SHA256 (ddclient-3.7.1.tar.gz) = 2665d7ae7c0334c86e8c0dd217da434c709081caad229fb4940906dfc078f1d6 +SIZE (ddclient-3.7.1.tar.gz) = 41355 diff -ruN --exclude CVS /usr/ports/net/ddclient/pkg/PLIST ddclient/pkg/PLIST --- /usr/ports/net/ddclient/pkg/PLIST Fri Oct 14 09:58:11 2005 +++ ddclient/pkg/PLIST Thu Mar 22 18:52:05 2007 @@ -3,6 +3,7 @@ share/doc/ddclient/ share/doc/ddclient/README share/doc/ddclient/README.cisco +share/doc/ddclient/README.ssl share/examples/ddclient/ @sample ${SYSCONFDIR}/ddclient/ share/examples/ddclient/sample-etc_cron.d_ddclient @@ -11,6 +12,4 @@ share/examples/ddclient/sample-etc_dhclient-exit-hooks share/examples/ddclient/sample-etc_dhcpc_dhcpcd-eth0.exe share/examples/ddclient/sample-etc_ppp_ip-up.local -share/examples/ddclient/sample-etc_rc.d_init.d_ddclient -share/examples/ddclient/sample-etc_rc.d_init.d_ddclient.lsb -share/examples/ddclient/sample-etc_rc.d_init.d_ddclient.redhat [EMAIL PROTECTED] /var/db/ddclient/ -- Antoine
Re: NEW: mail/p5-Mail-Mbox-MessageParser-1.5000
On Mon, Mar 19, 2007 at 07:36:35PM +0100, Giovanni Bechis wrote: > A perl module to parse mbox folders. > Needed by grepmail-5.*. > Giovanni I've changed BUILD_DEPENDS to RUN_DEPENDS and vice versa, adjusted COMMENT, DESCR and added $OpenBSD$ marker. Please test and comment. Kind regards, Simon p5-Mail-Mbox-MessageParser.tar.gz Description: application/tar-gz
Re: UPDATE: net/ddclient
On Thu, 22 Mar 2007 11:34:44 +0100 (CET) Antoine Jacoutot <[EMAIL PROTECTED]> wrote: > On Thu, 22 Mar 2007, Joerg Zinke wrote: > > this port has no maintainer actually. since i use it regulary i > > would take care of it... > > It looks fine, but do we really need all those sample-etc_rc.d_init.d > examples? no, removed. > Also, ddclient should use $SYSCONFDIR instead of hard coded /etc: > my $etc = ($program =~ /test/i) ? './' : '/etc/ddclient/' > yes, good hint. new diff attached, with input from antoine and rd trush. switched to /var/db/ddclient for cache file according to hier(7). regards, joerg ddclient.diff Description: Binary data
Re: new: xbomber
On Tue, Mar 20, 2007 at 10:30:20PM +0100, Jasper Lievisse Adriaanse wrote: > hi, > > X-Bomber is a multiplayer game for the X-Window system. The concept is > loosely based on the game "Super Bomberman" for the Super Nintendo > game system. > > in case someone is bored ;) > > http://humppa.nl/~jasper/xbomber.tgz and attached. > ok? > > cheers, > jasper > > -- > ``This statement is false'' > NedBSD: http://nedbsd.eu Nice game to kill some time, only problem: [EMAIL PROTECTED] /usr/ports/games/xbomber # make regress ===> Regression check for xbomber-0.8 make: don't know how to make regress. Stop in /usr/ports/games/xbomber/w-xbomber-0.8/xbomber. *** Error code 2 Stop in /usr/ports/games/xbomber (line 2141 of /usr/ports/infrastructure/mk/bsd.port.mk). Exit 1 This fixes it: --- Makefile.orig Thu Mar 22 16:31:49 2007 +++ MakefileThu Mar 22 16:31:59 2007 @@ -18,6 +18,7 @@ MASTER_SITES= ftp://ftp.billsgames.com/unix/x/xbomber/ USE_X11= Yes +NO_REGRESS=Yes WRKDIST= ${WRKDIR}/xbomber MAKE_FILE= makefile Regards, ahb
Re: new: xbomber
On Tue, Mar 20, 2007 at 10:30:20PM +0100, Jasper Lievisse Adriaanse wrote: > hi, > > X-Bomber is a multiplayer game for the X-Window system. The concept is > loosely based on the game "Super Bomberman" for the Super Nintendo > game system. > > in case someone is bored ;) > > http://humppa.nl/~jasper/xbomber.tgz and attached. > ok? > > cheers, > jasper > > -- > ``This statement is false'' > NedBSD: http://nedbsd.eu I forgot, tested on i386 + xenocara. Regards, ahb
Re: NEW: irssi-silc-1.0.4.1
On Wed, 21 Mar 2007 15:33:49 +0200 (EET) Martynas Venckus <[EMAIL PROTECTED]> wrote: > This is the security update of the irssi-silc-1.0.3 i've sent two > months ago. > > http://www.altroot.org/irssi-silc.tar.gz > > It's ready to go in, and does not conflict with silc-client after > the recent commit. > works for me i386 + amd64
Re: UPDATE: net/ddclient
On Thu, 22 Mar 2007, Joerg Zinke wrote: this port has no maintainer actually. since i use it regulary i would take care of it... It looks fine, but do we really need all those sample-etc_rc.d_init.d examples? Also, ddclient should use $SYSCONFDIR instead of hard coded /etc: my $etc = ($program =~ /test/i) ? './' : '/etc/ddclient/' -- Antoine
UPDATE: net/ddclient
hi, minor update of ddclient to latest release, with ssl-suppport now. changelog: https://svn.sourceforge.net/svnroot/ddclient/trunk/svn/Changelog this port has no maintainer actually. since i use it regulary i would take care of it... regards joerg ddclient.diff Description: Binary data
Re: UPDATE: mail/grepmail 4.80 -> 5.3033
On Mon, Mar 19, 2007 at 07:42:42PM +0100, Giovanni Bechis wrote: > Update to latest version of Grepmail: > I have created a better diff. Ok ? Giovanni diff -urNx CVS mail/grepmail/Makefile mystuff/mail/grepmail/Makefile --- mail/grepmail/Makefile Sat Jan 13 17:06:37 2007 +++ mystuff/mail/grepmail/Makefile Wed Mar 21 23:24:26 2007 @@ -1,7 +1,7 @@ # $OpenBSD: Makefile,v 1.14 2006/11/12 23:28:42 jcs Exp $ -DISTNAME= grepmail-4.80 -PKGNAME= ${DISTNAME}p0 +DISTNAME= grepmail-5.3033 +PKGNAME= ${DISTNAME} CATEGORIES=mail perl5 # GPL @@ -14,13 +14,14 @@ HOMEPAGE= http://grepmail.sourceforge.net/ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=grepmail/} -RUN_DEPENDS= :p5-Time-TimeDate-*:devel/p5-Time-TimeDate \ +BUILD_DEPENDS= :p5-Time-TimeDate-*:devel/p5-Time-TimeDate \ :p5-DateManip-*:converters/p5-DateManip \ + :p5-Benchmark-Timer-*:devel/p5-Benchmark-Timer \ + :p5-FileHandle-Unget-*:devel/p5-FileHandle-Unget + +RUN_DEPENDS= ${BUILD_DEPENDS} \ :bzip2-*:archivers/bzip2 -BUILD_DEPENDS= :p5-Time-TimeDate-*:devel/p5-Time-TimeDate \ - :p5-DateManip-*:converters/p5-DateManip CONFIGURE_STYLE= perl -CONFIGURE_ARGS=FASTREADER=0 .include diff -urNx CVS mail/grepmail/distinfo mystuff/mail/grepmail/distinfo --- mail/grepmail/distinfo Sat Jan 13 17:06:37 2007 +++ mystuff/mail/grepmail/distinfo Fri Mar 16 14:33:43 2007 @@ -1,4 +1,5 @@ -MD5 (grepmail-4.80.tar.gz) = 846558ef1fcca841f0b4fd455cf3ac11 -RMD160 (grepmail-4.80.tar.gz) = 7752449d26339e43795310f5a271fe0518e2f7bc -SHA1 (grepmail-4.80.tar.gz) = 16e085376f68497eeac6f37e2d0019c9b02951d0 -SIZE (grepmail-4.80.tar.gz) = 714739 +MD5 (grepmail-5.3033.tar.gz) = 83f94e253ccb02fde9a207d7f23c9cd2 +RMD160 (grepmail-5.3033.tar.gz) = 03b81605f48c325733be1d2f5a6fe312e39c891c +SHA1 (grepmail-5.3033.tar.gz) = 1e83dbb8067fe3a2afb6698a19a2a6e9328df825 +SHA256 (grepmail-5.3033.tar.gz) = 2ba3ed6839b62bbee5e52a5caafe0700fe27ca31473d32ba062e4736a8f7b6b5 +SIZE (grepmail-5.3033.tar.gz) = 536791
NEW: archivers/p5-Compress-Raw-Zlib
Compress::Raw::Zlib is a perl interface to zlib. This module is needed by the new version (2.004) of Compress::Zlib I am working on. Ok ? Comments ? Giovanni p5-Compress-Raw-Zlib.tgz Description: application/tar-gz