diff options
author | Rene Ladan <rene@FreeBSD.org> | 2013-07-26 19:19:20 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2013-07-26 19:19:20 +0000 |
commit | 66fee909266a1dedf3dfc1f03bb0841380d78805 (patch) | |
tree | 4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /astro | |
parent | eec2cb8d7407c5628cc8016e7349abbee6c98e3f (diff) | |
download | ports-66fee909266a1dedf3dfc1f03bb0841380d78805.tar.gz ports-66fee909266a1dedf3dfc1f03bb0841380d78805.zip |
Notes
Diffstat (limited to 'astro')
21 files changed, 0 insertions, 373 deletions
diff --git a/astro/Makefile b/astro/Makefile index 63f967ae86e8..8ef77c521af5 100644 --- a/astro/Makefile +++ b/astro/Makefile @@ -50,7 +50,6 @@ SUBDIR += nova SUBDIR += openmap SUBDIR += openuniverse - SUBDIR += orsa SUBDIR += osmium SUBDIR += osmosis SUBDIR += p5-Astro diff --git a/astro/orsa/Makefile b/astro/orsa/Makefile deleted file mode 100644 index 588096ae9b1a..000000000000 --- a/astro/orsa/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: orsa -# Date created: Dec 9, 2004 -# Whom: ijliao -# -# $FreeBSD$ -# - -PORTNAME= orsa -PORTVERSION= 0.7.0 -PORTREVISION= 22 -CATEGORIES= astro -MASTER_SITES= SF/${PORTNAME}/${PORTNAME:U} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Orbit Reconstruction, Simulation, and Analysis - -LIB_DEPENDS= gsl.16:${PORTSDIR}/math/gsl \ - cln.6:${PORTSDIR}/math/cln \ - fftw.2:${PORTSDIR}/math/fftw \ - ginac.3:${PORTSDIR}/math/GiNaC - -DEPRECATED= Depends on QT3; unmaintained -EXPIRATION_DATE= 2013-07-01 - -USE_QT_VER= 3 -USE_GL= gl -USE_GMAKE= yes -USE_AUTOTOOLS= aclocal autoheader automake autoconf libtool -ACLOCAL_ARGS= -I macros -I ${LOCALBASE}/share/aclocal -AUTOMAKE_ARGS= --add-missing -CONFIGURE_ENV= ac_cv_c_inline=no -USE_LDCONFIG= yes - -.include <bsd.port.mk> diff --git a/astro/orsa/distinfo b/astro/orsa/distinfo deleted file mode 100644 index 710bb24ac291..000000000000 --- a/astro/orsa/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (orsa-0.7.0.tar.gz) = 959abd0f9ed4311cf28a31d088b8afecd50674bd0d9a8360ac4a5c2752f22879 -SIZE (orsa-0.7.0.tar.gz) = 746444 diff --git a/astro/orsa/files/patch-configure.in b/astro/orsa/files/patch-configure.in deleted file mode 100644 index 393c79a42e4f..000000000000 --- a/astro/orsa/files/patch-configure.in +++ /dev/null @@ -1,46 +0,0 @@ ---- configure.in.orig 2005-01-12 06:27:38.000000000 +0900 -+++ configure.in 2009-04-02 14:21:59.000000000 +0900 -@@ -27,6 +27,7 @@ - AC_PROG_INSTALL - AC_PROG_MAKE_SET - AC_PROG_AWK -+PKG_PROG_PKG_CONFIG - - dnl select the language for the test programs - AC_LANG(C++) -@@ -35,10 +36,24 @@ - AM_PATH_GSL([1.5]) - - dnl checks for the cln library --AC_PATH_CLN([1.1.6], ac_cv_have_cln=yes, ac_cv_have_cln=no) -+PKG_CHECK_MODULES(CLN, cln >= 1.1.6, ac_cv_have_cln=yes, ac_cv_have_cln=no) -+ -+if test "x$ac_cv_have_cln" = "xyes"; then -+ CLN_CPPFLAGS=`pkg-config --cflags cln` -+ CLN_LIBS=`pkg-config --libs cln` -+ AC_SUBST(CLN_CPPFLAGS) -+ AC_SUBST(CLN_LIBS) -+fi - - dnl checks for the ginac library --AM_PATH_GINAC([1.2.0], ac_cv_have_ginac=yes, ac_cv_have_ginac=no) -+PKG_CHECK_MODULES(GiNaC, ginac >= 1.2.0, ac_cv_have_ginac=yes, ac_cv_have_ginac=no) -+ -+if test "x$ac_cv_have_ginac" = "xyes"; then -+ GINACLIB_CPPFLAGS=`pkg-config --cflags ginac` -+ GINACLIB_LIBS=`pkg-config --libs ginac` -+ AC_SUBST(GINACLIB_CPPFLAGS) -+ AC_SUBST(GINACLIB_LIBS) -+fi - - dnl QT libs - AC_PATH_QT -@@ -133,7 +148,7 @@ - - dnl some compiler options - if test "$GXX" = "yes"; then -- CXXFLAGS="-g -Wall -W -pipe -ftemplate-depth-64 -O3 -fno-exceptions -funroll-loops -fstrict-aliasing -fno-gcse $GSL_CFLAGS $CLN_CPPFLAGS $GINACLIB_CPPFLAGS" -+ CXXFLAGS="$CXXFLAGS -Wall -W -pipe -ftemplate-depth-64 -fno-exceptions $GSL_CFLAGS $CLN_CPPFLAGS $GINACLIB_CPPFLAGS" - fi - - AC_CONFIG_FILES([Makefile]) diff --git a/astro/orsa/files/patch-src__liborsa__orsa_body.h b/astro/orsa/files/patch-src__liborsa__orsa_body.h deleted file mode 100644 index 551a16197cbb..000000000000 --- a/astro/orsa/files/patch-src__liborsa__orsa_body.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/liborsa/orsa_body.h.orig 2004-12-30 12:58:03.000000000 +0900 -+++ src/liborsa/orsa_body.h 2009-04-02 13:48:37.000000000 +0900 -@@ -183,7 +183,7 @@ - inline void SetVelocity(const double x, const double y, const double z) { Vector v(x,y,z); SetVelocity(v); } - - // b position - this position -- inline Vector Body::distanceVector(const Body & b) const { return b.position()-position(); } -+ inline Vector distanceVector(const Body & b) const { return b.position()-position(); } - inline double distance(const Body & b) const { return distanceVector(b).Length(); } - - // alias diff --git a/astro/orsa/files/patch-src__liborsa__orsa_coord.cc b/astro/orsa/files/patch-src__liborsa__orsa_coord.cc deleted file mode 100644 index 2658ae3b0e09..000000000000 --- a/astro/orsa/files/patch-src__liborsa__orsa_coord.cc +++ /dev/null @@ -1,10 +0,0 @@ ---- src/liborsa/orsa_coord.cc.orig 2004-09-22 04:44:20.000000000 +0900 -+++ src/liborsa/orsa_coord.cc 2009-04-02 13:48:37.000000000 +0900 -@@ -25,6 +25,7 @@ - #include "orsa_coord.h" - - #include <cmath> -+#include <cstdlib> - #include <iostream> - - using namespace std; diff --git a/astro/orsa/files/patch-src__liborsa__orsa_file.cc b/astro/orsa/files/patch-src__liborsa__orsa_file.cc deleted file mode 100644 index cdfe8ce35b83..000000000000 --- a/astro/orsa/files/patch-src__liborsa__orsa_file.cc +++ /dev/null @@ -1,11 +0,0 @@ ---- src/liborsa/orsa_file.cc.orig 2005-01-11 10:01:11.000000000 +0900 -+++ src/liborsa/orsa_file.cc 2009-04-02 13:48:37.000000000 +0900 -@@ -24,6 +24,8 @@ - - #include "orsa_file.h" - -+#include <algorithm> -+#include <cstring> - #include <iostream> - - #include <ctype.h> diff --git a/astro/orsa/files/patch-src__liborsa__orsa_file_jpl.cc b/astro/orsa/files/patch-src__liborsa__orsa_file_jpl.cc deleted file mode 100644 index 77c188cae45a..000000000000 --- a/astro/orsa/files/patch-src__liborsa__orsa_file_jpl.cc +++ /dev/null @@ -1,10 +0,0 @@ ---- src/liborsa/orsa_file_jpl.cc.orig 2005-01-05 11:25:06.000000000 +0900 -+++ src/liborsa/orsa_file_jpl.cc 2009-04-02 13:48:37.000000000 +0900 -@@ -27,6 +27,7 @@ - #include "orsa_secure_math.h" - - #include <cstdio> -+#include <cstring> - - #include "sdncal.h" - #include "jpleph.h" diff --git a/astro/orsa/files/patch-src__liborsa__orsa_interaction_tree.cc b/astro/orsa/files/patch-src__liborsa__orsa_interaction_tree.cc deleted file mode 100644 index 7b8314f5e966..000000000000 --- a/astro/orsa/files/patch-src__liborsa__orsa_interaction_tree.cc +++ /dev/null @@ -1,10 +0,0 @@ ---- src/liborsa/orsa_interaction_tree.cc.orig 2004-10-02 09:04:30.000000000 +0900 -+++ src/liborsa/orsa_interaction_tree.cc 2009-04-02 13:48:37.000000000 +0900 -@@ -26,6 +26,7 @@ - #include "orsa_secure_math.h" - #include "orsa_universe.h" - -+#include <cstring> - #include <iostream> - #include <list> - #include <stack> diff --git a/astro/orsa/files/patch-src__liborsa__orsa_units.h b/astro/orsa/files/patch-src__liborsa__orsa_units.h deleted file mode 100644 index 7ce7624c108f..000000000000 --- a/astro/orsa/files/patch-src__liborsa__orsa_units.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/liborsa/orsa_units.h.orig 2005-01-05 12:54:27.000000000 +0900 -+++ src/liborsa/orsa_units.h 2009-04-02 13:48:37.000000000 +0900 -@@ -28,6 +28,7 @@ - #include <cmath> - #include <string> - #include <cstdio> -+#include <cstdlib> - - #include "orsa_secure_math.h" - #include "orsa_coord.h" diff --git a/astro/orsa/files/patch-src__libxorsa__xorsa_aalysis.h b/astro/orsa/files/patch-src__libxorsa__xorsa_aalysis.h deleted file mode 100644 index 8526eadedb83..000000000000 --- a/astro/orsa/files/patch-src__libxorsa__xorsa_aalysis.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/libxorsa/xorsa_analysis.h.orig 2004-06-25 09:58:30.000000000 +0900 -+++ src/libxorsa/xorsa_analysis.h 2009-04-02 13:48:37.000000000 +0900 -@@ -129,7 +129,7 @@ - XOrsaPeaksListItem(QListView *parent, QString label1, QString label2 = QString::null, QString label3 = QString::null, QString label4 = QString::null, QString label5 = QString::null, QString label6 = QString::null, QString label7 = QString::null, QString label8 = QString::null); - - public: -- int XOrsaPeaksListItem::compare(QListViewItem * i, int col, bool ascending) const; -+ int compare(QListViewItem * i, int col, bool ascending) const; - - }; - diff --git a/astro/orsa/files/patch-src__libxorsa__xorsa_download.cc b/astro/orsa/files/patch-src__libxorsa__xorsa_download.cc deleted file mode 100644 index 516fc6aad510..000000000000 --- a/astro/orsa/files/patch-src__libxorsa__xorsa_download.cc +++ /dev/null @@ -1,42 +0,0 @@ ---- src/libxorsa/xorsa_download.cc.orig 2004-12-30 14:21:29.000000000 +0900 -+++ src/libxorsa/xorsa_download.cc 2009-04-02 13:48:37.000000000 +0900 -@@ -221,6 +221,21 @@ - - } - -+void XOrsaDownloadEntry::secure_download(const QUrlInfo &urlInfo) -+{ -+ QUrl proto_url(le->text()); -+ // download file if it appears in the file listing -+ if (proto_url.fileName() == urlInfo.name()) { -+ // abort the current QFtp::List and QFtp::Close commands -+ ftp->abort(); -+ -+ if (urlInfo.isFile() && urlInfo.isReadable()) -+ ftp->get(proto_url.fileName(),file); -+ -+ ftp->close(); -+ } -+} -+ - void XOrsaDownloadEntry::download() { - QUrl proto_url(le->text()); - ftp = 0; -@@ -235,7 +250,7 @@ - ftp->login("anonymous","orsa_user@orsa.sf.net"); - ftp->cd(proto_url.dirPath()); - // -- ftp->get(proto_url.fileName(),file); -+ ftp->list(); - // WARNING: don't close the file HERE!! - // - ftp->close(); -@@ -246,6 +261,8 @@ - - connect(ftp,SIGNAL(done(bool)),this,SLOT(post_download(bool))); - -+ connect(ftp,SIGNAL(listInfo(const QUrlInfo &)),this,SLOT(secure_download(const QUrlInfo &))); -+ - } else if (proto_url.protocol() == "http") { - - http = new QHttp; diff --git a/astro/orsa/files/patch-src__libxorsa__xorsa_download.h b/astro/orsa/files/patch-src__libxorsa__xorsa_download.h deleted file mode 100644 index 911d23bc6428..000000000000 --- a/astro/orsa/files/patch-src__libxorsa__xorsa_download.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/libxorsa/xorsa_download.h.orig 2004-12-30 14:21:29.000000000 +0900 -+++ src/libxorsa/xorsa_download.h 2009-04-02 13:48:37.000000000 +0900 -@@ -91,6 +91,7 @@ - void pb_clicked(); - void post_download(bool); - void download(); -+ void secure_download(const QUrlInfo &); - }; - - diff --git a/astro/orsa/files/patch-src__libxorsa__xorsa_import_astorb_objects.h b/astro/orsa/files/patch-src__libxorsa__xorsa_import_astorb_objects.h deleted file mode 100644 index 2dde38e9b33b..000000000000 --- a/astro/orsa/files/patch-src__libxorsa__xorsa_import_astorb_objects.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/libxorsa/xorsa_import_astorb_objects.h.orig 2005-01-05 12:04:17.000000000 +0900 -+++ src/libxorsa/xorsa_import_astorb_objects.h 2009-04-02 13:48:37.000000000 +0900 -@@ -600,7 +600,7 @@ - inline XOrsaAstorbObjectItem(QListView *parent, QString label1, QString label2 = QString::null, QString label3 = QString::null, QString label4 = QString::null, QString label5 = QString::null, QString label6 = QString::null, QString label7 = QString::null, QString label8 = QString::null) : QListViewItem(parent, label1, label2, label3, label4, label5, label6, label7, label8) { }; - - public: -- inline int XOrsaAstorbObjectItem::compare(QListViewItem *i, int col, bool ascending) const { -+ inline int compare(QListViewItem *i, int col, bool ascending) const { - - using std::atof; - diff --git a/astro/orsa/files/patch-src__libxorsa__xorsa_object_selector.cc b/astro/orsa/files/patch-src__libxorsa__xorsa_object_selector.cc deleted file mode 100644 index 0427bb39893b..000000000000 --- a/astro/orsa/files/patch-src__libxorsa__xorsa_object_selector.cc +++ /dev/null @@ -1,11 +0,0 @@ ---- src/libxorsa/xorsa_object_selector.cc.orig 2004-06-25 12:12:57.000000000 +0900 -+++ src/libxorsa/xorsa_object_selector.cc 2009-04-02 13:48:37.000000000 +0900 -@@ -40,7 +40,7 @@ - XOrsaObjectItem(QListView *parent, QString label1, QString label2 = QString::null, QString label3 = QString::null, QString label4 = QString::null, QString label5 = QString::null, QString label6 = QString::null, QString label7 = QString::null, QString label8 = QString::null); - - public: -- int XOrsaObjectItem::compare(QListViewItem * i, int col, bool ascending) const; -+ int compare(QListViewItem * i, int col, bool ascending) const; - - }; - diff --git a/astro/orsa/files/patch-src__libxorsa__xorsa_plot_area.h b/astro/orsa/files/patch-src__libxorsa__xorsa_plot_area.h deleted file mode 100644 index a37656eb2070..000000000000 --- a/astro/orsa/files/patch-src__libxorsa__xorsa_plot_area.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/libxorsa/xorsa_plot_area.h.orig 2005-01-05 11:25:06.000000000 +0900 -+++ src/libxorsa/xorsa_plot_area.h 2009-04-02 13:48:37.000000000 +0900 -@@ -57,7 +57,7 @@ - } - } - --extern char *MonthNameShort[13]; // sdncal.h -+extern "C" char *MonthNameShort[13]; // sdncal.h - - void FineDate(QString & label, const orsa::UniverseTypeAwareTime & t, bool=true); - void FineDate_HMS(QString & label, const orsa::UniverseTypeAwareTime & t); diff --git a/astro/orsa/files/patch-src__libxorsa__xorsa_wrapper.cc b/astro/orsa/files/patch-src__libxorsa__xorsa_wrapper.cc deleted file mode 100644 index 3abee9f2f2f5..000000000000 --- a/astro/orsa/files/patch-src__libxorsa__xorsa_wrapper.cc +++ /dev/null @@ -1,14 +0,0 @@ ---- src/libxorsa/xorsa_wrapper.cc.orig 2005-01-06 07:07:56.000000000 +0900 -+++ src/libxorsa/xorsa_wrapper.cc 2009-04-02 13:48:37.000000000 +0900 -@@ -148,9 +148,9 @@ - { - if (doDefaultOutput) inherited::vtrace(fmt, ap); - char str[1024]; -- std::vsnprintf(str, sizeof(str) - 1, fmt, ap); -+ vsnprintf(str, sizeof(str) - 1, fmt, ap); - char msg[1024]; -- std::snprintf(msg, sizeof(msg) - 1, "[%s][%s:%i] %s %s\n", -+ snprintf(msg, sizeof(msg) - 1, "[%s][%s:%i] %s %s\n", - QTime::currentTime(Qt::LocalTime).toString("hh:mm:ss").latin1(),d->file,d->line, d->msg.c_str(), str); - QString s = msg; - XOrsaDebugEvent *de = new XOrsaDebugEvent(s); diff --git a/astro/orsa/files/patch-src__orsa__xorsa.cc b/astro/orsa/files/patch-src__orsa__xorsa.cc deleted file mode 100644 index 8a4b9938273c..000000000000 --- a/astro/orsa/files/patch-src__orsa__xorsa.cc +++ /dev/null @@ -1,63 +0,0 @@ ---- src/orsa/xorsa.cc.orig 2005-01-05 07:31:25.000000000 +0900 -+++ src/orsa/xorsa.cc 2009-04-02 13:48:37.000000000 +0900 -@@ -580,25 +580,25 @@ - MPC_UNUSUALS)); - */ - -- items.push_back(XOrsaDownloadItem("http://www.astro.cz/mpcorb/MPCORB.ZIP", -+ items.push_back(XOrsaDownloadItem("", - MPC_MPCORB)); - -- items.push_back(XOrsaDownloadItem("http://www.astro.cz/mpcorb/NEA.DAT", -+ items.push_back(XOrsaDownloadItem("", - MPC_NEA)); - -- items.push_back(XOrsaDownloadItem("http://www.astro.cz/mpcorb/DAILY.DAT", -+ items.push_back(XOrsaDownloadItem("", - MPC_DAILY)); - -- items.push_back(XOrsaDownloadItem("http://www.astro.cz/mpcorb/DistantObjects.DAT", -+ items.push_back(XOrsaDownloadItem("", - MPC_DISTANT)); - -- items.push_back(XOrsaDownloadItem("http://www.astro.cz/mpcorb/PHA.DAT", -+ items.push_back(XOrsaDownloadItem("", - MPC_PHA)); - -- items.push_back(XOrsaDownloadItem("http://www.astro.cz/mpcorb/Unusuals.DAT", -+ items.push_back(XOrsaDownloadItem("", - MPC_UNUSUALS)); - -- items.push_back(XOrsaDownloadItem("http://www.astro.cz/mpcorb/COMET.DAT", -+ items.push_back(XOrsaDownloadItem("", - MPC_COMET)); - - /* -@@ -627,22 +627,22 @@ - items.push_back(XOrsaDownloadItem("http://www.amsat.org/amsat/ftp/keps/current/nasa.all", - TLE_NASA)); - -- items.push_back(XOrsaDownloadItem("ftp://alphalma.cnrs-mrs.fr/pub/astro/geo.tle", -+ items.push_back(XOrsaDownloadItem("", - TLE_GEO)); - - items.push_back(XOrsaDownloadItem("http://www.celestrak.com/NORAD/elements/gps-ops.txt", - TLE_GPS)); - -- items.push_back(XOrsaDownloadItem("ftp://alphalma.cnrs-mrs.fr/pub/astro/iss.tle", -+ items.push_back(XOrsaDownloadItem("", - TLE_ISS)); - -- items.push_back(XOrsaDownloadItem("http://www.orbitessera.com/data/orbital/kepele.txt", -+ items.push_back(XOrsaDownloadItem("", - TLE_KEPELE)); - -- items.push_back(XOrsaDownloadItem("ftp://alphalma.cnrs-mrs.fr/pub/astro/visual.tle", -+ items.push_back(XOrsaDownloadItem("", - TLE_VISUAL)); - -- items.push_back(XOrsaDownloadItem("ftp://alphalma.cnrs-mrs.fr/pub/astro/weather.tle", -+ items.push_back(XOrsaDownloadItem("", - TLE_WEATHER)); - - // textures diff --git a/astro/orsa/files/patch-src__orsa__xorsa.h b/astro/orsa/files/patch-src__orsa__xorsa.h deleted file mode 100644 index 21d630c2295c..000000000000 --- a/astro/orsa/files/patch-src__orsa__xorsa.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/orsa/xorsa.h.orig 2004-07-13 11:21:19.000000000 +0900 -+++ src/orsa/xorsa.h 2009-04-02 13:48:37.000000000 +0900 -@@ -62,7 +62,7 @@ - ObjectItem(QListView *parent, QString label1, QString label2 = QString::null, QString label3 = QString::null, QString label4 = QString::null, QString label5 = QString::null, QString label6 = QString::null, QString label7 = QString::null, QString label8 = QString::null); - - public: -- int ObjectItem::compare(QListViewItem * i, int col, bool ascending) const; -+ int compare(QListViewItem * i, int col, bool ascending) const; - - }; - diff --git a/astro/orsa/pkg-descr b/astro/orsa/pkg-descr deleted file mode 100644 index e4ffae6097f2..000000000000 --- a/astro/orsa/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -ORSA is an interactive tool for scientific grade Celestial Mechanics -computations. Asteroids, comets, artificial satellites, Solar and extra-Solar -planetary systems can be accurately reproduced, simulated, and analyzed. - -Features - * use of JPL ephemeris files for accurate planets positions - * Qt-based graphical user interface - * advanced 2D plotting tool and 3D OpenGL viewer - * import asteroids and comets from all the known databases (MPC, JPL, - Lowell, AstDyS, and NEODyS) - * integrated download tool to update databases - * stand alone numerical library liborsa - * save and restore session from a single file - -WWW: http://orsa.sourceforge.net/ diff --git a/astro/orsa/pkg-plist b/astro/orsa/pkg-plist deleted file mode 100644 index 4887b52e7033..000000000000 --- a/astro/orsa/pkg-plist +++ /dev/null @@ -1,28 +0,0 @@ -bin/xorsa -include/orsa/orsa_analysis.h -include/orsa/orsa_body.h -include/orsa/orsa_common.h -include/orsa/orsa_config.h -include/orsa/orsa_coord.h -include/orsa/orsa_error.h -include/orsa/orsa_fft.h -include/orsa/orsa_file.h -include/orsa/orsa_file_jpl.h -include/orsa/orsa_frame.h -include/orsa/orsa_integrator.h -include/orsa/orsa_interaction.h -include/orsa/orsa_orbit.h -include/orsa/orsa_orbit_gsl.h -include/orsa/orsa_secure_math.h -include/orsa/orsa_units.h -include/orsa/orsa_universe.h -include/orsa/orsa_version.h -@dirrm include/orsa -lib/liborsa.a -lib/liborsa.la -lib/liborsa.so -lib/liborsa.so.0 -lib/libxorsa.a -lib/libxorsa.la -lib/libxorsa.so -lib/libxorsa.so.0 |