You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
917 B
31 lines
917 B
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmms/libmms-0.6.2.ebuild,v 1.11 2013/01/01 12:23:10 ago Exp $
|
|
|
|
EAPI=2
|
|
|
|
DESCRIPTION="Common library for accessing Microsoft Media Server (MMS) media streaming protocol"
|
|
HOMEPAGE="http://sourceforge.net/projects/libmms/ http://launchpad.net/libmms/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
|
|
IUSE="static-libs"
|
|
|
|
RDEPEND="dev-libs/glib:2"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-dependency-tracking \
|
|
$(use_enable static-libs static)
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die
|
|
dodoc AUTHORS ChangeLog README
|
|
find "${D}" -name '*.la' -exec rm -f '{}' +
|
|
}
|