From owner-freebsd-ports Tue Nov 4 00:41:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA24601 for ports-outgoing; Tue, 4 Nov 1997 00:41:28 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (wck-ca14-30.ix.netcom.com [207.92.174.94]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA24565; Tue, 4 Nov 1997 00:41:15 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.7/8.6.9) id AAA16634; Tue, 4 Nov 1997 00:41:13 -0800 (PST) Date: Tue, 4 Nov 1997 00:41:13 -0800 (PST) Message-Id: <199711040841.AAA16634@silvia.HIP.Berkeley.EDU> To: se@freebsd.org CC: ports@freebsd.org Subject: kde* ports From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Wow! Finally finished building packages. These guys are HUGE! Thanks for the great work, Stefan! A couple of points: (1) The package names "kde*-Beta1-N" are not standard. The version numbers should be after the last dash, and strings such as "Beta" are not allowed. This will fix them: === Index: kdebase/Makefile =================================================================== RCS file: /usr/cvs/ports/x11/kdebase/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 1997/11/03 21:55:35 1.3 +++ Makefile 1997/11/04 08:32:52 @@ -7,6 +7,7 @@ # DISTNAME= kdebase-Beta1-3 +PKGNAME= kdebase-1.3b CATEGORIES= x11 MASTER_SITES= ftp://ftp.net.lut.ac.uk/kde/stable/Beta1/distribution/tgz/source/ \ ftp://ftp.uni-erlangen.de/pub/Linux/MIRROR.KDE/stable/Beta1/distribution/tgz/source/ \ Index: kdegames/Makefile =================================================================== RCS file: /usr/cvs/ports/x11/kdegames/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1997/11/03 00:25:43 1.2 +++ Makefile 1997/11/04 08:33:01 @@ -7,6 +7,7 @@ # DISTNAME= kdegames-Beta1-2 +PKGNAME= kdegames-1.2b CATEGORIES= x11 MASTER_SITES= ftp://ftp.net.lut.ac.uk/kde/stable/Beta1/distribution/tgz/source/ \ ftp://ftp.uni-erlangen.de/pub/Linux/MIRROR.KDE/stable/Beta1/distribution/tgz/source/ \ Index: kdelibs/Makefile =================================================================== RCS file: /usr/cvs/ports/x11/kdelibs/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1997/11/03 00:25:44 1.2 +++ Makefile 1997/11/04 08:33:09 @@ -7,6 +7,7 @@ # DISTNAME= kdelibs-Beta1-2 +PKGNAME= kdelibs-1.2b CATEGORIES= x11 MASTER_SITES= ftp://ftp.net.lut.ac.uk/kde/stable/Beta1/distribution/tgz/source/ \ ftp://ftp.uni-erlangen.de/pub/Linux/MIRROR.KDE/stable/Beta1/distribution/tgz/source/ \ Index: kdenetwork/Makefile =================================================================== RCS file: /usr/cvs/ports/x11/kdenetwork/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1997/11/03 22:21:11 1.2 +++ Makefile 1997/11/04 08:33:17 @@ -7,6 +7,7 @@ # DISTNAME= kdenetwork-Beta1-2 +PKGNAME= kdenetwork-1.2b CATEGORIES= x11 MASTER_SITES= ftp://ftp.net.lut.ac.uk/kde/stable/Beta1/distribution/tgz/source/ \ ftp://ftp.uni-erlangen.de/pub/Linux/MIRROR.KDE/stable/Beta1/distribution/tgz/source/ \ Index: kdesupport/Makefile =================================================================== RCS file: /usr/cvs/ports/x11/kdesupport/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- Makefile 1997/11/03 00:36:01 1.1.1.1 +++ Makefile 1997/11/04 08:33:26 @@ -7,6 +7,7 @@ # DISTNAME= kdesupport-Beta1-2 +PKGNAME= kdesupport-1.2b CATEGORIES= x11 MASTER_SITES= ftp://ftp.net.lut.ac.uk/kde/stable/Beta1/distribution/tgz/source/ \ ftp://ftp.uni-erlangen.de/pub/Linux/MIRROR.KDE/stable/Beta1/distribution/tgz/source/ \ Index: kdeutils/Makefile =================================================================== RCS file: /usr/cvs/ports/x11/kdeutils/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1997/11/03 00:25:44 1.2 +++ Makefile 1997/11/04 08:33:34 @@ -7,6 +7,7 @@ # DISTNAME= kdeutils-Beta1-2 +PKGNAME= kdeutils-1.2b-2 CATEGORIES= x11 MASTER_SITES= ftp://ftp.net.lut.ac.uk/kde/stable/Beta1/distribution/tgz/source/ \ ftp://ftp.uni-erlangen.de/pub/Linux/MIRROR.KDE/stable/Beta1/distribution/tgz/source/ \ === (2) Putting everything in "x11" goes against our categorizing policy. From what I can tell, kdegames should go in "games", kdenetwork in "net", kdeutils in "misc" and kdesupport in "converters" (it only has uulib and mimelib...if uulib is the same as what we already have, we might as well rename it to "mimelib" too). (3) We should probably make a meta-port "kde" that just RUN_DEPENDS on everything so users can have everything installed to get the complete kde environment. Also, we can add a virtual category "kde" to all the kde* ports so they can easily be found on the ports web page. If these are ok with you, I will make the commits and do the repository copy/auxiliary dance to have things point to the right place. Again, thanks for your (continuing) great work! Satoshi