aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaho <maho@FreeBSD.org>2005-03-25 09:43:56 +0800
committermaho <maho@FreeBSD.org>2005-03-25 09:43:56 +0800
commit1deac009347b222c5f5b0ec5d59a51eb4a2dfa5d (patch)
tree8c1c0c713a504abc4378f4590c66fb7897c24190
parent2547c1d27649575975c1d52e6c7b4f38725b185f (diff)
downloadfreebsd-ports-graphics-1deac009347b222c5f5b0ec5d59a51eb4a2dfa5d.tar.gz
freebsd-ports-graphics-1deac009347b222c5f5b0ec5d59a51eb4a2dfa5d.tar.zst
freebsd-ports-graphics-1deac009347b222c5f5b0ec5d59a51eb4a2dfa5d.zip
Fix category
Approved by: portmgr (marcus) Submitted by: kris
-rw-r--r--CVSROOT/modules1
-rw-r--r--MOVED1
-rw-r--r--science/mxp/Makefile37
-rw-r--r--science/mxp/distinfo2
-rw-r--r--science/mxp/files/patch-Makefile50
-rw-r--r--science/mxp/files/patch-lugfnts.h16
-rw-r--r--science/mxp/pkg-descr14
-rw-r--r--science/mxp/pkg-plist4
8 files changed, 1 insertions, 124 deletions
diff --git a/CVSROOT/modules b/CVSROOT/modules
index 1b6550a56ed..b16173c2d27 100644
--- a/CVSROOT/modules
+++ b/CVSROOT/modules
@@ -6156,7 +6156,6 @@ mvdsv ports/games/mvdsv
mwavem ports/comms/mwavem
mx4j ports/java/mx4j
mxico ports/x11/mxico
-mxp ports/science/mxp
mybudget ports/finance/mybudget
mydns ports/dns/mydns
mymoon ports/astro/mymoon
diff --git a/MOVED b/MOVED
index 9ad1c75d57c..df9c7ee421d 100644
--- a/MOVED
+++ b/MOVED
@@ -1436,3 +1436,4 @@ databases/py-PySQLite|databases/py-PySQLite10|2005-03-14|renamed
mail/sylpheed-gtk2|mail/sylpheed2|2005-03-16|obsoleted by official gtk2 version
x11-toolkits/bakery_gnomeui||2005-03-17|obsolete/no port need this
www/konqueror-nsplugins|x11/kdebase3|2005-03-20|moved back into kdebase3
+science/mxp|graphics/mxp|2005-03-25|fix category
diff --git a/science/mxp/Makefile b/science/mxp/Makefile
deleted file mode 100644
index f7ac17bca5c..00000000000
--- a/science/mxp/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-# New ports collection makefile for: mxp
-# Date Created: 18 March 2004
-# Whom: NAKATA Maho <maho@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= mxp
-PORTVERSION= 1.3
-CATEGORIES= science
-MASTER_SITES= ${MASTER_SITE_SUNSITE}
-MASTER_SITE_SUBDIR=apps/math/fractals
-
-MAINTAINER= maho@FreeBSD.org
-COMMENT= Application for computing/exploring Mandelbrot set
-
-WRKSRC= ${WRKDIR}/${PORTNAME}
-USE_XPM= yes
-USE_REINPLACE= yes
-ALL_TARGET=
-
-post-extract:
- @${CP} ${WRKSRC}/Makefile.noimake ${WRKSRC}/Makefile
-post-patch:
- @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \
- s|%%X11BASE%%|${X11BASE}|g ; \
- s|%%CFLAGS%%|${CFLAGS}|g ; \
- s|%%LOCALBASE%%|${LOCALBASE}|g ; \
- s|%%CC%%|${CC}|g' ${WRKSRC}/Makefile
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/mxp ${PREFIX}/bin
-.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
-.endif
-
-.include <bsd.port.mk>
diff --git a/science/mxp/distinfo b/science/mxp/distinfo
deleted file mode 100644
index 1c0ed18abcb..00000000000
--- a/science/mxp/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (mxp-1.3.tar.gz) = c53f8b91fcbb09c4ad885bb7c34d2dd0
-SIZE (mxp-1.3.tar.gz) = 43291
diff --git a/science/mxp/files/patch-Makefile b/science/mxp/files/patch-Makefile
deleted file mode 100644
index 7aa5edbf696..00000000000
--- a/science/mxp/files/patch-Makefile
+++ /dev/null
@@ -1,50 +0,0 @@
---- Makefile.orig Sat Feb 12 16:42:03 2005
-+++ Makefile Sat Feb 12 16:42:45 2005
-@@ -1,30 +1,30 @@
- # Makefile file for mxp - Mandelbrot Explorer
-
- # Compiler - uncomment for gcc
--# CC = gcc
-+CC = %%CC%%
-
- # Since this is a compute intensive program, be sure to use
- # compiler optimization. It makes a big difference.
- # For gcc on linux "-O2 -m486" works well.
--# OPT = -O2 -m486
-+OPT = %%CFLAGS%%
-
- # If X is not installed in the standard places you will need to set the
- # following 2 defines.
--XLIBS = -L/usr/openwin/lib
--XINC = -I/usr/openwin/include
-+XLIBS = -L%%X11BASE%%/lib
-+XINC = -I%%X11BASE%%/include
-
- # Specify where your Xpm installation directories are
- # If you have the XPM libraries uncomment and adjust the following lines
- # to use color icons.
--#XPM_DEF = -DXPM
--#XPM_INCLUDE = -I/usr/local/include
--#XPM_LIB = -L$(LIBDIR)/xpm -lXpm
-+XPM_DEF = -DXPM
-+XPM_INCLUDE = #-I/usr/local/include
-+XPM_LIB = -lXpm #-L$(LIBDIR)/xpm
-
- # If you are using FVWM 2.0 then the following must be set to 2
- SIZE_INC = 1
-
- # Specify install directory
--BINDIR = /usr/local/bin
-+BINDIR = %%PREFIX%%/bin
-
- INCLUDES = $(XPM_INCLUDE) $(XINC) -Ilug
-
-@@ -34,7 +34,7 @@
- OBJS = $(M_OBJS) $(L_OBJS)
-
- mxp: $(OBJS)
-- $(CC) -o $@ $(OBJS) $(XPM_LIB) -L/X/X11/lib -lm -lXaw -lXt -lXmu -lX11 -lXdmcp -lXext
-+ $(CC) -o $@ $(OBJS) $(XPM_LIB) $(XLIBS) -lm -lXaw -lXt -lXmu -lX11 -lXdmcp -lXext
-
- $(OBJS): mxp.h
-
diff --git a/science/mxp/files/patch-lugfnts.h b/science/mxp/files/patch-lugfnts.h
deleted file mode 100644
index 234b32b5d6f..00000000000
--- a/science/mxp/files/patch-lugfnts.h
+++ /dev/null
@@ -1,16 +0,0 @@
---- lug/lugfnts.h.old Sat Aug 18 13:33:46 2001
-+++ lug/lugfnts.h Sat Feb 12 16:30:29 2005
-@@ -1057,13 +1057,6 @@
- );
-
- extern int
--isnumber(
--#ifdef USE_PROTOTYPES
-- char *
--#endif
--);
--
--extern int
- Uncompress(
- #ifdef USE_PROTOTYPES
- char *,
diff --git a/science/mxp/pkg-descr b/science/mxp/pkg-descr
deleted file mode 100644
index d0b7d5ed785..00000000000
--- a/science/mxp/pkg-descr
+++ /dev/null
@@ -1,14 +0,0 @@
-Mxp (Mandelbrot explorer) is an X application for computing and exploring
-Mandelbrot sets. Features of mxp include:
- - zoom and un-zoom
- - dynamic resizing of drawing window
- - setup save/load
- - asynchronous image generation (buttons always work)
- - GIF output
- - animation
- - nine color schemes
- - color rotation
- - color change options
- - detailed statistics
-
-WWW: http://www.ibiblio.org/pub/Linux/apps/math/fractals/
diff --git a/science/mxp/pkg-plist b/science/mxp/pkg-plist
deleted file mode 100644
index dc99a7065c9..00000000000
--- a/science/mxp/pkg-plist
+++ /dev/null
@@ -1,4 +0,0 @@
-bin/mxp
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-