]> Pileus Git - ~andy/sunrise/commitdiff
dev-cpp/plotmm: New Ebuild for bug 225287.
authorMounir Lamouri <volkmar@gentoo.org>
Sat, 7 Jun 2008 22:50:01 +0000 (22:50 +0000)
committerMounir Lamouri <volkmar@gentoo.org>
Sat, 7 Jun 2008 22:50:01 +0000 (22:50 +0000)
svn path=/sunrise/; revision=6274

dev-cpp/plotmm/ChangeLog [new file with mode: 0644]
dev-cpp/plotmm/Manifest [new file with mode: 0644]
dev-cpp/plotmm/metadata.xml [new file with mode: 0644]
dev-cpp/plotmm/plotmm-0.1.2.ebuild [new file with mode: 0644]

diff --git a/dev-cpp/plotmm/ChangeLog b/dev-cpp/plotmm/ChangeLog
new file mode 100644 (file)
index 0000000..3a9859f
--- /dev/null
@@ -0,0 +1,8 @@
+# ChangeLog for dev-cpp/plotmm
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  07 Jun 2008; Mounir Lamouri (Volkmar) <mounir.lamouri@gmail.com>
+  +plotmm-0.1.2.ebuild, +metadata.xml:
+  New Ebuild for bug 225287.
+
diff --git a/dev-cpp/plotmm/Manifest b/dev-cpp/plotmm/Manifest
new file mode 100644 (file)
index 0000000..9462026
--- /dev/null
@@ -0,0 +1,4 @@
+DIST plotmm-0.1.2.tar.gz 473175 RMD160 1a42a6681f540911c58a23290e1f7f9877bc49c1 SHA1 64da0930b7c8994d59769597917cca05df989258 SHA256 896bb729eb9cad5f3188d72304789dd7a86fdae66020ac0632fe3bc66abe9653
+EBUILD plotmm-0.1.2.ebuild 573 RMD160 2603a056a5e5f49e68a2332475a988b5e2c1099d SHA1 0a5a66e0bc4bc033bf55a28e5c562f00f3ec230d SHA256 051d743608ea967f4562203ad35da0c23ed4c32cdfd172ef70412dbd2e122546
+MISC ChangeLog 251 RMD160 ef7eb9285202d04ec50821a618dc0e8dbe08ac2a SHA1 5f2db031f2cdc4e8984359d7409e5b48653e05c0 SHA256 f37e66bb16b823b533d60e01ad2e476fcc5d862d426c221b395fb80a3f3aa725
+MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/dev-cpp/plotmm/metadata.xml b/dev-cpp/plotmm/metadata.xml
new file mode 100644 (file)
index 0000000..7e32869
--- /dev/null
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>maintainer-wanted</herd>
+</pkgmetadata>
diff --git a/dev-cpp/plotmm/plotmm-0.1.2.ebuild b/dev-cpp/plotmm/plotmm-0.1.2.ebuild
new file mode 100644 (file)
index 0000000..f2201d6
--- /dev/null
@@ -0,0 +1,27 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="1"
+
+DESCRIPTION="Plot widget for GTKmm"
+HOMEPAGE="http://plotmm.sourceforge.net/"
+SRC_URI="mirror://sourceforge/plotmm/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+RDEPEND=">=dev-cpp/gtkmm-2.0
+               dev-libs/libsigc++:2"
+DEPEND="${RDEPEND}
+               >=dev-util/pkgconfig-0.9"
+
+src_install() {
+       make install DESTDIR="${D}" || die "install failed"
+
+       dodoc AUTHORS ChangeLog INSTALL NEWS README || die
+       cp -R doc "${D}/usr/share/doc/${P}"
+}
+