]> git.pld-linux.org Git - packages/opal.git/commitdiff
- initial release - does not build - this will in the future replace
authorPaweł Gołaszewski <blues@pld-linux.org>
Thu, 24 Apr 2003 12:39:11 +0000 (12:39 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
  openh323 (more protocols supported, i.e. sip).
  There are problems propably with gcc2 (I don't have gcc3)

Changed files:
    opal.spec -> 1.1

opal.spec [new file with mode: 0644]

diff --git a/opal.spec b/opal.spec
new file mode 100644 (file)
index 0000000..001b32e
--- /dev/null
+++ b/opal.spec
@@ -0,0 +1,114 @@
+Summary:       Open Phone Abstraction Library (aka OpenH323 v2)
+Summary(pl):   Biblioteka Open Phone Abstraction Library (aka OpenH323 v2)
+Name:          opal
+Version:       2.0.0
+%define                _snap   20030424
+Release:       0.%{_snap}.0.1
+License:       MPL
+Group:         Libraries
+Source0:       %{name}_%{version}_%{_snap}.tar.bz2
+Patch0:                %{name}-pwlib.patch
+URL:           http://www.openh323.org/
+BuildRequires: pwlib-devel >= 1.4.7
+BuildRequires: speex-devel >= 1.0
+BuildRequires: libstdc++-devel
+%requires_eq   pwlib
+Obsoletes:     openh323
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The OpenH323 project aims to create a full featured, interoperable,
+Open Source implementation of the ITU H.323 teleconferencing protocol
+that can be used by personal developers and commercial users without
+charge.
+
+%description -l pl
+Celem projektu OpenH323 jest stworzenie w pe³ni funkcjonalnej i
+wyposa¿onej implementacji protoko³u telekonferencyjnego ITU H.323,
+który mo¿e byæ u¿ywany przez u¿ytkowników prywatnych i komercyjnych
+bez op³at.
+
+%package devel
+Summary:       Opal development files
+Summary(pl):   Pliki dla developerów Opal
+Group:         Development/Libraries
+Requires:      %{name} = %{version}
+Requires:      libstdc++-devel
+Requires:      pwlib-devel
+Obsoletes:     openh323-devel
+
+%description devel
+Header files and libraries for developing applications that use
+OpenH323.
+
+%description devel -l pl
+Pliki nag³ówkowe i biblioteki konieczne do rozwoju aplikacji
+u¿ywaj±cych OpenH323.
+
+%package static
+Summary:       Opal static libraries
+Summary(pl):   Biblioteki statyczne Opal
+Group:         Development/Libraries
+Requires:      %{name}-devel = %{version}
+Obsoletes:     openh323-static
+
+%description static
+OpenH323 static libraries.
+
+%description static -l pl
+Biblioteki statyczne OpenH323.
+
+%prep
+%setup -qn %{name}
+%patch0 -p1
+
+%build
+PWLIBDIR=%{_datadir}/pwlib; export PWLIBDIR
+OPALDIR=`pwd`; export OPALDIR
+OPENH323_BUILD="yes"; export OPENH323_BUILD
+touch .asnparser.version
+
+%{__make} %{?debug:debug}%{!?debug:opt} \
+               CC=%{__cc} CPLUS=%{__cxx} \
+               PWLIB_MAKE=%{_datadir}/pwlib \
+               ASNPARSER=%{_bindir}/asnparser \
+               OPTCCFLAGS="%{rpmcflags}"
+
+#%%{__make} -C samples/simple %{?debug:debugshared}%{!?debug:optshared} \
+#              CC=%{__cc} CPLUS=%{__cxx} \
+#              OPTCCFLAGS="%{rpmcflags}"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_libdir},%{_includedir}/openh323,%{_bindir},%{_datadir}/misc}
+
+#using cp as install won't preserve links
+cp -d lib/lib* $RPM_BUILD_ROOT%{_libdir}
+install include/*.h $RPM_BUILD_ROOT%{_includedir}/openh323
+install version.h $RPM_BUILD_ROOT%{_includedir}/openh323
+#install samples/simple/obj_*/simph323 $RPM_BUILD_ROOT%{_bindir}
+
+sed -e's@\$(OPENH323DIR)/include@&/openh323@' < openh323u.mak \
+       > $RPM_BUILD_ROOT%{_datadir}/misc/openh323u.mak
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post   -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+#%attr(755,root,root) %{_bindir}/*
+%attr(755,root,root) %{_libdir}/lib*.so.*.*.*
+
+%files devel
+%defattr(644,root,root,755)
+%doc *.txt
+%attr(755,root,root) %{_libdir}/*.so
+%{_includedir}/*
+%{_datadir}/misc/*
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/*.a
This page took 0.119605 seconds and 4 git commands to generate.