diff options
author | Jim Mock <jim@FreeBSD.org> | 1999-08-24 09:50:50 +0000 |
---|---|---|
committer | Jim Mock <jim@FreeBSD.org> | 1999-08-24 09:50:50 +0000 |
commit | 3cc75b6de9e63bcb054f433f333257e94f83314c (patch) | |
tree | 84d50a04b86276f47476a4e3336be4d67840fc15 /www/erwn | |
parent | c7260fd68fc0e0bcbbe0c3704a40e3237ef62bf5 (diff) | |
download | ports-3cc75b6de9e63bcb054f433f333257e94f83314c.tar.gz ports-3cc75b6de9e63bcb054f433f333257e94f83314c.zip |
Notes
Diffstat (limited to 'www/erwn')
-rw-r--r-- | www/erwn/Makefile | 31 | ||||
-rw-r--r-- | www/erwn/distinfo | 1 | ||||
-rw-r--r-- | www/erwn/files/patch-aa | 24 | ||||
-rw-r--r-- | www/erwn/pkg-comment | 1 | ||||
-rw-r--r-- | www/erwn/pkg-descr | 7 | ||||
-rw-r--r-- | www/erwn/pkg-plist | 3 |
6 files changed, 67 insertions, 0 deletions
diff --git a/www/erwn/Makefile b/www/erwn/Makefile new file mode 100644 index 000000000000..018c3dac0e5e --- /dev/null +++ b/www/erwn/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: erwin +# Version required: 0.3.1 +# Date created: 31 July 1999 +# Whom: Jim Mock <jimFreeBSD.org> +# +# $Id: Makefile,v 1.2 1999/08/22 19:00:33 mharo Exp $ +# + +DISTNAME= erwin-0.3.1 +PKGNAME= erwn-0.3.1 +CATEGORIES= www editors +MASTER_SITES= http://www-stud.fht-esslingen.de/erwin/ + +MAINTAINER= jim@FreeBSD.org + +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_X_PREFIX= yes +USE_GMAKE= yes + +post-install: + @strip ${PREFIX}/bin/erwin +.if !defined(NOPORTDOCS) + @${ECHO} "===> Installing README in ${PREFIX}/share/doc/erwin" + @${MKDIR} ${PREFIX}/share/doc/erwin && ${CHMOD} a+rx ${PREFIX}/share/doc/erwin + @${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/erwin +.endif + +.include <bsd.port.mk> diff --git a/www/erwn/distinfo b/www/erwn/distinfo new file mode 100644 index 000000000000..f82f342e0935 --- /dev/null +++ b/www/erwn/distinfo @@ -0,0 +1 @@ +MD5 (erwin-0.3.1.tar.gz) = 73ea4a702ecdac15551019cd7653b289 diff --git a/www/erwn/files/patch-aa b/www/erwn/files/patch-aa new file mode 100644 index 000000000000..eb079440fd16 --- /dev/null +++ b/www/erwn/files/patch-aa @@ -0,0 +1,24 @@ +--- Makefile.orig Sat Jul 31 17:03:44 1999 ++++ Makefile Sat Jul 31 17:04:37 1999 +@@ -2,7 +2,7 @@ + bindir = $(prefix)/bin + + NAME = erwin-0.3.1 +-CC = gcc ++CC ?= gcc + PROG = erwin + OBJS = erwin.o erwinmenu.o erwinfunctions.o erwintoolbar.o \ + erwinnotebook.o erwindialogs.o erwintags.o gtkmessage.o +@@ -28,10 +28,10 @@ + rm -f $(PROG) $(OBJS) *.?~ core license.h + + $(PROG): $(OBJS) +- $(CC) $(LDFLAGS) $(shell gtk-config --libs) -o $@ $(OBJS) ++ $(CC) $(LDFLAGS) $(shell gtk12-config --libs) -o $@ $(OBJS) + + %.o: %.c +- $(CC) $(CFLAGS) $(shell gtk-config --cflags) -o $@ -c $< ++ $(CC) $(CFLAGS) $(shell gtk12-config --cflags) -o $@ -c $< + + tar: clean + cd ..; ln -s erwin $(NAME);tar cf - $(NAME)/* > $(NAME).tar;rm $(NAME);gzip -f $(NAME).tar diff --git a/www/erwn/pkg-comment b/www/erwn/pkg-comment new file mode 100644 index 000000000000..cc1bdb81b36f --- /dev/null +++ b/www/erwn/pkg-comment @@ -0,0 +1 @@ +erwin is a simple (right now) html editor based on GTK+ diff --git a/www/erwn/pkg-descr b/www/erwn/pkg-descr new file mode 100644 index 000000000000..1aa0a89ad3e6 --- /dev/null +++ b/www/erwn/pkg-descr @@ -0,0 +1,7 @@ +erwin is a simple (right now) html editor based on GTK+. The current +version of erwin allows for editing of more than one file at a time, +and also is capable of some simple syntax highlighting. + +WWW: http://www-stud.fht-esslingen.de/erwin/ + +- Jim <jim@FreeBSD.org> diff --git a/www/erwn/pkg-plist b/www/erwn/pkg-plist new file mode 100644 index 000000000000..d1683263137c --- /dev/null +++ b/www/erwn/pkg-plist @@ -0,0 +1,3 @@ +bin/erwin +share/doc/erwin/README +@dirrm share/doc/erwin |