diff options
author | Zack Welch <zwelch@gentoo.org> | 2003-03-20 04:37:00 +0000 |
---|---|---|
committer | Zack Welch <zwelch@gentoo.org> | 2003-03-20 04:37:00 +0000 |
commit | 2a3b5b02a0ec638f5a0051f6c19f817ab270c92b (patch) | |
tree | 2d26a87c968313ae4847107e9bc4ccf43d846d20 /app-pda | |
parent | add missing ChangeLog (diff) | |
download | gentoo-2-2a3b5b02a0ec638f5a0051f6c19f817ab270c92b.tar.gz gentoo-2-2a3b5b02a0ec638f5a0051f6c19f817ab270c92b.tar.bz2 gentoo-2-2a3b5b02a0ec638f5a0051f6c19f817ab270c92b.zip |
add new ebuild; see bug 16808
Diffstat (limited to 'app-pda')
-rw-r--r-- | app-pda/gnupod/ChangeLog | 9 | ||||
-rw-r--r-- | app-pda/gnupod/files/digest-gnupod-0.27 | 1 | ||||
-rw-r--r-- | app-pda/gnupod/gnupod-0.27.ebuild | 63 |
3 files changed, 73 insertions, 0 deletions
diff --git a/app-pda/gnupod/ChangeLog b/app-pda/gnupod/ChangeLog new file mode 100644 index 000000000000..a7f54188c0de --- /dev/null +++ b/app-pda/gnupod/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-pda/gnupod +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/gnupod/ChangeLog,v 1.1 2003/03/20 04:37:00 zwelch Exp $ + +*gnupod-0.27 (19 Mar 2003) + + 19 Mar 2003; Zach Welch <zwelch@gentoo.org> gnupod-0.27.ebuild: + new ebuild; see bug 16808 + diff --git a/app-pda/gnupod/files/digest-gnupod-0.27 b/app-pda/gnupod/files/digest-gnupod-0.27 new file mode 100644 index 000000000000..e21754b63935 --- /dev/null +++ b/app-pda/gnupod/files/digest-gnupod-0.27 @@ -0,0 +1 @@ +MD5 8b9a89d666f110b5d0f427c1b5563e0a gnupod-tools-0.27.tar.gz 90766 diff --git a/app-pda/gnupod/gnupod-0.27.ebuild b/app-pda/gnupod/gnupod-0.27.ebuild new file mode 100644 index 000000000000..bd21f5a35242 --- /dev/null +++ b/app-pda/gnupod/gnupod-0.27.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/gnupod/gnupod-0.27.ebuild,v 1.1 2003/03/20 04:37:00 zwelch Exp $ + +DESCRIPTION="Tools for updating your iPod" + +HOMEPAGE="http://www.gnu.org/software/gnupod/" +#"Soon" will be on the gnu mirrors... +SRC_URI="http://blinkenlights.ch/gnupod/${PN}-tools-${PV}.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~x86 ppc" + +IUSE="" + +DEPEND=">=dev-lang/perl-5.6.1-r11 + dev-perl/MP3-Info + dev-perl/Unicode-String + dev-perl/XML-Simple + dev-perl/Getopt-Mixed" + + +# Run-time dependencies, same as DEPEND if RDEPEND isn't defined: +#RDEPEND="" + +# Source directory; the dir where the sources can be found (automatically +# unpacked) inside ${WORKDIR}. S will get a default setting of ${WORKDIR}/${P} +# if you omit this line. +S=${WORKDIR}/${PN}-tools + +src_compile() { + + ./configure \ + --host=${CHOST} \ + --prefix=${D}/usr \ + --infodir=${D}/usr/share/info \ + --mandir=${D}/usr/share/man || die "./configure failed" +} + +src_install() { + + #unfortunately, this package is not really autoconfed... + cd ${S}/tools || die + mv gnupod_install.pl gnupod_install.pl.orig || die + sed -e 's:"Installing $INC\[0\]:"Installing ".$prefix."$INC\[0\]:' \ + -e 's:$_, "$INC\[0\]/$file:$_, $prefix."$INC\[0\]/$file:' \ + -e 's:0444, "$INC\[0\]:0444, $prefix."$INC\[0\]:' \ + -e 's:0, 0, "$INC\[0\]:0, 0, $prefix."$INC\[0\]:' \ + -e 's:if !$INC\[0\];:& my $prefix="'${D}'";:' \ + -e 's:open(TARGET, ">\(.*\)"):my $tmp="\1"; $tmp =~ s,/[^/]*$,,; system("mkdir -p $tmp"); &:' \ + -e 's:system("install-info --info-dir=$infodir $file"):system("mkdir -p $infodir") \&\& system("cp $file $infodir"):' \ + gnupod_install.pl.orig > gnupod_install.pl || die + + rm gnupod_install.pl.orig + cd ${S} + + make install + + dodoc CHANGES + cd ${S}/doc + dodoc gnupod.html gnutunesdb.example +} |