diff options
author | hasufell <julian.ospald@googlemail.com> | 2012-07-15 00:42:07 +0200 |
---|---|---|
committer | hasufell <julian.ospald@googlemail.com> | 2012-07-15 00:42:07 +0200 |
commit | c2e3a8dbab421ce5bd9d8395db39b6a8261edce0 (patch) | |
tree | e7ad989852a6d478b2b7bc1aec5ea145dda07cdd /media-sound | |
parent | dev-util/qshaderedit: EAPI bump, install docs, add missing slot for qt depend... (diff) | |
download | sunrise-c2e3a8dbab421ce5bd9d8395db39b6a8261edce0.tar.gz sunrise-c2e3a8dbab421ce5bd9d8395db39b6a8261edce0.tar.bz2 sunrise-c2e3a8dbab421ce5bd9d8395db39b6a8261edce0.zip |
media-sound/id3ted imported into main tree
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/id3ted/ChangeLog | 20 | ||||
-rw-r--r-- | media-sound/id3ted/Manifest | 6 | ||||
-rw-r--r-- | media-sound/id3ted/files/id3ted-0.7.3-gentoo-as-needed.patch | 20 | ||||
-rw-r--r-- | media-sound/id3ted/files/id3ted-0.7.3-gentoo-proper-compiler-and-flags.patch | 28 | ||||
-rw-r--r-- | media-sound/id3ted/id3ted-0.7.3.ebuild | 34 | ||||
-rw-r--r-- | media-sound/id3ted/metadata.xml | 16 |
6 files changed, 0 insertions, 124 deletions
diff --git a/media-sound/id3ted/ChangeLog b/media-sound/id3ted/ChangeLog deleted file mode 100644 index 4e921ca3d..000000000 --- a/media-sound/id3ted/ChangeLog +++ /dev/null @@ -1,20 +0,0 @@ -# ChangeLog for media-sound/id3ted -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 02 Jan 2012; Christopher Head (Hawk777) <headch@gmail.com> - id3ted-0.7.3.ebuild: - Bump to EAPI 4 and update SRC_URI with mirror://github. - - 02 Sep 2010; Christopher Head (Hawk777) <headch@gmail.com> - id3ted-0.7.3.ebuild: - Added ~amd64 keyword. - - 17 Aug 2010; Christopher Head (Hawk777) <headch@gmail.com> metadata.xml: - Added upstream information to metadata.xml - - 15 Aug 2010; Christopher Head (Hawk777) <headch@gmail.com> - +id3ted-0.7.3.ebuild, +files/id3ted-0.7.3-gentoo-as-needed.patch, - +files/id3ted-0.7.3-gentoo-proper-compiler-and-flags.patch, +metadata.xml: - New Ebuild for bug 330973 - diff --git a/media-sound/id3ted/Manifest b/media-sound/id3ted/Manifest deleted file mode 100644 index d9ba4a891..000000000 --- a/media-sound/id3ted/Manifest +++ /dev/null @@ -1,6 +0,0 @@ -AUX id3ted-0.7.3-gentoo-as-needed.patch 489 RMD160 27a068032a3b9c76f7d2b2c41396de0996336122 SHA1 50c31909300cf19ddd5e6beed6b73b414a366ef4 SHA256 314ff3c7d73a07c99dcecee8da2da5c82c2a47df1d087dd6e354aa48f02026c7 -AUX id3ted-0.7.3-gentoo-proper-compiler-and-flags.patch 626 RMD160 629e781ca5ed04b5635d50b3959f9bacb4025bc1 SHA1 b36ea9f82d652add057b67db579c2c53f25a2921 SHA256 5919e675742985aff933394b1a333124a64a120c215e74ddced3b5c6f9f32320 -DIST id3ted-0.7.3.tar.gz 36629 RMD160 931f2eae041745f67827c575d1d1996859860596 SHA1 3532ffe5571bf64c3dd67dbb60720f490506984b SHA256 5b9e3b547c807ca80feec5bf8b19fd330c3d6b6faab7ebe7adf94a8d22c2af63 -EBUILD id3ted-0.7.3.ebuild 662 RMD160 0df0ec18b9caea7a4c2bf91c57c9a0f16b7152ae SHA1 d5e2191ae334ddc9e3741c1f6d8862c4354eb476 SHA256 3144a5ba5a9f49fd94458674ed4f9f4b996925c835fe463f675093f4861ff2a2 -MISC ChangeLog 727 RMD160 e42f7cc81a275c2d6a86dfa7c30ef2a3647a19ef SHA1 964625aa0be30d1b64454914932a54dea8f3cb0e SHA256 d804301d71c297f701795d264a65316c10895c15d2281559a88a7e1127831d6c -MISC metadata.xml 612 RMD160 2dc86900c76c40577db8d3bbc1e224babe7bac2b SHA1 02a907d681f1bc85cfe3af40945b011e76facb0e SHA256 d45e35c605c9f36d95bc50ddf3c75326c92450690ff87203ae27df6ec9720a23 diff --git a/media-sound/id3ted/files/id3ted-0.7.3-gentoo-as-needed.patch b/media-sound/id3ted/files/id3ted-0.7.3-gentoo-as-needed.patch deleted file mode 100644 index 00500d43e..000000000 --- a/media-sound/id3ted/files/id3ted-0.7.3-gentoo-as-needed.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/Makefile b/Makefile ---- a/Makefile -+++ b/Makefile -@@ -4,13 +4,14 @@ - PREFIX?=/usr/local - # see INSTALL for available preprocessor variables - CFLAGS+= -I$(PREFIX)/include -Wall -pedantic --LDFLAGS+= -L$(PREFIX)/lib -ltag -lmagic -+LDFLAGS+= -L$(PREFIX)/lib -+LIBS+= -ltag -lmagic - - CPPFILES=$(wildcard *.cpp) - OBJFILES=$(CPPFILES:.cpp=.o) - - id3ted: $(OBJFILES) -- $(CC) $(LDFLAGS) -o $@ $^ -+ $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) - - %.o: %.cpp Makefile - $(CC) $(CFLAGS) -c -o $@ $< diff --git a/media-sound/id3ted/files/id3ted-0.7.3-gentoo-proper-compiler-and-flags.patch b/media-sound/id3ted/files/id3ted-0.7.3-gentoo-proper-compiler-and-flags.patch deleted file mode 100644 index b0d01787e..000000000 --- a/media-sound/id3ted/files/id3ted-0.7.3-gentoo-proper-compiler-and-flags.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff --git a/Makefile b/Makefile ---- a/Makefile -+++ b/Makefile -@@ -1,9 +1,9 @@ - all: id3ted - --CC=g++ -+CXX?=g++ - PREFIX?=/usr/local - # see INSTALL for available preprocessor variables --CFLAGS+= -I$(PREFIX)/include -Wall -pedantic -+CXXFLAGS+= -I$(PREFIX)/include -Wall -pedantic - LDFLAGS+= -L$(PREFIX)/lib - LIBS+= -ltag -lmagic - -@@ -11,10 +11,10 @@ - OBJFILES=$(CPPFILES:.cpp=.o) - - id3ted: $(OBJFILES) -- $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) -+ $(CXX) $(LDFLAGS) -o $@ $^ $(LIBS) - - %.o: %.cpp Makefile -- $(CC) $(CFLAGS) -c -o $@ $< -+ $(CXX) $(CXXFLAGS) -c -o $@ $< - - install: all - install -D -m 0755 id3ted $(PREFIX)/bin/id3ted diff --git a/media-sound/id3ted/id3ted-0.7.3.ebuild b/media-sound/id3ted/id3ted-0.7.3.ebuild deleted file mode 100644 index 127db10f3..000000000 --- a/media-sound/id3ted/id3ted-0.7.3.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=4 - -inherit eutils - -DESCRIPTION="A Command-line ID3 Tag Editor" -HOMEPAGE="http://muennich.github.com/id3ted/" -SRC_URI="mirror://github/muennich/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="media-libs/taglib - sys-apps/file" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}/${P}-gentoo-as-needed.patch" - epatch "${FILESDIR}/${P}-gentoo-proper-compiler-and-flags.patch" -} - -src_compile() { - emake PREFIX="/usr" -} - -src_install() { - emake PREFIX="${D}/usr" install - dodoc CHANGELOG README -} diff --git a/media-sound/id3ted/metadata.xml b/media-sound/id3ted/metadata.xml deleted file mode 100644 index aea19d3cb..000000000 --- a/media-sound/id3ted/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer> - <email>maintainer-wanted@gentoo.org</email> - </maintainer> - <longdescription>A command-line ID3 tag editor using <pkg>media-libs/taglib</pkg>.</longdescription> - <upstream> - <maintainer status="active"> - <email>muennich@informatik.hu-berlin.de</email> - <name>Bert Muennich</name> - </maintainer> - <changelog>http://github.com/muennich/id3ted/blob/master/CHANGELOG</changelog> - <bugs-to>http://github.com/muennich/id3ted/issues</bugs-to> - </upstream> -</pkgmetadata> |