diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-09-19 22:59:31 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-09-19 22:59:31 +0000 |
commit | 5afbc81fbc23bbbffb583b3da74b9a94c0f5e0bd (patch) | |
tree | 7e9b06f3dd2d99a2c2e4338055eedf1d572bf825 /dev-util/pilrc | |
parent | fix ipv6 patch (diff) | |
download | gentoo-2-5afbc81fbc23bbbffb583b3da74b9a94c0f5e0bd.tar.gz gentoo-2-5afbc81fbc23bbbffb583b3da74b9a94c0f5e0bd.tar.bz2 gentoo-2-5afbc81fbc23bbbffb583b3da74b9a94c0f5e0bd.zip |
use edos2unix
Diffstat (limited to 'dev-util/pilrc')
-rw-r--r-- | dev-util/pilrc/ChangeLog | 3 | ||||
-rw-r--r-- | dev-util/pilrc/Manifest | 6 | ||||
-rw-r--r-- | dev-util/pilrc/pilrc-2.9_p10.ebuild | 10 |
3 files changed, 12 insertions, 7 deletions
diff --git a/dev-util/pilrc/ChangeLog b/dev-util/pilrc/ChangeLog index a98f6d035b86..c15819e882df 100644 --- a/dev-util/pilrc/ChangeLog +++ b/dev-util/pilrc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/pilrc # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 + 19 Sep 2003; Alastair Tse <liquidx@gentoo.org> pilrc-2.9_p10.ebuild: + changing to use edos2unix rather than dos2unix + *pilrc-2.9_p10 (18 Sep 2003) 18 Sep 2003; Alastair Tse <liquidx@gentoo.org> pilrc-2.9_p10.ebuild, diff --git a/dev-util/pilrc/Manifest b/dev-util/pilrc/Manifest index 92d31caa9195..e424cee7cbea 100644 --- a/dev-util/pilrc/Manifest +++ b/dev-util/pilrc/Manifest @@ -1,7 +1,7 @@ -MD5 65f9ea2d9a664df8ddb3a2af5f06913a ChangeLog 590 -MD5 fd9aebe859bc9041c71e7f29fbd8bc44 pilrc-2.9.ebuild 669 +MD5 af6287f68592e3ffbfb9f12072b4c9ea ChangeLog 711 MD5 075fea99b82d61028585dc3e42f00466 metadata.xml 156 -MD5 457e08b96906d46316ae36f0d1edcee4 pilrc-2.9_p10.ebuild 1386 +MD5 fd9aebe859bc9041c71e7f29fbd8bc44 pilrc-2.9.ebuild 669 +MD5 9f19f35866d465592f76cd34a693632a pilrc-2.9_p10.ebuild 1405 MD5 3517914d02e194b18e11f1065c0a5e6a files/digest-pilrc-2.9 58 MD5 7d35f6095414cf27317061ed4942f497 files/digest-pilrc-2.9_p10 120 MD5 5ac794f0876673039e0e95dc18229a74 files/pilrc-2.9_p10-Makefile.patch 238 diff --git a/dev-util/pilrc/pilrc-2.9_p10.ebuild b/dev-util/pilrc/pilrc-2.9_p10.ebuild index e5804f469d45..784566a9f0a0 100644 --- a/dev-util/pilrc/pilrc-2.9_p10.ebuild +++ b/dev-util/pilrc/pilrc-2.9_p10.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pilrc/pilrc-2.9_p10.ebuild,v 1.2 2003/09/19 08:02:58 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/pilrc/pilrc-2.9_p10.ebuild,v 1.3 2003/09/19 22:59:26 liquidx Exp $ + +inherit eutils # workout PREV_PATCH_LEVEL=$((${PV#*p}-1)) @@ -16,8 +18,7 @@ SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~sparc" -DEPEND="app-text/dos2unix - gtk? ( =x11-libs/gtk+-1.2* )" +DEPEND="gtk? ( =x11-libs/gtk+-1.2* )" MAKEOPTS="${MAKEOPTS} -j1" S=${WORKDIR}/${PN}-${PREV_PV} @@ -28,7 +29,8 @@ src_unpack() { # convert to unix text file and patch with the latest patch level chmod +x ${S}/src2unix.sh cd ${S}; ./src2unix.sh - dos2unix -n ${DISTDIR}/${PN}-${MY_PV}.diff ${WORKDIR}/${P}.diff + cp ${DISTDIR}/${PN}-${MY_PV}.diff ${WORKDIR}/${P}.diff + edos2unix ${WORKDIR}/${P}.diff epatch ${WORKDIR}/${P}.diff # patch typo in Makefile.am cd ${S}; patch Makefile.am < ${FILESDIR}/${P}-Makefile.patch |