mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
- Add patch-Makefile.buildvars to add ${LOCALBASE}/include to INCLUDEDIRS
(port did not build with ORBit ports >= 0.5.10). - GNU_CONFIGURE -> USE_AUTOMAKE, in order to incorporate variables from Makefile.buildvars in Makefiles. - Move removal of "test" directory from Makefile.in to Makefile.am, to accommodate the fact that we're now using automake: Remove patch-Makefile.in and add patch-Makefile.am. - Expand pkg-descr a bit. - Alphabetise pkg-plist and add directories. - Bump PORTREVISION.
This commit is contained in:
parent
10e49a0dbc
commit
c0ebbd3943
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=50040
6 changed files with 42 additions and 30 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= orbitcpp
|
||||
PORTVERSION= 0.30.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= orbitcpp
|
||||
|
@ -17,7 +18,7 @@ LIB_DEPENDS= ORBit.2:${PORTSDIR}/devel/ORBit
|
|||
|
||||
USE_GMAKE= yes
|
||||
USE_GLIB= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_AUTOMAKE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
11
devel/orbitcpp/files/patch-Makefile.am
Normal file
11
devel/orbitcpp/files/patch-Makefile.am
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- Makefile.am.orig Fri Feb 9 01:17:50 2001
|
||||
+++ Makefile.am Thu Nov 15 11:00:58 2001
|
||||
@@ -3,7 +3,7 @@
|
||||
# remove tests from global 'make' target if we don't have
|
||||
# orbit-idl --backenddir=<foo>
|
||||
if HAVE_ORBIT_IDL_BACKENDDIR
|
||||
-SUBDIRS=compiler orb services test
|
||||
+SUBDIRS=compiler orb services
|
||||
else
|
||||
SUBDIRS=compiler orb
|
||||
endif
|
8
devel/orbitcpp/files/patch-Makefile.buildvars
Normal file
8
devel/orbitcpp/files/patch-Makefile.buildvars
Normal file
|
@ -0,0 +1,8 @@
|
|||
--- Makefile.buildvars.orig Thu Apr 5 11:57:48 2001
|
||||
+++ Makefile.buildvars Thu Nov 15 11:04:56 2001
|
||||
@@ -1,4 +1,4 @@
|
||||
-INCLUDES= -I$(top_builddir) -I$(top_srcdir) $(ORBIT_CFLAGS)
|
||||
+INCLUDES= -I$(top_builddir) -I$(top_srcdir) -I${LOCALBASE}/include $(ORBIT_CFLAGS)
|
||||
# -ansi and -pedantic suck because of many superfluous warnings.
|
||||
FLAGS = -Wall
|
||||
CFLAGS = -g -O0 $(FLAGS)
|
|
@ -1,23 +0,0 @@
|
|||
|
||||
$FreeBSD$
|
||||
|
||||
--- Makefile.in Wed May 23 01:52:34 2001
|
||||
+++ Makefile.in Thu Aug 30 19:57:42 2001
|
||||
@@ -92,7 +92,7 @@
|
||||
idlbackenddir = @idlbackenddir@
|
||||
|
||||
AUTOMAKE_OPTIONS = 1.4 # required version of automake.
|
||||
-@HAVE_ORBIT_IDL_BACKENDDIR_TRUE@SUBDIRS = compiler orb services test
|
||||
+@HAVE_ORBIT_IDL_BACKENDDIR_TRUE@SUBDIRS = compiler orb services
|
||||
@HAVE_ORBIT_IDL_BACKENDDIR_FALSE@SUBDIRS = compiler orb
|
||||
EXTRA_DIST = HACKING FAQ README README-0.30 orbitcpp.m4 Makefile.buildvars #KNOWN-BUGS
|
||||
|
||||
@@ -118,7 +118,7 @@
|
||||
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
-DIST_SUBDIRS = compiler orb services test compiler orb
|
||||
+DIST_SUBDIRS = compiler orb services compiler orb
|
||||
all: all-redirect
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
|
@ -1,4 +1,16 @@
|
|||
orbitcpp provides C++ bindings for ORBit, an open source CORBA
|
||||
2.2-compliant Object Request Broker.
|
||||
Paraphrasing the website:
|
||||
|
||||
ORBit-C++ provides C++ bindings for ORBit, an open source CORBA
|
||||
2.2-compliant Object Request Broker.
|
||||
|
||||
The primary objectives of ORBit-C++ are:
|
||||
- To provide a spec-compliant C++ CORBA mapping for ORBit.
|
||||
- To allow programmers to use and write ORBit objects and gnome components
|
||||
in C++ with little or no runtime overhead (compared to writing C ones)
|
||||
- To allow C programmers to use C++ objects without having to deal with any
|
||||
of that "horrible C++ syntax".
|
||||
|
||||
In short, to C++ programmers, all ORBit objects look like C++ objects, and
|
||||
to C programmers, all ORBit objects should look like C objects.
|
||||
|
||||
WWW: http://orbitcpp.sourceforge.net/
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
bin/orbitcpp-config
|
||||
include/ORBitservices/CosNaming.hh
|
||||
include/orb/orbitcpp.hh
|
||||
include/orb/orbitcpp_any.hh
|
||||
include/orb/orbitcpp_config.hh
|
||||
include/orb/orbitcpp_constants.hh
|
||||
include/orb/orbitcpp_exception.hh
|
||||
|
@ -9,12 +11,10 @@ include/orb/orbitcpp_orb.hh
|
|||
include/orb/orbitcpp_poa.hh
|
||||
include/orb/orbitcpp_sequence.hh
|
||||
include/orb/orbitcpp_smartptr.hh
|
||||
include/orb/orbitcpp_var_smartptr.hh
|
||||
include/orb/orbitcpp_tools.hh
|
||||
include/orb/orbitcpp_types.hh
|
||||
include/orb/orbitcpp_any.hh
|
||||
include/orb/orbitcpp_typecode.hh
|
||||
include/ORBitservices/CosNaming.hh
|
||||
include/orb/orbitcpp_types.hh
|
||||
include/orb/orbitcpp_var_smartptr.hh
|
||||
lib/liborbitcpp.a
|
||||
lib/liborbitcpp.so
|
||||
lib/liborbitcpp.so.30
|
||||
|
@ -25,3 +25,6 @@ lib/orbit-idl/liborbit-idl-c++-backend.a
|
|||
lib/orbit-idl/liborbit-idl-c++-backend.so
|
||||
lib/orbit-idl/liborbit-idl-c++-backend.so.0
|
||||
share/aclocal/orbitcpp.m4
|
||||
@dirrm lib/orbit-idl
|
||||
@dirrm include/orb
|
||||
@dirrm include/ORBitservices
|
||||
|
|
Loading…
Add table
Reference in a new issue