summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Pielmeier <billie@gentoo.org>2009-09-28 16:59:52 +0000
committerDaniel Pielmeier <billie@gentoo.org>2009-09-28 16:59:52 +0000
commit53b80791fb3031cd2f6513021d753d7ccd59ef41 (patch)
tree45256c4e4ac8b3209458317b0cdd7bd831ee9a7b /sys-fs/fatsort
parentold (diff)
downloadgentoo-2-53b80791fb3031cd2f6513021d753d7ccd59ef41.tar.gz
gentoo-2-53b80791fb3031cd2f6513021d753d7ccd59ef41.tar.bz2
gentoo-2-53b80791fb3031cd2f6513021d753d7ccd59ef41.zip
Version bump. Remove old.
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'sys-fs/fatsort')
-rw-r--r--sys-fs/fatsort/ChangeLog8
-rw-r--r--sys-fs/fatsort/fatsort-0.9.11.196.ebuild (renamed from sys-fs/fatsort/fatsort-0.9.10.187.ebuild)14
-rw-r--r--sys-fs/fatsort/fatsort-0.9.9.1.ebuild31
3 files changed, 14 insertions, 39 deletions
diff --git a/sys-fs/fatsort/ChangeLog b/sys-fs/fatsort/ChangeLog
index 3198b74d2a4c..c043ac3a163b 100644
--- a/sys-fs/fatsort/ChangeLog
+++ b/sys-fs/fatsort/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-fs/fatsort
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fatsort/ChangeLog,v 1.3 2009/05/29 17:17:02 billie Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fatsort/ChangeLog,v 1.4 2009/09/28 16:59:52 billie Exp $
+
+*fatsort-0.9.11.196 (28 Sep 2009)
+
+ 28 Sep 2009; Pielmeier Daniel <billie@gentoo.org> -fatsort-0.9.9.1.ebuild,
+ -fatsort-0.9.10.187.ebuild, +fatsort-0.9.11.196.ebuild:
+ Version bump. Remove old.
*fatsort-0.9.10.187-r1 (29 May 2009)
diff --git a/sys-fs/fatsort/fatsort-0.9.10.187.ebuild b/sys-fs/fatsort/fatsort-0.9.11.196.ebuild
index 1967dbe7ad96..7579478a7799 100644
--- a/sys-fs/fatsort/fatsort-0.9.10.187.ebuild
+++ b/sys-fs/fatsort/fatsort-0.9.11.196.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fatsort/fatsort-0.9.10.187.ebuild,v 1.2 2008/12/31 03:43:00 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fatsort/fatsort-0.9.11.196.ebuild,v 1.1 2009/09/28 16:59:52 billie Exp $
+
+EAPI="2"
inherit toolchain-funcs versionator
@@ -17,19 +19,17 @@ IUSE=""
S=${WORKDIR}/${PN}-${MY_PV}
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
sed -i -e 's:/usr/local/sbin:/usr/sbin:g' src/Makefile || die "sed failed!"
}
src_compile() {
emake CC=$(tc-getCC) LD=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
- DESTDIR="${D}" || die "compile failed"
+ DESTDIR="${D}" || die "emake failed"
}
src_install() {
- emake DESTDIR="${D}" install || die "install failed"
+ emake DESTDIR="${D}" install || die "emake install failed"
doman man/fatsort.8 || die "doman failed"
dodoc CHANGES README TODO || die "dodoc failed"
}
diff --git a/sys-fs/fatsort/fatsort-0.9.9.1.ebuild b/sys-fs/fatsort/fatsort-0.9.9.1.ebuild
deleted file mode 100644
index c65bb5679c92..000000000000
--- a/sys-fs/fatsort/fatsort-0.9.9.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fatsort/fatsort-0.9.9.1.ebuild,v 1.2 2008/12/31 03:43:00 mr_bones_ Exp $
-
-inherit eutils
-
-DESCRIPTION="Sorts files on FAT16/32 partitions, ideal for basic audio players."
-HOMEPAGE="http://fatsort.berlios.de/"
-SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i -e 's:/usr/local/sbin:/usr/sbin:g' src/Makefile || die "sed failed!"
-}
-
-src_compile() {
- emake CC=$(tc-getCC) LD=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
- DESTDIR="${D}" || die "compile failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- doman man/fatsort.8 || die "doman failed"
- dodoc CHANGES README TODO || die "dodoc failed"
-}