# unlzx .ebuild file by Per Wigren S=${WORKDIR}/${P} DESCRIPTION="Unarchiver for Amiga LZX archives" SRC_URI="http://ftp.sunet.se/pub/FreeBSD/distfiles/unlzx.c.gz" HOMEPAGE="http://" src_unpack() { mkdir ${S} gzip -dc ${DISTDIR}/${A} >${S}/unlzx.c } src_compile() { cd ${S} gcc ${CFLAGS} -o unlzx unlzx.c } src_install () { dobin unlzx }