diff options
Diffstat (limited to 'media-libs/libdvdcss/libdvdcss-1.2.8.ebuild')
-rw-r--r-- | media-libs/libdvdcss/libdvdcss-1.2.8.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/media-libs/libdvdcss/libdvdcss-1.2.8.ebuild b/media-libs/libdvdcss/libdvdcss-1.2.8.ebuild deleted file mode 100644 index 769b0cf5697d..000000000000 --- a/media-libs/libdvdcss/libdvdcss-1.2.8.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdcss/libdvdcss-1.2.8.ebuild,v 1.24 2006/03/06 15:02:57 flameeyes Exp $ - -inherit eutils - -DESCRIPTION="A portable abstraction library for DVD decryption" -HOMEPAGE="http://developers.videolan.org/libdvdcss/" -SRC_URI="http://www.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="1.2" -KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 ppc-macos sparc x86" -IUSE="doc static" - -DEPEND="doc? ( app-doc/doxygen )" - -pkg_preinst() { - # these could cause problems if they exist from - # earlier builds - for x in libdvdcss.so.0 libdvdcss.so.1 libdvdcss.0.dylib libdvdcss.1.dylib - do - if [ -f /usr/$(get_libdir)/${x} ] || [ -L /usr/$(get_libdir)/${x} ] - then - rm -f /usr/$(get_libdir)/${x} - fi - done -} - -src_compile() { - # Dont use custom optimiziations, as it gives problems - # on some archs - unset CFLAGS - unset CXXFLAGS - - econf `use_enable static` || die - emake || die - use doc && emake doc -} - -src_install() { - einstall || die - - dodoc AUTHORS ChangeLog NEWS README - use doc && dohtml doc/html/* - - ## - ## 0.0.3.* and 1.0.0 compat - ## - - # NOTE: this should be the last code in src_install() !!! - - if [ -L ${D}/usr/$(get_libdir)/libdvdcss.so ] - then - # on some locales the name of the file a symlink points to, is in the - # tenth field, and not the eleventh (bug #2908) - LC_ALL='C' - local realname="$(ls -l ${D}/usr/$(get_libdir)/libdvdcss.so |gawk '{print $11}')" - [ -z "${realname}" ] && \ - realname="$(ls -l ${D}/usr/$(get_libdir)/libdvdcss.so |gawk '{print $10}')" - [ -z "${realname}" ] && return 0 - - for x in libdvdcss.so.0 libdvdcss.so.1 - do - dosym ${realname} /usr/$(get_libdir)/${x} - done - fi -} |