diff options
-rw-r--r-- | sys-block/unieject/ChangeLog | 8 | ||||
-rw-r--r-- | sys-block/unieject/Manifest | 14 | ||||
-rw-r--r-- | sys-block/unieject/files/digest-unieject-3 | 1 | ||||
-rw-r--r-- | sys-block/unieject/unieject-3.ebuild | 37 |
4 files changed, 48 insertions, 12 deletions
diff --git a/sys-block/unieject/ChangeLog b/sys-block/unieject/ChangeLog index 523285463a58..1fbda8e25048 100644 --- a/sys-block/unieject/ChangeLog +++ b/sys-block/unieject/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-block/unieject # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/unieject/ChangeLog,v 1.6 2005/07/25 19:25:49 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/unieject/ChangeLog,v 1.7 2005/07/30 23:42:37 flameeyes Exp $ + +*unieject-3 (30 Jul 2005) + + 30 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> +unieject-3.ebuild: + New version, need libconfuse, ~sparc and ~ppc64 keywords dropped. Requires + gettext (for nls support). 25 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org> unieject-2.1.ebuild: ~sparc wrt #100058 diff --git a/sys-block/unieject/Manifest b/sys-block/unieject/Manifest index 75a26ae935ee..4d160124f230 100644 --- a/sys-block/unieject/Manifest +++ b/sys-block/unieject/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 f9736ed51a06cd95a6865314d00de2ee unieject-2.1.ebuild 834 MD5 7f0b2989cfdaf436a2cbd458a718368a metadata.xml 366 MD5 73c5bc6323ca05afcddcc735e5d6901b ChangeLog 966 +MD5 f9736ed51a06cd95a6865314d00de2ee unieject-2.1.ebuild 834 +MD5 c75d0f1158e52e2f4a2f55f62bc19c63 unieject-3.ebuild 858 MD5 f97c06784d29f0285065265ba14ccf1d files/digest-unieject-2.1 65 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1-ecc0.1.6 (GNU/Linux) - -iD8DBQFC5TzaKRy60XGEcJIRAkD+AJ0beiqKEIbF2MKJLpdnmldXDR47bwCeLwGn -Xi4ywYoceyHs+pQOFi+gp6I= -=iwB2 ------END PGP SIGNATURE----- +MD5 7e1ed35b5738912bbb005afcc2a5e02f files/digest-unieject-3 63 diff --git a/sys-block/unieject/files/digest-unieject-3 b/sys-block/unieject/files/digest-unieject-3 new file mode 100644 index 000000000000..cead4a4b1f8e --- /dev/null +++ b/sys-block/unieject/files/digest-unieject-3 @@ -0,0 +1 @@ +MD5 288f3cbd2cc79ae4088572953cc92414 unieject-3.tar.bz2 260400 diff --git a/sys-block/unieject/unieject-3.ebuild b/sys-block/unieject/unieject-3.ebuild new file mode 100644 index 000000000000..590c4f41dd64 --- /dev/null +++ b/sys-block/unieject/unieject-3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/unieject/unieject-3.ebuild,v 1.1 2005/07/30 23:42:37 flameeyes Exp $ + +DESCRIPTION="Multiplatform command to eject and load CD-Rom drives" +HOMEPAGE="http://dev.gentoo.org/~flameeyes/projects.xhtml" +SRC_URI="http://digilander.libero.it/dgp85/files/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="nls" + +RDEPEND=">=dev-libs/libcdio-0.75-r1 + dev-libs/popt + >=dev-libs/confuse-2.5 + nls? ( sys-devel/gettext ) + !virtual/eject" +DEPEND="${RDEPEND} + sys-devel/gettext + app-text/txt2man" + +PROVIDE="virtual/eject" + +src_compile() { + econf $(use_enable nls) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install + dodoc README ChangeLog NEWS AUTHORS unieject.conf.sample + + # Symlink to eject to provide a good virtual/eject + dosym unieject.1.gz /usr/share/man/man1/eject.1.gz + dosym unieject /usr/bin/eject +} |