1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00

- Update to version 0.4.1

PR:		ports/67081
Submitted by:	Ports Fury
This commit is contained in:
Kirill Ponomarev 2004-05-23 19:06:19 +00:00
parent 29a7d898b2
commit 593f9dff95
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=109808
10 changed files with 93 additions and 28 deletions

View File

@ -7,8 +7,7 @@
#
PORTNAME= eboxy
PORTVERSION= 0.3.9
PORTREVISION= 1
PORTVERSION= 0.4.1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -16,11 +15,12 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= Create simple GUI interfaces for entertainment PC
USE_SDL= sdl gui
USE_GNOME= gnometarget libxml2
USE_BZIP2= yes
USE_SDL= sdl gui mixer
USE_GNOME= gnometarget libxml2 lthack
USE_GETOPT_LONG= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
USE_LIBTOOL_VER= 13
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS= --disable-lirc
@ -37,8 +37,10 @@ BROKEN= "Configure fails on ia64"
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-O2 $$CFLAGS|$$CFLAGS|g' ${WRKSRC}/configure
@${GREP} -lR "malloc\.h" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \
's|malloc\.h|stdlib.h|g'
@${REINPLACE_CMD} -e 's|-O2 $$CFLAGS|$$CFLAGS|g ; \
s|-O2 $$CXXFLAGS|$$CXXFLAGS|g' ${WRKSRC}/configure
pre-build:
@cd ${WRKSRC}/eboxy && ${SH} ./makeparser.sh
.include <bsd.port.post.mk>

View File

@ -1,2 +1,2 @@
MD5 (eboxy-0.3.9.tar.gz) = 8002a233edf4b30ddf553b43c883be0a
SIZE (eboxy-0.3.9.tar.gz) = 1053498
MD5 (eboxy-0.4.1.tar.bz2) = ff1086e34497053d3be317a56e161791
SIZE (eboxy-0.4.1.tar.bz2) = 815967

View File

@ -1,15 +0,0 @@
--- admin/ltmain.sh.orig Tue Oct 1 17:43:57 2002
+++ admin/ltmain.sh Sat Nov 2 17:38:55 2002
@@ -4746,10 +4746,12 @@
fi
# Install the pseudo-library for information purposes.
+ if /usr/bin/false; then
name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
instname="$dir/$name"i
$show "$install_prog $instname $destdir/$name"
$run eval "$install_prog $instname $destdir/$name" || exit $?
+ fi
# Maybe install the static library, too.
test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"

View File

@ -0,0 +1,11 @@
--- eboxy/Makefile.in.orig Thu May 20 16:46:56 2004
+++ eboxy/Makefile.in Thu May 20 21:24:26 2004
@@ -239,7 +239,7 @@
INCLUDES = $(all_includes)
# the library search path.
-eboxy_LDFLAGS = $(all_libraries) -ldl $(XML_LIBS) $(LIRC_LIBS)
+eboxy_LDFLAGS = $(all_libraries) $(XML_LIBS) $(LIRC_LIBS)
eboxy_CXXFLAGS = $(XML_CFLAGS) $(LIRC_INCLUDE)

View File

@ -0,0 +1,10 @@
--- eboxy/basewidgets/stringlist.cpp.orig Thu May 20 16:46:55 2004
+++ eboxy/basewidgets/stringlist.cpp Thu May 20 20:56:53 2004
@@ -18,6 +18,7 @@
#include <cstring>
#include <iostream>
#include <vector>
+#include <string>
#include "stringlist.h"

View File

@ -0,0 +1,10 @@
--- eboxy/conf.cpp.orig Thu May 20 16:46:55 2004
+++ eboxy/conf.cpp Thu May 20 21:23:18 2004
@@ -19,6 +19,7 @@
#include "config.h"
#endif
+#include <cstdio>
#include <vector>
#include <iostream>
#include <fstream>

View File

@ -0,0 +1,19 @@
--- eboxy/interfacemanager.cpp.orig Thu May 20 16:46:55 2004
+++ eboxy/interfacemanager.cpp Thu May 20 21:22:10 2004
@@ -16,6 +16,7 @@
***************************************************************************/
#include <iostream>
+#include <cstdio>
#include "dlfcn.h"
#include "main.h"
@@ -48,7 +49,7 @@
libhandle = dlopen(libfile, RTLD_LAZY);
if(libhandle == 0) {
// Load failed
- char *errorstr = dlerror();
+ const char *errorstr = dlerror();
cerr << "InterfaceManager: Couldn't load interface plugin " << libfile << endl;
cerr << errorstr << endl;
return EBERR_DLOPEN_FAILED; // Failed to load library

View File

@ -0,0 +1,10 @@
--- eboxy/processobject.cpp.orig Thu May 20 16:46:55 2004
+++ eboxy/processobject.cpp Thu May 20 21:14:22 2004
@@ -16,6 +16,7 @@
***************************************************************************/
#include <iostream>
+#include <string>
#include <cstring>
#include <cstdio>
#include <cstdlib>

View File

@ -0,0 +1,10 @@
--- eboxy/script_bison.ypp.orig Thu May 20 16:46:55 2004
+++ eboxy/script_bison.ypp Thu May 20 21:20:13 2004
@@ -24,6 +24,7 @@
#include <cstring>
#include <cmath>
#include <string>
+#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <map>

View File

@ -2,9 +2,17 @@ bin/eboxy
include/eboxy/eboxyplugin.h
include/eboxy/pluginconstants.h
include/eboxy/plugintypes.h
lib/eboxy/filebrowser.so
lib/eboxy/libbasewidgets.a
lib/eboxy/libbasewidgets.so
lib/eboxy/libbasewidgets.so.0
lib/eboxy/plugins/generic/filebrowser.so
lib/eboxy/plugins/generic/simplemusic.so
lib/eboxy/plugins/interface/libsdl_gui.so
lib/libeboxyplugin.a
share/eboxy/eboxy.dtd
@dirrm share/eboxy
%%DATADIR%%/eboxy.dtd
@dirrm %%DATADIR%%
@dirrm lib/eboxy/plugins/interface
@dirrm lib/eboxy/plugins/generic
@dirrm lib/eboxy/plugins
@dirrm lib/eboxy
@dirrm include/eboxy