57 lines
1.3 KiB
Bash
57 lines
1.3 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/lasi/lasi-1.1.1.ebuild,v 1.9 2012/05/29 16:30:59 aballier Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit cmake-utils eutils
|
|
|
|
MY_PN=libLASi
|
|
MY_P=${MY_PN}-${PV}
|
|
|
|
DESCRIPTION="C++ library for postscript stream output"
|
|
HOMEPAGE="http://www.unifont.org/lasi/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~amd64-fbsd"
|
|
IUSE="doc examples"
|
|
|
|
RDEPEND="
|
|
media-libs/freetype:2
|
|
x11-libs/pango"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig
|
|
doc? ( app-doc/doxygen )"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.1.0-cmake.patch
|
|
"${FILESDIR}"/${PN}-1.1.0-pkgconfig.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
base_src_prepare
|
|
sed -i \
|
|
-e "s:\/lib$:\/$(get_libdir):" \
|
|
-e "s/libLASi-\${VERSION}/${PF}/" \
|
|
cmake/modules/instdirs.cmake \
|
|
|| die "Failed to fix cmake module"
|
|
sed -i \
|
|
-e "s:\${DATA_DIR}/examples:/usr/share/doc/${PF}/examples:" \
|
|
examples/CMakeLists.txt || die
|
|
|
|
use examples || sed -i -e '/add_subdirectory(examples)/d' CMakeLists.txt
|
|
}
|
|
|
|
src_configure() {
|
|
CMAKE_BUILD_TYPE=None
|
|
local mycmakeargs=(
|
|
-DCMAKE_SKIP_RPATH=OFF
|
|
-DUSE_RPATH=OFF
|
|
)
|
|
use doc || mycmakeargs+=( -DDOXYGEN_EXECUTABLE= )
|
|
cmake-utils_src_configure
|
|
}
|