mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
. Remove www/gecko-sharp10. Its long been superseded by www/gecko-sharp20,
no other ports depend on it and it uses outdated gecko dependencies (firefox 2 and mozilla). Not objected to by: mono@
This commit is contained in:
parent
5d895511a9
commit
7b65cde5ff
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=244803
1
MOVED
1
MOVED
@ -4215,3 +4215,4 @@ x11-toolkits/xclasses||2009-11-24|Has expired: Version branch long since retired
|
||||
mail/p5-Email-MIME-Creator||2009-11-24|Folded into p5-Email-MIME package
|
||||
mail/p5-Email-MIME-Modifier||2009-11-24|Folded into p5-Email-MIME package
|
||||
mail/p5-Email-Simple-Creator||2009-11-24|Folded into p5-Email-Simple package
|
||||
www/gecko-sharp10|www/gecko-sharp20|2009-11-26|Superseded by later version
|
||||
|
@ -249,7 +249,6 @@
|
||||
SUBDIR += gallery3
|
||||
SUBDIR += gatling
|
||||
SUBDIR += gecko-mediaplayer
|
||||
SUBDIR += gecko-sharp10
|
||||
SUBDIR += gecko-sharp20
|
||||
SUBDIR += geeklog
|
||||
SUBDIR += geneweb
|
||||
|
@ -1,27 +0,0 @@
|
||||
# New ports collection makefile for: gecko-sharp
|
||||
# Date created: 20040825
|
||||
# Whom: Tom McLaughlin <tmclaugh@sdf.lonestar.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
# $Id: Makefile,v 1.14 2006/10/26 05:34:40 tmclau02 Exp $
|
||||
#
|
||||
|
||||
PORTNAME= gecko-sharp
|
||||
PORTVERSION= 0.6
|
||||
PORTREVISION= 12
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://ftp.novell.com/pub/mono/sources/gecko-sharp/
|
||||
|
||||
MAINTAINER= bsd-sharp@googlegroups.com
|
||||
COMMENT= Mono bindings for embeding mozilla
|
||||
|
||||
USE_GECKO= firefox mozilla
|
||||
USE_GNOME= gnomehack gnometarget gtksharp10
|
||||
LATEST_LINK= gecko-sharp10
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
|
||||
.include "${.CURDIR}/../../lang/mono/bsd.mono.mk"
|
||||
.include <bsd.port.pre.mk>
|
||||
.include "${.CURDIR}/../../www/mozilla/bsd.gecko.mk"
|
||||
.include <bsd.port.post.mk>
|
@ -1,3 +0,0 @@
|
||||
MD5 (gecko-sharp-0.6.tar.gz) = 9ce9bb08125f7c7eecf8bd696a3345bd
|
||||
SHA256 (gecko-sharp-0.6.tar.gz) = ff967dc9d1144041712fdf2d5a88022ca6a31e86f8f2bba7c50cf051cf1bdeb6
|
||||
SIZE (gecko-sharp-0.6.tar.gz) = 110979
|
@ -1,24 +0,0 @@
|
||||
--- gtkmozembed/Makefile.in.orig Tue Sep 21 22:51:02 2004
|
||||
+++ gtkmozembed/Makefile.in Tue Sep 21 22:54:11 2004
|
||||
@@ -262,16 +262,16 @@
|
||||
|
||||
gecko-sharp.dll: $(build_sources) generated-stamp gecko-sharp.snk
|
||||
$(MCS) --unsafe --target library -L $(GTKSHARP_PREFIX)/lib \
|
||||
- /pkg:gtk-sharp \
|
||||
+ `pkg-config --libs gtk-sharp` \
|
||||
$(build_sources) generated/*.cs -o gecko-sharp.dll
|
||||
|
||||
install-data-local:
|
||||
- echo "$(GACUTIL) /i $(ASSEMBLY) /f /package gecko-sharp /root $(DESTDIR)$(libdir)"; \
|
||||
- $(GACUTIL) /i $(ASSEMBLY) /f /package gecko-sharp /root $(DESTDIR)$(libdir) || exit 1;
|
||||
+ echo "$(GACUTIL) /i $(ASSEMBLY) /f /package gecko-sharp /root $(DESTDIR)$(libdir) /gacdir $(DESTDIR)$(libdir)"; \
|
||||
+ $(GACUTIL) /i $(ASSEMBLY) /f /package gecko-sharp /root $(DESTDIR)$(libdir) /gacdir $(DESTDIR)$(libdir) || exit 1;
|
||||
|
||||
uninstall-local:
|
||||
- echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package gecko-sharp /root $(DESTDIR)$(libdir)"; \
|
||||
- $(GACUTIL) /u $(ASSEMBLY_NAME) /package gecko-sharp /root $(DESTDIR)$(libdir) || exit 1;
|
||||
+ echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package gecko-sharp /root $(DESTDIR)$(libdir) /gacdir $(DESTDIR)$(libdir)"; \
|
||||
+ $(GACUTIL) /u $(ASSEMBLY_NAME) /package gecko-sharp /root $(DESTDIR)$(libdir) /gacdir $(DESTDIR)$(libdir) || exit 1;
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
@ -1,19 +0,0 @@
|
||||
--- sample/Makefile.in.orig Sat Aug 28 00:22:09 2004
|
||||
+++ sample/Makefile.in Sat Aug 28 00:24:05 2004
|
||||
@@ -274,14 +274,14 @@
|
||||
-L @top_builddir@/gtkmozembed \
|
||||
-r gecko-sharp.dll \
|
||||
-L $(GTKSHARP_PREFIX)/lib \
|
||||
- -pkg:gtk-sharp \
|
||||
+ `pkg-config --libs gtk-sharp` \
|
||||
-r System.Drawing \
|
||||
-o GtkMozApp.exe $(srcdir)/GtkMozApp.cs $(srcdir)/MozWindow.cs
|
||||
|
||||
WebThumbnailer.exe: $(srcdir)/WebThumbnailer.cs
|
||||
$(MCS) -L @top_builddir@/gtkmozembed \
|
||||
-r gecko-sharp.dll \
|
||||
- -pkg:gtk-sharp $(srcdir)/WebThumbnailer.cs \
|
||||
+ `pkg-config --libs gtk-sharp` $(srcdir)/WebThumbnailer.cs \
|
||||
-o WebThumbnailer.exe
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
@ -1,2 +0,0 @@
|
||||
C# language binding for the gtkembedmoz widget. You can use it to embed
|
||||
mozilla into C# programs.
|
@ -1,10 +0,0 @@
|
||||
bin/webshot
|
||||
lib/gecko-sharp/WebThumbnailer.exe
|
||||
lib/mono/gac/gecko-sharp/1.0.0.0__ccf7d78a55e9f021/gecko-sharp.dll
|
||||
lib/mono/gac/gecko-sharp/1.0.0.0__ccf7d78a55e9f021/gecko-sharp.dll.config
|
||||
lib/mono/gecko-sharp/gecko-sharp.dll
|
||||
libdata/pkgconfig/gecko-sharp.pc
|
||||
@dirrm lib/mono/gecko-sharp
|
||||
@dirrm lib/mono/gac/gecko-sharp/1.0.0.0__ccf7d78a55e9f021
|
||||
@dirrm lib/mono/gac/gecko-sharp
|
||||
@dirrm lib/gecko-sharp
|
Loading…
Reference in New Issue
Block a user