diff options
author | Stefan Knoblich <stkn@gentoo.org> | 2005-04-10 21:38:26 +0000 |
---|---|---|
committer | Stefan Knoblich <stkn@gentoo.org> | 2005-04-10 21:38:26 +0000 |
commit | 64650d4ad2081723962ae799a2693548ac7934d5 (patch) | |
tree | 982d23ee3624c5cc4426cc431f0ec5e4a39b472c /net-libs | |
parent | adding apr-util-1 (1.1.1) ebuilds to the series of apr versions which is the ... (diff) | |
download | historical-64650d4ad2081723962ae799a2693548ac7934d5.tar.gz historical-64650d4ad2081723962ae799a2693548ac7934d5.tar.bz2 historical-64650d4ad2081723962ae799a2693548ac7934d5.zip |
cleanup part #1
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/openh323/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/openh323/files/digest-openh323-1.11.7 | 1 | ||||
-rw-r--r-- | net-libs/openh323/files/digest-openh323-1.9.10-r1 | 1 | ||||
-rw-r--r-- | net-libs/openh323/openh323-1.11.7.ebuild | 73 | ||||
-rw-r--r-- | net-libs/openh323/openh323-1.9.10-r1.ebuild | 49 |
5 files changed, 5 insertions, 125 deletions
diff --git a/net-libs/openh323/ChangeLog b/net-libs/openh323/ChangeLog index 2f4f5b346e90..312c25b8870c 100644 --- a/net-libs/openh323/ChangeLog +++ b/net-libs/openh323/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/openh323 # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/ChangeLog,v 1.62 2005/02/03 20:11:08 stkn Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/ChangeLog,v 1.63 2005/04/10 21:38:25 stkn Exp $ + + 10 Apr 2005; Stefan Knoblich <stkn@gentoo.org> -openh323-1.11.7.ebuild, + -openh323-1.9.10-r1.ebuild: + cleanup part #1 *openh323-1.15.2-r1 (03 Feb 2005) diff --git a/net-libs/openh323/files/digest-openh323-1.11.7 b/net-libs/openh323/files/digest-openh323-1.11.7 deleted file mode 100644 index 5ddfe6307e5c..000000000000 --- a/net-libs/openh323/files/digest-openh323-1.11.7 +++ /dev/null @@ -1 +0,0 @@ -MD5 369449dcca5e30ebd3b94e57995b544f openh323_1.11.7.tar.gz 2109194 diff --git a/net-libs/openh323/files/digest-openh323-1.9.10-r1 b/net-libs/openh323/files/digest-openh323-1.9.10-r1 deleted file mode 100644 index f078580ba0b7..000000000000 --- a/net-libs/openh323/files/digest-openh323-1.9.10-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 4efbe1356cb26b8442add3cc4cfba91d openh323_1.9.10.tar.gz 1778990 diff --git a/net-libs/openh323/openh323-1.11.7.ebuild b/net-libs/openh323/openh323-1.11.7.ebuild deleted file mode 100644 index 17c866f2db86..000000000000 --- a/net-libs/openh323/openh323-1.11.7.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.11.7.ebuild,v 1.11 2005/01/08 20:15:47 stkn Exp $ - -IUSE="ssl" - -S=${WORKDIR}/${PN} -DESCRIPTION="Open Source implementation of the ITU H.323 teleconferencing protocol" -HOMEPAGE="http://www.openh323.org" -SRC_URI="http://www.openh323.org/bin/${PN}_${PV}.tar.gz" - -SLOT="0" -LICENSE="MPL-1.1" -KEYWORDS="x86 ~ppc -sparc " - -DEPEND=">=sys-apps/sed-4 - =dev-libs/pwlib-1.4.11* - ssl? ( dev-libs/openssl )" - -pkg_setup() { - # to prevent merge problems with broken makefiles from old - # pwlib versions, we double-check here. - - if [ "` fgrep '\$(OPENSSLDIR)/include' /usr/share/pwlib/make/unix.mak`" ] - then - # patch unix.mak so it doesn't require annoying - # unmerge/merge cycle to upgrade - einfo "Fixing broken pwlib makefile." - cd /usr/share/pwlib/make - sed -i \ - -e "s:-DP_SSL -I\$(OPENSSLDIR)/include -I\$(OPENSSLDIR)/crypto:-DP_SSL:" \ - -e "s:^LDFLAGS.*\+= -L\$(OPENSSLDIR)/lib -L\$(OPENSSLDIR):LDFLAGS +=:" \ - unix.mak - fi -} - -src_compile() { - export PWLIBDIR=/usr/share/pwlib - export OPENH323DIR=${S} - if use ssl; then - export OPENSSLFLAG=1 - export OPENSSLDIR=/usr - export OPENSSLLIBS="-lssl -lcrypt" - fi - make optshared || die -} - -src_install() { - - dodir /usr/lib /usr/share/openh323 - - cd ${S}/lib - mv lib* ${D}/usr/lib - - cd ${S} - find ./ -name 'CVS' -type d | xargs rm -rf - cp -a * ${D}/usr/share/openh323 - - # mod to keep gnugk happy - insinto /usr/share/openh323/src - newins ${FILESDIR}/openh323-1.11.2-emptyMakefile Makefile - - rm -f ${D}/usr/lib/libopenh323.so - if [ ${ARCH} = "ppc" ] ; then - dosym /usr/lib/libh323_linux_ppc_r.so.${PV} /usr/lib/libopenh323.so - else - dosym /usr/lib/libh323_linux_x86_r.so.${PV} /usr/lib/libopenh323.so - fi - - -} - - diff --git a/net-libs/openh323/openh323-1.9.10-r1.ebuild b/net-libs/openh323/openh323-1.9.10-r1.ebuild deleted file mode 100644 index 44cfe506d8a6..000000000000 --- a/net-libs/openh323/openh323-1.9.10-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.9.10-r1.ebuild,v 1.14 2005/01/08 20:15:47 stkn Exp $ - -IUSE="ssl" - -S="${WORKDIR}/${PN}" - -DESCRIPTION="Open Source implementation of the ITU H.323 teleconferencing protocol" -HOMEPAGE="http://www.openh323.org" -SRC_URI="http://www.openh323.org/bin/${PN}_${PV}.tar.gz" - -DEPEND="media-libs/speex - =dev-libs/pwlib-1.3.11* - ssl? ( dev-libs/openssl )" - -SLOT="0" -LICENSE="MPL-1.1" -KEYWORDS="x86 ppc -sparc" - -src_compile() { - export PWLIBDIR=/usr/share/pwlib - export OPENH323DIR=${S} - - if use ssl; then - export OPENSSLFLAG=1 - export OPENSSLDIR=/usr - export OPENSSLLIBS="-lssl -lcrypt" - fi - - make optshared || die -} - -src_install() { - dodir /usr/share/openh323 - - into /usr - dolib ${S}/lib/lib* - - cd ${S} - find ./ -name 'CVS' | xargs rm -f - cp -a * ${D}/usr/share/openh323 - - if [ ${ARCH} = "ppc" ] ; then - dosym libh323_linux_ppc_r.so.${PV} /usr/lib/libopenh323.so - else - dosym libh323_linux_x86_r.so.${PV} /usr/lib/libopenh323.so - fi -} |