diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2002-08-17 12:05:25 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2002-08-17 12:05:25 +0000 |
commit | 719830cbe6f5ccd9e4fd2e713093a8c8c265c4cf (patch) | |
tree | 4874ba3cfb59d13f3043b9b0d24f065d54a83336 /media-video/vcdimager | |
parent | new version (diff) | |
download | gentoo-2-719830cbe6f5ccd9e4fd2e713093a8c8c265c4cf.tar.gz gentoo-2-719830cbe6f5ccd9e4fd2e713093a8c8c265c4cf.tar.bz2 gentoo-2-719830cbe6f5ccd9e4fd2e713093a8c8c265c4cf.zip |
Closes #5912.
Diffstat (limited to 'media-video/vcdimager')
-rw-r--r-- | media-video/vcdimager/ChangeLog | 5 | ||||
-rw-r--r-- | media-video/vcdimager/vcdimager-0.7.12.ebuild | 17 |
2 files changed, 10 insertions, 12 deletions
diff --git a/media-video/vcdimager/ChangeLog b/media-video/vcdimager/ChangeLog index e601f90ced06..6927ab29fdb5 100644 --- a/media-video/vcdimager/ChangeLog +++ b/media-video/vcdimager/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for media-video/vcdimager # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/ChangeLog,v 1.1 2002/05/20 00:01:43 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/ChangeLog,v 1.2 2002/08/17 12:05:25 aliz Exp $ *vcdimager-0.7.12 (19 May 2002) + 17 Aug 2002; Daniel Ahlbegr <aliz@gentoo.org> vcdimager-0.7.12.ebuild: + Closes #5912, also cleaned up ebuild a bit. + 19 May 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : Added initial ChangeLog which should be updated whenever the package is diff --git a/media-video/vcdimager/vcdimager-0.7.12.ebuild b/media-video/vcdimager/vcdimager-0.7.12.ebuild index 651c2c65297a..9b2c40afb6e3 100644 --- a/media-video/vcdimager/vcdimager-0.7.12.ebuild +++ b/media-video/vcdimager/vcdimager-0.7.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/vcdimager-0.7.12.ebuild,v 1.3 2002/07/19 11:28:21 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vcdimager/vcdimager-0.7.12.ebuild,v 1.4 2002/08/17 12:05:25 aliz Exp $ S=${WORKDIR}/${P} DESCRIPTION="GNU VCDimager" @@ -12,7 +12,7 @@ LICENSE="GPL" KEYWORDS="x86" # Ideally this would also include help2man, but it's not yet in portage. -DEPENDS="xml2 ? ( >= dev-libs/libxml2-2.3.8 )" +DEPEND="xml2? ( >=dev-libs/libxml2-2.3.8 )" src_compile() { @@ -25,14 +25,7 @@ src_compile() { && myopts="${myopts} --with-xml-prefix=/usr --disable-xmltest" \ || myopts="${myopts} --without-xml-frontend" - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - ${myopts} \ - || die "./configure failed" - + econf $myopts || die emake || die } @@ -42,5 +35,7 @@ src_install () { mandir=${D}/usr/share/man \ infodir=${D}/usr/share/info \ install || die -} + dodoc AUTHORS BUGS COPYING ChangeLog FAQ HACKING INSTALL + dodoc NEWS README THANKS TODO +} |