diff options
Diffstat (limited to 'ports-mgmt/bpm')
-rw-r--r-- | ports-mgmt/bpm/Makefile | 25 | ||||
-rw-r--r-- | ports-mgmt/bpm/distinfo | 2 | ||||
-rw-r--r-- | ports-mgmt/bpm/files/patch-src::refresh.c | 53 | ||||
-rw-r--r-- | ports-mgmt/bpm/pkg-descr | 17 | ||||
-rw-r--r-- | ports-mgmt/bpm/pkg-plist | 14 |
5 files changed, 0 insertions, 111 deletions
diff --git a/ports-mgmt/bpm/Makefile b/ports-mgmt/bpm/Makefile deleted file mode 100644 index ec5dbddb4bb7..000000000000 --- a/ports-mgmt/bpm/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: bpm -# Date created: 23 July 2004 -# Whom: sethk -# -# $FreeBSD$ -# - -PORTNAME= bpm -PORTVERSION= 0.4.1b -PORTREVISION= 3 -CATEGORIES= sysutils -MASTER_SITES= http://www.meowfishies.com/code/bpm/ -EXTRACT_SUFX= .tgz - -MAINTAINER= sethk@meowfishies.com -COMMENT= A graphical BSD ports collection manager - -RUN_DEPENDS= portupgrade:${PORTSDIR}/sysutils/portupgrade - -USE_X_PREFIX= yes -USE_GNOME= gtk20 - -MAKE_ENV+= OSTYPE="${OPSYS}" - -.include <bsd.port.mk> diff --git a/ports-mgmt/bpm/distinfo b/ports-mgmt/bpm/distinfo deleted file mode 100644 index 808dc6d1e368..000000000000 --- a/ports-mgmt/bpm/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (bpm-0.4.1b.tgz) = 2704ba7b6f6935a93b2973aa0e82028d -SIZE (bpm-0.4.1b.tgz) = 98457 diff --git a/ports-mgmt/bpm/files/patch-src::refresh.c b/ports-mgmt/bpm/files/patch-src::refresh.c deleted file mode 100644 index be123be85578..000000000000 --- a/ports-mgmt/bpm/files/patch-src::refresh.c +++ /dev/null @@ -1,53 +0,0 @@ ---- src/refresh.c.orig Tue Aug 24 02:40:08 2004 -+++ src/refresh.c Tue Oct 12 12:31:32 2004 -@@ -62,7 +62,11 @@ - __RCSID("$Id: refresh.c,v 1.32 2004/08/24 02:40:08 sethk Exp $"); - - /* XXX use libinstall/lib.h */ -+#if __FreeBSD_version >= 500036 -+#define INDEX_FN PORTS_BASE "/INDEX-5" -+#else - #define INDEX_FN PORTS_BASE "/INDEX" -+#endif - #define INDEX_MAXLN 4096 - #define DB_DIR "/var/db/pkg" - #define ITER_BYTES (128 * 1024) -@@ -183,10 +187,12 @@ - if (*sp == '|') - ++i; - -- if (i != (PFIELD_NFIELD - 1)) -+ if (i < (PFIELD_NFIELD - 1)) - { - #ifdef DEBUG -- warnx("invalid number of fields"); -+ warnx("invalid number of fields (%d should be %d)", -+ i + 1, -+ PFIELD_NFIELD); - #endif /* DEBUG */ - return FALSE; - } -@@ -195,12 +201,9 @@ - - for (i = 0; i < PFIELD_NFIELD; ++i) - { -- if (i < PFIELD_NFIELD - 1) -- { -- if (!(sp = strchr(line, '|'))) -- break; -- *sp++ = '\0'; -- } -+ if (!(sp = strchr(line, '|')) && i < PFIELD_NFIELD - 1) -+ break; -+ *sp++ = '\0'; - - switch (i) - { -@@ -320,7 +323,6 @@ - - if (_refresh_index_parse(ln, portdp, rdp) != TRUE) - { -- _refresh_portfree(portdp); - #ifdef DEBUG - warnx("%s:%u: invalid format", INDEX_FN, rdp->rd_linec); - #endif /* DEBUG */ diff --git a/ports-mgmt/bpm/pkg-descr b/ports-mgmt/bpm/pkg-descr deleted file mode 100644 index 8400a536e1f0..000000000000 --- a/ports-mgmt/bpm/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -BSD Ports Manipuator (BPM) is a graphical ports collection manager for -FreeBSD. It has a GTK+ 2.0 interface and allows you to add, remove, or -upgrade software packages on your system without requiring you to use a -command-line. In addition, it can display details about available, -installed, and out-of-date ports, as well as allowing you to search -based on port descriptions. - -BPM uses the existing ports collection structure, allowing it to build -ports from source and integrate seamlessly with other tools. - -This project started out as a clone of Ports Manager.app for -DarwinPorts. - -WWW: http://www.meowfishies.com/bpm.rhtml - -- Seth -sethk@meowfishies.com diff --git a/ports-mgmt/bpm/pkg-plist b/ports-mgmt/bpm/pkg-plist deleted file mode 100644 index fe24b9008851..000000000000 --- a/ports-mgmt/bpm/pkg-plist +++ /dev/null @@ -1,14 +0,0 @@ -bin/bpm -bin/gtk-su -libexec/bpm/term -libexec/bpm/fetch-wrapper -%%DATADIR%%/pixmaps/term_16.png -%%DATADIR%%/pixmaps/term_24.png -%%DATADIR%%/pixmaps/pkg_16.png -%%DATADIR%%/pixmaps/pkg_24.png -%%DATADIR%%/pixmaps/pkg_48.png -%%DATADIR%%/pixmaps/lock_48.png -share/locale/en_CA/LC_MESSAGES/bpm.mo -@dirrm libexec/bpm -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%% |