summaryrefslogtreecommitdiff
path: root/net/lopster
diff options
context:
space:
mode:
authorhubertf <hubertf>2001-03-28 02:35:37 +0000
committerhubertf <hubertf>2001-03-28 02:35:37 +0000
commit85d724a0bc0e141bacfefb9aaad349efc1a6b41a (patch)
tree444a082773dc4a9fdf51aa54fa0f93de2bf08bc5 /net/lopster
parente79b9f2f07f4e09e63318bbebc95354bc23b543e (diff)
downloadpkgsrc-85d724a0bc0e141bacfefb9aaad349efc1a6b41a.tar.gz
Update lopster to 0.9.8. Changes:
* Download bandwidth limitation * Detachable windows * etc.
Diffstat (limited to 'net/lopster')
-rw-r--r--net/lopster/Makefile13
-rw-r--r--net/lopster/files/patch-sum7
-rw-r--r--net/lopster/patches/patch-aa10
-rw-r--r--net/lopster/patches/patch-ab11
-rw-r--r--net/lopster/patches/patch-ac11
-rw-r--r--net/lopster/patches/patch-ad13
-rw-r--r--net/lopster/pkg/PLIST5
7 files changed, 58 insertions, 12 deletions
diff --git a/net/lopster/Makefile b/net/lopster/Makefile
index 9446e7635d5..b7916658d2e 100644
--- a/net/lopster/Makefile
+++ b/net/lopster/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2001/02/17 18:19:05 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2001/03/28 02:35:37 hubertf Exp $
#
-DISTNAME= lopster-0.9.7.2
+DISTNAME= lopster-0.9.8
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=lopster/}
@@ -12,8 +12,13 @@ COMMENT= Yet another Gtk+ Napster clone
DEPENDS+= glib>=1.2.0:../../devel/glib
DEPENDS+= gtk+>=1.2.8:../../x11/gtk
-USE_X11BASE= YES
-USE_GMAKE= YES
+USE_X11BASE= yes
+USE_GMAKE= yes
GNU_CONFIGURE= # defined
+USE_INTL= yes
+CC+= -I${LOCALBASE}/include # libintl headers
+
+post-extract:
+ ${RM} -fr ${WRKSRC}/intl
.include "../../mk/bsd.pkg.mk"
diff --git a/net/lopster/files/patch-sum b/net/lopster/files/patch-sum
index 4f1a59fb87c..6eb637b7c46 100644
--- a/net/lopster/files/patch-sum
+++ b/net/lopster/files/patch-sum
@@ -1,3 +1,6 @@
-$NetBSD: patch-sum,v 1.1.1.1 2001/01/28 19:16:03 ad Exp $
+$NetBSD: patch-sum,v 1.2 2001/03/28 02:35:38 hubertf Exp $
-MD5 (patch-aa) = ffd96401cb783aab7edae4097b490722
+SHA1 (patch-aa) = af5318b45a71c703d54cafba457c0249abbe8653
+SHA1 (patch-ab) = 7a33ce153f5cecc10e7899241d24c3c66f5f2d4a
+SHA1 (patch-ac) = 08204be9c9d8279148a36c175763bf360587bc81
+SHA1 (patch-ad) = 0ffba4b3a04ff6cf471158920165aac2bcaef65e
diff --git a/net/lopster/patches/patch-aa b/net/lopster/patches/patch-aa
index 7102ee955cd..58da972dd1b 100644
--- a/net/lopster/patches/patch-aa
+++ b/net/lopster/patches/patch-aa
@@ -1,10 +1,10 @@
-$NetBSD: patch-aa,v 1.1.1.1 2001/01/28 19:16:03 ad Exp $
+$NetBSD: patch-aa,v 1.2 2001/03/28 02:35:38 hubertf Exp $
---- src/resume.c.orig Sun Jan 28 18:56:29 2001
-+++ src/resume.c Sun Jan 28 18:56:38 2001
-@@ -386,7 +386,7 @@
+--- src/resume.c.orig Tue Feb 13 22:03:14 2001
++++ src/resume.c
+@@ -391,7 +391,7 @@
if (stat(resume->filename, &st) < 0) {
- strcpy(text, "non existent");
+ strcpy(text, _("not existent"));
} else {
- sprintf(text, "%lu", st.st_size);
+ sprintf(text, "%lu", (u_long)st.st_size);
diff --git a/net/lopster/patches/patch-ab b/net/lopster/patches/patch-ab
new file mode 100644
index 00000000000..40749d5cab8
--- /dev/null
+++ b/net/lopster/patches/patch-ab
@@ -0,0 +1,11 @@
+$NetBSD: patch-ab,v 1.1 2001/03/28 02:35:38 hubertf Exp $
+
+--- src/handler.c.orig Tue Feb 13 17:14:20 2001
++++ src/handler.c
+@@ -1,3 +1,6 @@
++#ifdef __NetBSD__
++#include <sys/types.h>
++#endif
+ #include <sys/socket.h>
+ #include <netinet/in.h>
+ #include <stdlib.h>
diff --git a/net/lopster/patches/patch-ac b/net/lopster/patches/patch-ac
new file mode 100644
index 00000000000..0e8d53ee03d
--- /dev/null
+++ b/net/lopster/patches/patch-ac
@@ -0,0 +1,11 @@
+$NetBSD: patch-ac,v 1.1 2001/03/28 02:35:38 hubertf Exp $
+
+--- src/browse.c.orig Mon Feb 12 21:50:55 2001
++++ src/browse.c
+@@ -1,3 +1,6 @@
++#ifndef __NetBSD_
++#include <sys/types.h>
++#endif
+ #include <sys/socket.h>
+ #include <sys/types.h>
+ #include <stdio.h>
diff --git a/net/lopster/patches/patch-ad b/net/lopster/patches/patch-ad
new file mode 100644
index 00000000000..7961106d13c
--- /dev/null
+++ b/net/lopster/patches/patch-ad
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1 2001/03/28 02:35:38 hubertf Exp $
+
+--- Makefile.in.orig Tue Feb 13 23:58:32 2001
++++ Makefile.in
+@@ -86,7 +86,7 @@
+ VERSION = @VERSION@
+ l = @l@
+
+-SUBDIRS = src po intl
++SUBDIRS = src po #HF#intl
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = config.h
diff --git a/net/lopster/pkg/PLIST b/net/lopster/pkg/PLIST
index d00503c4911..e4875158b07 100644
--- a/net/lopster/pkg/PLIST
+++ b/net/lopster/pkg/PLIST
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2001/01/28 19:16:03 ad Exp $
+@comment $NetBSD: PLIST,v 1.2 2001/03/28 02:35:38 hubertf Exp $
bin/lopster
+lib/locale/de/LC_MESSAGES/lopster.mo
share/lopster/pixmaps/arrowd.xpm
share/lopster/pixmaps/arrowl.xpm
share/lopster/pixmaps/arrowr.xpm
@@ -15,9 +16,11 @@ share/lopster/pixmaps/folder_open.xpm
share/lopster/pixmaps/friend.xpm
share/lopster/pixmaps/home16b.xpm
share/lopster/pixmaps/ignore.xpm
+share/lopster/pixmaps/info.xpm
share/lopster/pixmaps/kfind.xpm
share/lopster/pixmaps/logo.jpg
share/lopster/pixmaps/logo.xpm
+share/lopster/pixmaps/logo1.xpm
share/lopster/pixmaps/mail16b.xpm
share/lopster/pixmaps/mini-folder.xpm
share/lopster/pixmaps/notes16.xpm