diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2010-04-16 23:51:43 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2010-04-16 23:51:43 +0000 |
commit | bdd013f6cb1f4e335d864af4fc0f42fc3dd45641 (patch) | |
tree | e1d82ff7697280ca8df23acef2231f05635c64c7 /sci-electronics/gerbv/gerbv-2.4.0.ebuild | |
parent | Version bump. ASIHPI has been updated. (diff) | |
download | historical-bdd013f6cb1f4e335d864af4fc0f42fc3dd45641.tar.gz historical-bdd013f6cb1f4e335d864af4fc0f42fc3dd45641.tar.bz2 historical-bdd013f6cb1f4e335d864af4fc0f42fc3dd45641.zip |
Version bump, thanks to Stefan Salewski (bug #315673).
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'sci-electronics/gerbv/gerbv-2.4.0.ebuild')
-rw-r--r-- | sci-electronics/gerbv/gerbv-2.4.0.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/sci-electronics/gerbv/gerbv-2.4.0.ebuild b/sci-electronics/gerbv/gerbv-2.4.0.ebuild new file mode 100644 index 000000000000..998b88fe2aa0 --- /dev/null +++ b/sci-electronics/gerbv/gerbv-2.4.0.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gerbv/gerbv-2.4.0.ebuild,v 1.1 2010/04/16 23:51:43 calchan Exp $ + +EAPI="2" + +inherit fdo-mime + +DESCRIPTION="A RS-274X (Gerber) and NC drill (Excellon) file viewer" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://gerbv.sourceforge.net/" + +IUSE="unit-mm doc examples" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +RESTRICT="test" + +RDEPEND=">=x11-libs/gtk+-2.4 + >=x11-libs/cairo-1.2" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.9" + +src_configure() { + econf \ + $(use_enable unit-mm) \ + --disable-dependency-tracking \ + --disable-update-desktop-database +} + +src_install () { + emake DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS ChangeLog CONTRIBUTORS HACKING NEWS README* TODO BUGS + + rm doc/Doxyfile.nopreprocessing + if use doc; then + find doc -name "Makefile*" -exec rm -f '{}' \; + find doc -name "*.txt" -exec ecompress '{}' \; + insinto /usr/share/doc/${PF} + doins -r doc/* + fi + + if use examples; then + find example -name "Makefile*" -exec rm -f '{}' \; + find example -name "*.txt" -exec ecompress '{}' \; + insinto /usr/share/doc/${PF}/examples + doins -r example/* + fi +} + +pkg_postinst() { + fdo-mime_desktop_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update +} |