diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /media-plugins/hexter | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'media-plugins/hexter')
-rw-r--r-- | media-plugins/hexter/Manifest | 1 | ||||
-rw-r--r-- | media-plugins/hexter/hexter-1.0.2.ebuild | 34 | ||||
-rw-r--r-- | media-plugins/hexter/metadata.xml | 8 |
3 files changed, 43 insertions, 0 deletions
diff --git a/media-plugins/hexter/Manifest b/media-plugins/hexter/Manifest new file mode 100644 index 000000000000..7898db483a10 --- /dev/null +++ b/media-plugins/hexter/Manifest @@ -0,0 +1 @@ +DIST hexter-1.0.2.tar.gz 517532 SHA256 afc576177e3acaf1e1d55c6778792d6b3e401c2d03c56a1c5c0d94f4411b0dc9 SHA512 5ae765004f319dba8b7c881736e6abd2c794e2b2a43d708dbe0ee791e63d004c4612927b4ff23854367ca3ff49e5efc0a936939d4805d48fe1339a802cccae27 WHIRLPOOL f98d4eb057e438d5c74060f9ae5d83454ef0dd06c7803486690f3e55123b0a69b04bb27bfd95d4af18668577092644072e10a9a373409209a92478738b5d7f97 diff --git a/media-plugins/hexter/hexter-1.0.2.ebuild b/media-plugins/hexter/hexter-1.0.2.ebuild new file mode 100644 index 000000000000..3305766bd8a1 --- /dev/null +++ b/media-plugins/hexter/hexter-1.0.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +DESCRIPTION="Yamaha DX7 modeling DSSI plugin" +HOMEPAGE="http://dssi.sourceforge.net/hexter.html" +SRC_URI="mirror://sourceforge/dssi/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="gtk readline" + +RDEPEND="gtk? ( x11-libs/gtk+:2 ) + readline? ( sys-libs/readline sys-libs/ncurses ) + media-libs/alsa-lib + >=media-libs/dssi-0.4 + >=media-libs/liblo-0.12" +DEPEND="${RDEPEND} + media-libs/ladspa-sdk + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_with gtk gtk2) \ + $(use_with readline textui) +} + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog README TODO +} diff --git a/media-plugins/hexter/metadata.xml b/media-plugins/hexter/metadata.xml new file mode 100644 index 000000000000..ecc06c7ce1db --- /dev/null +++ b/media-plugins/hexter/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proaudio</herd> + <upstream> + <remote-id type="sourceforge">dssi</remote-id> + </upstream> +</pkgmetadata> |