[proaudio] [1524] rename nondaw -> non-daw |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/proaudio Archives
]
Revision: 1524
Author: gavlee
Date: 2009-09-18 21:06:53 +0200 (Fri, 18 Sep 2009)
Log Message:
-----------
rename nondaw -> non-daw
Added Paths:
-----------
trunk/overlays/proaudio/media-sound/non-daw/
trunk/overlays/proaudio/media-sound/non-daw/ChangeLog
trunk/overlays/proaudio/media-sound/non-daw/Manifest
trunk/overlays/proaudio/media-sound/non-daw/metadata.xml
trunk/overlays/proaudio/media-sound/non-daw/non-daw-9999.ebuild
Removed Paths:
-------------
trunk/overlays/proaudio/media-sound/nondaw/ChangeLog
trunk/overlays/proaudio/media-sound/nondaw/Manifest
trunk/overlays/proaudio/media-sound/nondaw/metadata.xml
trunk/overlays/proaudio/media-sound/nondaw/nondaw-9999.ebuild
Copied: trunk/overlays/proaudio/media-sound/non-daw/ChangeLog (from rev 1523, trunk/overlays/proaudio/media-sound/nondaw/ChangeLog)
===================================================================
--- trunk/overlays/proaudio/media-sound/non-daw/ChangeLog (rev 0)
+++ trunk/overlays/proaudio/media-sound/non-daw/ChangeLog 2009-09-18 19:06:53 UTC (rev 1524)
@@ -0,0 +1,12 @@
+# ChangeLog for media-sound/non-daw
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+ 18 Sep 2009; Gavin Pryke <gavinlee303@xxxxxxxxxxxxxx>
+ +non-daw-9999.ebuild, +metadata.xml:
+ rename nondaw -> non-daw
+
+ 15 Sep 2009; Gavin Pryke <gavinlee303@xxxxxxxxxxxxxx> +nondaw-9999.ebuild,
+ +metadata.xml:
+ initial import of nondaw
+
Added: trunk/overlays/proaudio/media-sound/non-daw/Manifest
===================================================================
--- trunk/overlays/proaudio/media-sound/non-daw/Manifest (rev 0)
+++ trunk/overlays/proaudio/media-sound/non-daw/Manifest 2009-09-18 19:06:53 UTC (rev 1524)
@@ -0,0 +1,3 @@
+EBUILD non-daw-9999.ebuild 1204 RMD160 3589e8d540502f7dfdfaa282dad4c9f2ce5bf0e3 SHA1 4e2b3fb1685423daa6dc00dc53158e9485f3f17c SHA256 5496da710b279588b6c72056e3bcf7a937b5a4f4c46292c64c5e125d8d7e5be9
+MISC ChangeLog 365 RMD160 0f8156d45b073872e5197c449c2e2f707f56e032 SHA1 62a5cf576741e8775f1e2a5ea8960de465f81d60 SHA256 8bbcd1ec753647a2bec7633425bac08d62605aa13e17a82197981f92b306662d
+MISC metadata.xml 268 RMD160 facc07bd885f20615a1f2555069329c642e1a566 SHA1 2456bdb8a218c9d477d2d6ee4bf158de070c7be4 SHA256 96629b266b743f566c29158d4498edeeb1cd6b1f0cd9629e42d4f10b4da82f89
Copied: trunk/overlays/proaudio/media-sound/non-daw/metadata.xml (from rev 1523, trunk/overlays/proaudio/media-sound/nondaw/metadata.xml)
===================================================================
--- trunk/overlays/proaudio/media-sound/non-daw/metadata.xml (rev 0)
+++ trunk/overlays/proaudio/media-sound/non-daw/metadata.xml 2009-09-18 19:06:53 UTC (rev 1524)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>no-herd</herd>
+ <maintainer>
+ <email>proaudio@xxxxxxxxxxxxx</email>
+ <name>pro-audio overlay team</name>
+ </maintainer>
+</pkgmetadata>
Copied: trunk/overlays/proaudio/media-sound/non-daw/non-daw-9999.ebuild (from rev 1523, trunk/overlays/proaudio/media-sound/nondaw/nondaw-9999.ebuild)
===================================================================
--- trunk/overlays/proaudio/media-sound/non-daw/non-daw-9999.ebuild (rev 0)
+++ trunk/overlays/proaudio/media-sound/non-daw/non-daw-9999.ebuild 2009-09-18 19:06:53 UTC (rev 1524)
@@ -0,0 +1,41 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+inherit git eutils
+
+DESCRIPTION="The Non DAW is a powerful, reliable and fast modular Digital Audio Workstation system"
+HOMEPAGE="http://non-daw.tuxfamily.org/"
+EGIT_REPO_URI="git://git.tuxfamily.org/gitroot/non/daw.git"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+IUSE="lash"
+
+DEPEND=">=x11-libs/fltk-1.1.8
+ >=media-libs/libsndfile-0.18.0
+ >=media-sound/jack-audio-connection-kit-0.103
+ lash? ( >=media-sound/lash-0.5.4 )"
+RDEPEND="${DEPEND}"
+
+src_unpack(){
+ git_src_unpack || die "git clone failed."
+ cd "${S}"
+ # DESTDIR before prefix to stop sandbox violation
+ sed -i -e 's:$(prefix):$(DESTDIR)$(prefix):g' \
+ "${S}/Makefile" || die "sed of Makefile failed"
+ # don't strip the binary
+ sed -i -e '/strip/d' "${S}/Makefile" || die "sed of Makefile failed"
+}
+
+src_compile() {
+ econf $(use_enable lash) || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ # make the bin directory or make will die because it's not found
+ mkdir -p "${D}/usr/bin"
+ emake DESTDIR="${D}" install || die "install failed"
+ fowners root:audio "${ROOT}/usr/bin/non-daw" || die "chown failed"
+}
Deleted: trunk/overlays/proaudio/media-sound/nondaw/ChangeLog
===================================================================
--- trunk/overlays/proaudio/media-sound/nondaw/ChangeLog 2009-09-15 19:08:15 UTC (rev 1523)
+++ trunk/overlays/proaudio/media-sound/nondaw/ChangeLog 2009-09-18 19:06:53 UTC (rev 1524)
@@ -1,10 +0,0 @@
-# ChangeLog for media-sound/nondaw
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-*nondaw-9999 (15 Sep 2009)
-
- 15 Sep 2009; Gavin Pryke <gavinlee303@xxxxxxxxxxxxxx> +nondaw-9999.ebuild,
- +metadata.xml:
- initial import of nondaw
-
Deleted: trunk/overlays/proaudio/media-sound/nondaw/Manifest
===================================================================
--- trunk/overlays/proaudio/media-sound/nondaw/Manifest 2009-09-15 19:08:15 UTC (rev 1523)
+++ trunk/overlays/proaudio/media-sound/nondaw/Manifest 2009-09-18 19:06:53 UTC (rev 1524)
@@ -1,3 +0,0 @@
-EBUILD nondaw-9999.ebuild 1210 RMD160 7bae7921ab50826f23e806ea214e46afefecd8d1 SHA1 dd570725738374a84816ae7ca3be13ba1f9c19bb SHA256 b6a60760adf3ca705e26a704df99b72bf12d2bbd3c689fb72cc3a1b1141a6ddb
-MISC ChangeLog 269 RMD160 818f431b81785066fb1b89e304fb77e2000f1cf8 SHA1 05ddee2455d60601974b7606992327127378c249 SHA256 effd0b92f3752b81b43b0541e1641fcc35a96dd63136311f817edd862237caa2
-MISC metadata.xml 268 RMD160 facc07bd885f20615a1f2555069329c642e1a566 SHA1 2456bdb8a218c9d477d2d6ee4bf158de070c7be4 SHA256 96629b266b743f566c29158d4498edeeb1cd6b1f0cd9629e42d4f10b4da82f89
Deleted: trunk/overlays/proaudio/media-sound/nondaw/metadata.xml
===================================================================
--- trunk/overlays/proaudio/media-sound/nondaw/metadata.xml 2009-09-15 19:08:15 UTC (rev 1523)
+++ trunk/overlays/proaudio/media-sound/nondaw/metadata.xml 2009-09-18 19:06:53 UTC (rev 1524)
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>no-herd</herd>
- <maintainer>
- <email>proaudio@xxxxxxxxxxxxx</email>
- <name>pro-audio overlay team</name>
- </maintainer>
-</pkgmetadata>
Deleted: trunk/overlays/proaudio/media-sound/nondaw/nondaw-9999.ebuild
===================================================================
--- trunk/overlays/proaudio/media-sound/nondaw/nondaw-9999.ebuild 2009-09-15 19:08:15 UTC (rev 1523)
+++ trunk/overlays/proaudio/media-sound/nondaw/nondaw-9999.ebuild 2009-09-18 19:06:53 UTC (rev 1524)
@@ -1,41 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit git eutils
-
-DESCRIPTION="The Non DAW is a powerful, reliable and fast modular Digital Audio Workstation system"
-HOMEPAGE="http://non-sequencer.tuxfamily.org/"
-EGIT_REPO_URI="git://git.tuxfamily.org/gitroot/non/daw.git"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="lash"
-
-DEPEND=">=x11-libs/fltk-1.1.8
- >=media-libs/libsndfile-0.18.0
- >=media-sound/jack-audio-connection-kit-0.103
- lash? ( >=media-sound/lash-0.5.4 )"
-RDEPEND="${DEPEND}"
-
-src_unpack(){
- git_src_unpack || die "git clone failed."
- cd "${S}"
- # DESTDIR before prefix to stop sandbox violation
- sed -i -e 's:$(prefix):$(DESTDIR)$(prefix):g' \
- "${S}/Makefile" || die "sed of Makefile failed"
- # don't strip the binary
- sed -i -e '/strip/d' "${S}/Makefile" || die "sed of Makefile failed"
-}
-
-src_compile() {
- econf $(use_enable lash) || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- # make the bin directory or make will die because it's not found
- mkdir -p "${D}/usr/bin"
- emake DESTDIR="${D}" install || die "install failed"
- fowners root:audio "${ROOT}/usr/bin/non-daw" || die "chown failed"
-}