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/aldumb/aldumb-0.9.3.ebuild

53 lines
1010 B

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Allegro support for DUMB (an IT, XM, S3M, and MOD player library)"
HOMEPAGE="http://dumb.sourceforge.net/"
SRC_URI="mirror://sourceforge/dumb/dumb-${PV}.tar.gz"
LICENSE="DUMB-0.9.2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="debug"
DEPEND="
>=media-libs/dumb-0.9.3
media-libs/allegro:0
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P/aldumb/dumb}"
PATCHES=(
"${FILESDIR}"/${P}-PIC-as-needed.patch
"${FILESDIR}"/${P}_CVE-2006-3668.patch
)
src_prepare() {
default
cat << EOF > make/config.txt
include make/unix.inc
ALL_TARGETS := allegro allegro-examples allegro-headers
PREFIX := /usr
EOF
sed -i '/= -s/d' Makefile || die "sed failed"
cp -f Makefile Makefile.rdy || die
}
src_compile() {
emake OFLAGS="${CFLAGS}" all
}
src_install() {
dobin examples/dumbplay
dolib.so lib/unix/libaldmb.so
use debug && lib/unix/libaldmd.so
insinto /usr/include
doins include/aldumb.h
}