summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Pielmeier <billie@gentoo.org>2011-06-07 19:40:39 +0000
committerDaniel Pielmeier <billie@gentoo.org>2011-06-07 19:40:39 +0000
commit9cc30e5d989e37e45407f2fd4c95ed03d74d0f42 (patch)
tree5e846e0b80872423c9cf3c796e77c2240b889867
parentVersion bump, which should hopefully build with glibc-2.14. (diff)
downloadgentoo-2-9cc30e5d989e37e45407f2fd4c95ed03d74d0f42.tar.gz
gentoo-2-9cc30e5d989e37e45407f2fd4c95ed03d74d0f42.tar.bz2
gentoo-2-9cc30e5d989e37e45407f2fd4c95ed03d74d0f42.zip
Remove unused file.
(Portage version: 2.1.9.42/cvs/Linux i686)
-rw-r--r--media-tv/channeleditor/ChangeLog7
-rw-r--r--media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild4
-rw-r--r--media-tv/channeleditor/files/build.xml36
3 files changed, 7 insertions, 40 deletions
diff --git a/media-tv/channeleditor/ChangeLog b/media-tv/channeleditor/ChangeLog
index af43035c2c87..9b36557ebd3c 100644
--- a/media-tv/channeleditor/ChangeLog
+++ b/media-tv/channeleditor/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-tv/channeleditor
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/channeleditor/ChangeLog,v 1.9 2010/08/02 18:08:31 billie Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-tv/channeleditor/ChangeLog,v 1.10 2011/06/07 19:40:39 billie Exp $
+
+ 07 Jun 2011; Daniel Pielmeier <billie@gentoo.org> -files/build.xml:
+ Remove unused file.
02 Aug 2010; Daniel Pielmeier <billie@gentoo.org>
channeleditor-1.9.2.1-r1.ebuild:
diff --git a/media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild b/media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild
index c2bf395a3570..24f2ac577284 100644
--- a/media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild
+++ b/media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild,v 1.4 2010/08/02 18:08:31 billie Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/channeleditor/channeleditor-1.9.2.1-r1.ebuild,v 1.5 2011/06/07 19:40:39 billie Exp $
EAPI="2"
diff --git a/media-tv/channeleditor/files/build.xml b/media-tv/channeleditor/files/build.xml
deleted file mode 100644
index 8df4479500a0..000000000000
--- a/media-tv/channeleditor/files/build.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0"?>
-<project name="channeleditor" default="build">
- <!-- some properties -->
- <property name="src.dir" value="src"/>
- <property name="build.dir" value="build"/>
- <property name="dist.dir" value="dist"/>
- <property name="resources.dir" value="src/java/"/>
- <property name="project.jar" value="${dist.dir}/${ant.project.name}.jar"/>
- <property name="target.jdk" value="1.5"/>
-
- <!-- init -->
- <target name="init">
- <mkdir dir="${dist.dir}"/>
- </target>
-
- <!-- compile everything -->
- <target name="compile" depends="init">
- <javac srcdir="${src.dir}"
- destdir="${build.dir}"
- source="${target.jdk}"
- target="${target.jdk}"
- encoding="ISO-8859-1"/>
- <copy todir="${build.dir}">
- <fileset dir="${resources.dir}" excludes="**/*.java"/>
- </copy>
- </target>
-
- <!-- build the jar files -->
- <target name="build" depends="compile">
- <jar jarfile="${project.jar}" basedir="${build.dir}">
- <manifest>
- <attribute name="Main-Class" value="${manifest.mainclass}"/>
- </manifest>
- </jar>
- </target>
-</project>