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.
43 lines
1.1 KiB
43 lines
1.1 KiB
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-cdr/qpxtool/qpxtool-0.7.0-r1.ebuild,v 1.3 2013/03/02 19:13:36 hwoarang Exp $
|
|
|
|
EAPI=2
|
|
inherit eutils toolchain-funcs qt4-r2
|
|
|
|
DESCRIPTION="CD/DVD quality checking utilities"
|
|
HOMEPAGE="http://qpxtool.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-qt/qtgui:4
|
|
media-libs/libpng"
|
|
|
|
DOCS="AUTHORS ChangeLog README ReleaseNotes TODO"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-lrelease.patch
|
|
epatch "${FILESDIR}"/${P}-ldlibs.patch
|
|
epatch "${FILESDIR}"/${P}-locale-install-race-patch
|
|
epatch "${FILESDIR}"/${P}-libpng15.patch
|
|
}
|
|
|
|
src_configure() {
|
|
tc-export CXX
|
|
./configure --prefix=/usr || die
|
|
cd gui
|
|
mv -vf Makefile Makefile.orig || die "Backup Makefile for install"
|
|
qt4-r2_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
mv -vf gui/Makefile.orig gui/Makefile || die "Restore Makefile for install"
|
|
dodir /usr/bin
|
|
dohtml status.html
|
|
qt4-r2_src_install
|
|
}
|