Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 1676 - easytag ebuild
Summary: easytag ebuild
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Seemant Kulleen (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-04-11 06:04 UTC by Artur Brodowski
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Artur Brodowski 2002-04-11 06:04:14 UTC
this is my first ebuild script for easytag-0.18:

# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Artur 'bzd' Brodowski <bzdurqa@wp.pl>

S=${WORKDIR}/${P}
DESCRIPTION="an utility for viewing, editing and writing tags of your MP3, MP2,
FLAC and OGG files with a nice GTK+ interface."
SRC_URI="http://prdownloads.sourceforge.net/easytag/${P}.tar.gz"
HOMEPAGE="http://easytag.sourceforge.net/"

DEPEND=">=x11-libs/gtk+-1.2.10-r4
        media-libs/id3lib
        media-libs/libogg
        media-libs/libvorbis"

src_unpack() {
        unpack ${P}.tar.gz
        cd ${S}
}

src_compile() {
        try ./configure --prefix=/usr --host=${CHOST}
        try make
}

src_install () {
        try make prefix=${D}/usr
                 mandir=${D}/usr/share/man
                 install

        dodoc USERS-GUIDE ChangeLog COPYING README TODO VERSION
}
Comment 1 Artur Brodowski 2002-04-23 16:36:56 UTC
easytag already icluded in the portage tree, cut form ebuild script:
Maintainer: Ryan Phillips <rphillips@gentoo.org>