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.
gentoo-overlay/media-libs/openctm/openctm-1.0.3.ebuild

42 lines
949 B

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/openctm/openctm-1.0.3.ebuild,v 1.4 2014/08/18 23:11:10 amynka Exp $
EAPI=5
inherit eutils multilib versionator flag-o-matic
MY_PF=OpenCTM-${PV}
DESCRIPTION="OpenCTM - the Open Compressed Triangle Mesh."
HOMEPAGE="http://openctm.sourceforge.net"
SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}+dfsg1.orig.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/tinyxml
media-libs/freeglut
media-libs/glew
media-libs/pnglite
virtual/opengl"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_PF}"
src_prepare() {
epatch "${FILESDIR}"/openctm-fix-makefiles.patch
mv Makefile.linux Makefile
# do not use strip
sed -i -e 's:\(LDFLAGS.*\)-s :\1 :g' \
"${S}"/Makefile \
"${S}"/*/Makefile.linux || die
}
src_compile() {
emake CC=$(tc-getCC) CXX=$(tc-getCXX)
}